author | unc0rr |
Tue, 24 Feb 2009 19:39:10 +0000 | |
changeset 1838 | 00a5fc50aa43 |
parent 1829 | 0cd14c9b1fe0 |
child 1841 | fba7210b438b |
permissions | -rw-r--r-- |
315 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2006-2008 Ulyanov Igor <iulyanov@gmail.com> |
1569 | 4 |
* Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com> |
315 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
1189
f66cdbbfc4b6
Fix compile under Ubuntu (why it compiles everywhere else?)
unc0rr
parents:
1083
diff
changeset
|
20 |
#include <QDebug> |
315 | 21 |
|
697 | 22 |
#include "hwconsts.h" |
315 | 23 |
#include "newnetclient.h" |
24 |
#include "proto.h" |
|
25 |
#include "gameuiconfig.h" |
|
26 |
#include "game.h" |
|
334 | 27 |
#include "gamecfgwidget.h" |
347 | 28 |
#include "teamselect.h" |
315 | 29 |
|
1082 | 30 |
char delimeter='\n'; |
315 | 31 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
32 |
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) : |
334 | 33 |
config(config), |
34 |
m_pGameCFGWidget(pGameCFGWidget), |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
35 |
m_pTeamSelWidget(pTeamSelWidget), |
383 | 36 |
isChief(false), |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
37 |
m_game_connected(false), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
38 |
loginStep(0), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
39 |
netClientState(0) |
315 | 40 |
{ |
1418 | 41 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
42 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
43 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
44 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
45 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
315 | 46 |
} |
47 |
||
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
48 |
HWNewNet::~HWNewNet() |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
49 |
{ |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
50 |
if (m_game_connected) |
1800 | 51 |
{ |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
52 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1800 | 53 |
emit Disconnected(); |
54 |
} |
|
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
55 |
NetSocket.flush(); |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
56 |
} |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
57 |
|
315 | 58 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
59 |
{ |
|
1418 | 60 |
mynick = nick; |
61 |
NetSocket.connectToHost(hostName, port); |
|
315 | 62 |
} |
63 |
||
64 |
void HWNewNet::Disconnect() |
|
65 |
{ |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
66 |
if (m_game_connected) |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
67 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
68 |
m_game_connected = false; |
1800 | 69 |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
70 |
NetSocket.disconnectFromHost(); |
315 | 71 |
} |
72 |
||
1082 | 73 |
void HWNewNet::CreateRoom(const QString & room) |
315 | 74 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
75 |
if(netClientState != 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
76 |
{ |
1321 | 77 |
qWarning("Illegal try to create room!"); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
78 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
79 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
80 |
|
1082 | 81 |
RawSendNet(QString("CREATE%1%2").arg(delimeter).arg(room)); |
1336
4e88eccbe7f6
Fix team colors mismatch on some conditions (just synchronize them when team is added)
unc0rr
parents:
1333
diff
changeset
|
82 |
m_pGameCFGWidget->setEnabled(true); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
83 |
m_pTeamSelWidget->setInteractivity(true); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
84 |
isChief = true; |
1082 | 85 |
} |
86 |
||
87 |
void HWNewNet::JoinRoom(const QString & room) |
|
88 |
{ |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
89 |
if(netClientState != 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
90 |
{ |
1321 | 91 |
qWarning("Illegal try to join room!"); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
92 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
93 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
94 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
95 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
96 |
|
1082 | 97 |
RawSendNet(QString("JOIN%1%2").arg(delimeter).arg(room)); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
98 |
m_pGameCFGWidget->setEnabled(false); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
99 |
m_pTeamSelWidget->setInteractivity(false); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
100 |
isChief = false; |
315 | 101 |
} |
102 |
||
103 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
104 |
{ |
|
1327 | 105 |
QString cmd = QString("ADD_TEAM") + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
106 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
107 |
team.teamColor.name() + delimeter + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
108 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
109 |
team.Fort + delimeter + |
1661 | 110 |
team.Voicepack + delimeter + |
1245
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
111 |
QString::number(team.difficulty); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
112 |
|
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
113 |
for(int i = 0; i < 8; ++i) |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
114 |
{ |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
115 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
116 |
cmd.append(team.HHName[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
117 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
118 |
cmd.append(team.HHHat[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
119 |
} |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
120 |
RawSendNet(cmd); |
315 | 121 |
} |
122 |
||
347 | 123 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
124 |
{ |
|
1329 | 125 |
RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName); |
347 | 126 |
} |
127 |
||
1404 | 128 |
void HWNewNet::ToggleReady() |
315 | 129 |
{ |
1404 | 130 |
RawSendNet(QString("TOGGLE_READY")); |
315 | 131 |
} |
132 |
||
133 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
134 |
{ |
|
135 |
QString msg = QString(buf.toBase64()); |
|
136 |
||
1311 | 137 |
RawSendNet(QString("GAMEMSG%1%2").arg(delimeter).arg(msg)); |
315 | 138 |
} |
139 |
||
140 |
void HWNewNet::RawSendNet(const QString & str) |
|
141 |
{ |
|
142 |
RawSendNet(str.toUtf8()); |
|
143 |
} |
|
144 |
||
145 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
146 |
{ |
|
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
147 |
qDebug() << "Client: " << QString(buf).split("\n"); |
1369 | 148 |
NetSocket.write(buf); |
149 |
NetSocket.write("\n\n", 2); |
|
315 | 150 |
} |
151 |
||
152 |
void HWNewNet::ClientRead() |
|
153 |
{ |
|
1082 | 154 |
while (NetSocket.canReadLine()) { |
155 |
QString s = QString::fromUtf8(NetSocket.readLine().trimmed()); |
|
156 |
||
157 |
if (s.size() == 0) { |
|
158 |
ParseCmd(cmdbuf); |
|
159 |
cmdbuf.clear(); |
|
160 |
} else |
|
161 |
cmdbuf << s; |
|
162 |
} |
|
315 | 163 |
} |
164 |
||
165 |
void HWNewNet::OnConnect() |
|
166 |
{ |
|
167 |
} |
|
168 |
||
169 |
void HWNewNet::OnDisconnect() |
|
170 |
{ |
|
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
171 |
//emit ChangeInTeams(QStringList()); |
383 | 172 |
if(m_game_connected) emit Disconnected(); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
173 |
m_game_connected = false; |
315 | 174 |
} |
175 |
||
176 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
177 |
{ |
|
1800 | 178 |
emit Disconnected(); |
179 |
||
1302 | 180 |
switch (socketError) { |
181 |
case QAbstractSocket::RemoteHostClosedError: |
|
182 |
break; |
|
183 |
case QAbstractSocket::HostNotFoundError: |
|
1800 | 184 |
emit showMessage(tr("The host was not found. Please check the host name and port settings.")); |
1302 | 185 |
break; |
186 |
case QAbstractSocket::ConnectionRefusedError: |
|
1800 | 187 |
emit showMessage(tr("Connection refused")); |
1302 | 188 |
break; |
189 |
default: |
|
1800 | 190 |
emit showMessage(NetSocket.errorString()); |
1302 | 191 |
} |
315 | 192 |
} |
193 |
||
1082 | 194 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 195 |
{ |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
196 |
qDebug() << "Server: " << lst; |
1305 | 197 |
|
198 |
if(!lst.size()) |
|
199 |
{ |
|
200 |
qWarning("Net client: Bad message"); |
|
201 |
return; |
|
202 |
} |
|
320 | 203 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
204 |
if (lst[0] == "NICK") |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
205 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
206 |
mynick = lst[1]; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
207 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
208 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
209 |
|
1305 | 210 |
if (lst[0] == "ERROR") { |
211 |
if (lst.size() == 2) |
|
1600 | 212 |
emit showMessage("Error: " + lst[1]); |
1305 | 213 |
else |
1600 | 214 |
emit showMessage("Unknown error"); |
1305 | 215 |
return; |
216 |
} |
|
315 | 217 |
|
1307 | 218 |
if (lst[0] == "WARNING") { |
219 |
if (lst.size() == 2) |
|
1600 | 220 |
emit showMessage("Warning: " + lst[1]); |
1307 | 221 |
else |
1600 | 222 |
emit showMessage("Unknown warning"); |
1307 | 223 |
return; |
224 |
} |
|
225 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
226 |
if (lst[0] == "CONNECTED") { |
1471 | 227 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
228 |
RawSendNet(QString("PROTO%1%2").arg(delimeter).arg(*cProtoVer)); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
229 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
230 |
m_game_connected = true; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
231 |
emit Connected(); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
232 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
233 |
} |
315 | 234 |
|
1462 | 235 |
if (lst[0] == "PING") { |
236 |
RawSendNet(QString("PONG")); |
|
237 |
return; |
|
238 |
} |
|
239 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
240 |
if (lst[0] == "ROOMS") { |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
241 |
QStringList tmp = lst; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
242 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
243 |
emit roomsList(tmp); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
244 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
245 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
246 |
|
1377 | 247 |
if (lst[0] == "SERVER_MESSAGE") { |
248 |
if(lst.size() < 2) |
|
249 |
{ |
|
250 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
251 |
return; |
|
252 |
} |
|
253 |
emit serverMessage(lst[1]); |
|
254 |
return; |
|
255 |
} |
|
256 |
||
1815 | 257 |
if (lst[0] == "CHAT") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
258 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
259 |
{ |
1815 | 260 |
qWarning("Net: Empty CHAT message"); |
1377 | 261 |
return; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
262 |
} |
1568 | 263 |
if (netClientState == 2) |
264 |
emit chatStringLobby(formatChatMsg(lst[1], lst[2])); |
|
265 |
else |
|
266 |
emit chatStringFromNet(formatChatMsg(lst[1], lst[2])); |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
267 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
268 |
} |
453 | 269 |
|
1577 | 270 |
if (lst[0] == "INFO") { |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1581
diff
changeset
|
271 |
if(lst.size() < 5) |
1577 | 272 |
{ |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1581
diff
changeset
|
273 |
qWarning("Net: Malformed INFO message"); |
1577 | 274 |
return; |
275 |
} |
|
276 |
QStringList tmp = lst; |
|
277 |
tmp.removeFirst(); |
|
278 |
if (netClientState == 2) |
|
1587 | 279 |
emit chatStringLobby(tmp.join("\n")); |
1577 | 280 |
else |
1587 | 281 |
emit chatStringFromNet(tmp.join("\n")); |
1577 | 282 |
return; |
283 |
} |
|
284 |
||
1405 | 285 |
if (lst[0] == "READY") { |
1829 | 286 |
if(lst.size() < 2) |
1405 | 287 |
{ |
288 |
qWarning("Net: Malformed READY message"); |
|
289 |
return; |
|
290 |
} |
|
1829 | 291 |
for(int i = 1; i < lst.size(); ++i) |
292 |
{ |
|
293 |
if (lst[i] == mynick) |
|
294 |
emit setMyReadyStatus(true); |
|
295 |
emit setReadyStatus(lst[i], true); |
|
296 |
} |
|
1405 | 297 |
return; |
298 |
} |
|
1591 | 299 |
|
1405 | 300 |
if (lst[0] == "NOT_READY") { |
1829 | 301 |
if(lst.size() < 2) |
1405 | 302 |
{ |
303 |
qWarning("Net: Malformed NOT_READY message"); |
|
304 |
return; |
|
305 |
} |
|
1829 | 306 |
for(int i = 1; i < lst.size(); ++i) |
307 |
{ |
|
308 |
if (lst[i] == mynick) |
|
309 |
emit setMyReadyStatus(false); |
|
310 |
emit setReadyStatus(lst[i], false); |
|
311 |
} |
|
1405 | 312 |
return; |
313 |
} |
|
314 |
||
1325 | 315 |
if (lst[0] == "ADD_TEAM") { |
1683 | 316 |
if(lst.size() != 23) |
1321 | 317 |
{ |
1325 | 318 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 319 |
return; |
320 |
} |
|
321 |
QStringList tmp = lst; |
|
322 |
tmp.removeFirst(); |
|
323 |
emit AddNetTeam(tmp); |
|
324 |
return; |
|
325 |
} |
|
315 | 326 |
|
1338 | 327 |
if (lst[0] == "REMOVE_TEAM") { |
328 |
if(lst.size() != 2) |
|
329 |
{ |
|
330 |
qWarning("Net: Bad REMOVETEAM message"); |
|
331 |
return; |
|
332 |
} |
|
333 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
334 |
return; |
|
335 |
} |
|
347 | 336 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
337 |
if(lst[0] == "ROOMABANDONED") { |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
338 |
netClientState = 2; |
1600 | 339 |
emit showMessage(HWNewNet::tr("Room destroyed")); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
340 |
emit LeftRoom(); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
341 |
return; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
342 |
} |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
343 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
344 |
if(lst[0] == "JOINED") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
345 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
346 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
347 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
348 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
349 |
} |
1311 | 350 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
351 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 352 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
353 |
if (lst[i] == mynick) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
354 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
355 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
356 |
emit EnteredGame(); |
1316 | 357 |
if (isChief) |
358 |
ConfigAsked(); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
359 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
360 |
emit nickAdded(lst[i]); |
1378 | 361 |
emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i])); |
1311 | 362 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
363 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
364 |
} |
455 | 365 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
366 |
if(lst[0] == "LOBBY:JOINED") { |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
367 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
368 |
{ |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
369 |
qWarning("Net: Bad JOINED message"); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
370 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
371 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
372 |
|
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
373 |
for(int i = 1; i < lst.size(); ++i) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
374 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
375 |
if (lst[i] == mynick) |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
376 |
{ |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
377 |
netClientState = 2; |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
378 |
RawSendNet(QString("LIST")); |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
379 |
} |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
380 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
381 |
emit nickAddedLobby(lst[i]); |
1568 | 382 |
emit chatStringLobby(QString(tr("*** %1 joined")).arg(lst[i])); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
383 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
384 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
385 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
386 |
|
1325 | 387 |
if(lst[0] == "LEFT") { |
1310 | 388 |
if(lst.size() < 2) |
389 |
{ |
|
390 |
qWarning("Net: Bad LEFT message"); |
|
391 |
return; |
|
392 |
} |
|
393 |
emit nickRemoved(lst[1]); |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
394 |
if (lst.size() < 3) |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
395 |
emit chatStringFromNet(QString(tr("*** %1 left")).arg(lst[1])); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
396 |
else |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
397 |
emit chatStringFromNet(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2])); |
1310 | 398 |
return; |
399 |
} |
|
461 | 400 |
|
1591 | 401 |
if(lst[0] == "ROOM") { |
402 |
if(lst.size() < 2) |
|
403 |
{ |
|
404 |
qWarning("Net: Bad ROOM message"); |
|
405 |
return; |
|
406 |
} |
|
407 |
RawSendNet(QString("LIST")); |
|
408 |
return; |
|
409 |
} |
|
410 |
||
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
411 |
if(lst[0] == "LOBBY:LEFT") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
412 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
413 |
{ |
1581 | 414 |
qWarning("Net: Bad LOBBY:LEFT message"); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
415 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
416 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
417 |
emit nickRemovedLobby(lst[1]); |
1568 | 418 |
if (lst.size() < 3) |
419 |
emit chatStringLobby(QString(tr("*** %1 left")).arg(lst[1])); |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
420 |
else |
1568 | 421 |
emit chatStringLobby(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2])); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
422 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
423 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
424 |
|
1338 | 425 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
426 |
netClientState = 5; |
1325 | 427 |
RunGame(); |
428 |
return; |
|
429 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
430 |
|
1325 | 431 |
if (lst[0] == "TEAM_ACCEPTED") { |
432 |
if (lst.size() != 2) |
|
433 |
{ |
|
434 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
435 |
return; |
|
436 |
} |
|
437 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
438 |
return; |
|
439 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
440 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
441 |
|
1814 | 442 |
if (lst[0] == "CFG") { |
1319 | 443 |
if(lst.size() < 3) |
444 |
{ |
|
1817 | 445 |
qWarning("Net: Bad CFG message"); |
1319 | 446 |
return; |
447 |
} |
|
1814 | 448 |
if (lst[1] == "MAP") { |
449 |
emit mapChanged(lst[2]); |
|
450 |
return; |
|
451 |
} |
|
1319 | 452 |
if (lst[1] == "SEED") { |
453 |
emit seedChanged(lst[2]); |
|
454 |
return; |
|
455 |
} |
|
456 |
if (lst[1] == "THEME") { |
|
457 |
emit themeChanged(lst[2]); |
|
458 |
return; |
|
459 |
} |
|
460 |
if (lst[1] == "HEALTH") { |
|
461 |
emit initHealthChanged(lst[2].toUInt()); |
|
462 |
return; |
|
463 |
} |
|
464 |
if (lst[1] == "TURNTIME") { |
|
465 |
emit turnTimeChanged(lst[2].toUInt()); |
|
466 |
return; |
|
467 |
} |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
468 |
if (lst[1] == "SD_TURNS") { |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
469 |
emit suddenDeathTurnsChanged(lst[2].toUInt()); |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
470 |
return; |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
471 |
} |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
472 |
if (lst[1] == "CASEFACTOR") { |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
473 |
emit caseProbabilityChanged(lst[2].toUInt()); |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
474 |
return; |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
475 |
} |
1319 | 476 |
if (lst[1] == "FORTSMODE") { |
477 |
emit fortsModeChanged(lst[2].toInt() != 0); |
|
478 |
return; |
|
479 |
} |
|
1427 | 480 |
if (lst[1] == "DIVIDETEAMS") { |
481 |
emit teamsDivideChanged(lst[2].toInt() != 0); |
|
482 |
return; |
|
483 |
} |
|
1530 | 484 |
if (lst[1] == "SOLIDLAND") { |
485 |
emit solidChanged(lst[2].toInt() != 0); |
|
486 |
return; |
|
487 |
} |
|
1784 | 488 |
if (lst[1] == "BORDER") { |
489 |
emit borderChanged(lst[2].toInt() != 0); |
|
490 |
return; |
|
491 |
} |
|
1319 | 492 |
if (lst[1] == "AMMO") { |
493 |
if(lst.size() < 4) return; |
|
494 |
emit ammoChanged(lst[3], lst[2]); |
|
495 |
return; |
|
496 |
} |
|
1797 | 497 |
if (lst[1] == "TEMPLATE_FILTER") { |
498 |
emit templateFilterChanged(lst[2].toUInt()); |
|
499 |
return; |
|
500 |
} |
|
1817 | 501 |
qWarning() << "Net: Unknown 'CFG' message:" << lst; |
1319 | 502 |
return; |
697 | 503 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
504 |
|
1327 | 505 |
if (lst[0] == "HH_NUM") { |
506 |
if (lst.size() != 3) |
|
507 |
{ |
|
508 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
509 |
return; |
|
510 |
} |
|
511 |
HWTeam tmptm(lst[1]); |
|
512 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
513 |
emit hhnumChanged(tmptm); |
|
514 |
return; |
|
515 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
516 |
|
1330 | 517 |
if (lst[0] == "TEAM_COLOR") { |
518 |
if (lst.size() != 3) |
|
519 |
{ |
|
520 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
521 |
return; |
|
522 |
} |
|
523 |
HWTeam tmptm(lst[1]); |
|
524 |
tmptm.teamColor = QColor(lst[2]); |
|
525 |
emit teamColorChanged(tmptm); |
|
526 |
return; |
|
527 |
} |
|
528 |
||
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
529 |
if (lst[0] == "GAMEMSG") { |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
530 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
531 |
{ |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
532 |
qWarning("Net: Bad GAMEMSG message"); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
533 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
534 |
} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
535 |
for(int i = 1; i < lst.size(); ++i) |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
536 |
{ |
1559
71e1f67dcfe7
Now spectating works for those who joined after game start
unc0rr
parents:
1558
diff
changeset
|
537 |
QByteArray em = QByteArray::fromBase64(lst[i].toAscii()); |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
538 |
emit FromNet(em); |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
539 |
} |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
540 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
541 |
} |
573 | 542 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
543 |
if (lst[0] == "BYE") { |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
544 |
if (lst.size() < 2) |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
545 |
{ |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
546 |
qWarning("Net: Bad BYE message"); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
547 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
548 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
549 |
emit showMessage(HWNewNet::tr("Quit reason: ") + lst[1]); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
550 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
551 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
552 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
553 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 554 |
} |
555 |
||
556 |
||
557 |
void HWNewNet::ConfigAsked() |
|
558 |
{ |
|
1310 | 559 |
QString map = m_pGameCFGWidget->getCurrentMap(); |
560 |
if (map.size()) |
|
561 |
onMapChanged(map); |
|
574 | 562 |
|
1793 | 563 |
onSuddenDeathTurnsChanged(m_pGameCFGWidget->getSuddenDeathTurns()); |
564 |
onCaseProbabilityChanged(m_pGameCFGWidget->getCaseProbability()); |
|
1310 | 565 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
566 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
567 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
568 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
569 |
onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1); |
|
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
570 |
onTeamsDivideChanged(m_pGameCFGWidget->getGameFlags() & 0x10); |
1530 | 571 |
onSolidChanged(m_pGameCFGWidget->getGameFlags() & 0x04); |
1784 | 572 |
onBorderChanged(m_pGameCFGWidget->getGameFlags() & 0x08); |
1310 | 573 |
// always initialize with default ammo (also avoiding complicated cross-class dependencies) |
1541 | 574 |
QString name = m_pGameCFGWidget->WeaponsName->currentText(); |
575 |
QString ammo = m_pGameCFGWidget->WeaponsName->itemData( |
|
576 |
m_pGameCFGWidget->WeaponsName->currentIndex() |
|
577 |
).toString(); |
|
578 |
onWeaponsNameChanged(name, ammo); |
|
1802 | 579 |
onTemplateFilterChanged(m_pGameCFGWidget->pMapContainer->getTemplateFilter()); |
315 | 580 |
} |
581 |
||
582 |
void HWNewNet::RunGame() |
|
583 |
{ |
|
1310 | 584 |
emit AskForRunGame(); |
431 | 585 |
} |
586 |
||
352 | 587 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
588 |
{ |
|
1330 | 589 |
if (isChief) |
1327 | 590 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 591 |
.arg(delimeter) |
592 |
.arg(team.TeamName) |
|
1321 | 593 |
.arg(team.numHedgehogs)); |
352 | 594 |
} |
595 |
||
372 | 596 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
597 |
{ |
|
1330 | 598 |
if (isChief) |
599 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 600 |
.arg(delimeter) |
601 |
.arg(team.TeamName) |
|
1321 | 602 |
.arg(team.teamColor.name())); |
372 | 603 |
} |
604 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
605 |
void HWNewNet::onSeedChanged(const QString & seed) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
606 |
{ |
1817 | 607 |
if (isChief) RawSendNet(QString("CFG%1SEED%1%2").arg(delimeter).arg(seed)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
608 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
609 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
610 |
void HWNewNet::onMapChanged(const QString & map) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
611 |
{ |
1817 | 612 |
if (isChief) RawSendNet(QString("CFG%1MAP%1%2").arg(delimeter).arg(map)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
613 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
614 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
615 |
void HWNewNet::onThemeChanged(const QString & theme) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
616 |
{ |
1817 | 617 |
if (isChief) RawSendNet(QString("CFG%1THEME%1%2").arg(delimeter).arg(theme)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
618 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
619 |
|
1427 | 620 |
void HWNewNet::onInitHealthChanged(int health) |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
621 |
{ |
1817 | 622 |
if (isChief) RawSendNet(QString("CFG%1HEALTH%1%2").arg(delimeter).arg(health)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
623 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
624 |
|
1427 | 625 |
void HWNewNet::onTurnTimeChanged(int time) |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
626 |
{ |
1817 | 627 |
if (isChief) RawSendNet(QString("CFG%1TURNTIME%1%2").arg(delimeter).arg(time)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
628 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
629 |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
630 |
void HWNewNet::onSuddenDeathTurnsChanged(int turns) |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
631 |
{ |
1817 | 632 |
if (isChief) RawSendNet(QString("CFG%1SD_TURNS%1%2").arg(delimeter).arg(turns)); |
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
633 |
} |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
634 |
|
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
635 |
void HWNewNet::onCaseProbabilityChanged(int prob) |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
636 |
{ |
1817 | 637 |
if (isChief) RawSendNet(QString("CFG%1CASEFACTOR%1%2").arg(delimeter).arg(prob)); |
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
638 |
} |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
639 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
640 |
void HWNewNet::onFortsModeChanged(bool value) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
641 |
{ |
1817 | 642 |
if (isChief) RawSendNet(QString("CFG%1FORTSMODE%1%2").arg(delimeter).arg(value)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
643 |
} |
453 | 644 |
|
1427 | 645 |
void HWNewNet::onTeamsDivideChanged(bool value) |
646 |
{ |
|
1817 | 647 |
if (isChief) RawSendNet(QString("CFG%1DIVIDETEAMS%1%2").arg(delimeter).arg(value)); |
1530 | 648 |
} |
649 |
||
650 |
void HWNewNet::onSolidChanged(bool value) |
|
651 |
{ |
|
1817 | 652 |
if (isChief) RawSendNet(QString("CFG%1SOLIDLAND%1%2").arg(delimeter).arg(value)); |
1427 | 653 |
} |
654 |
||
1784 | 655 |
void HWNewNet::onBorderChanged(bool value) |
656 |
{ |
|
1817 | 657 |
if (isChief) RawSendNet(QString("CFG%1BORDER%1%2").arg(delimeter).arg(value)); |
1784 | 658 |
} |
659 |
||
703 | 660 |
void HWNewNet::onWeaponsNameChanged(const QString& name, const QString& ammo) |
697 | 661 |
{ |
1817 | 662 |
if (isChief) RawSendNet(QString("CFG%1AMMO%1%2%1%3").arg(delimeter).arg(ammo).arg(name)); |
697 | 663 |
} |
664 |
||
1797 | 665 |
void HWNewNet::onTemplateFilterChanged(int filter) |
666 |
{ |
|
1817 | 667 |
if (isChief) RawSendNet(QString("CFG%1TEMPLATE_FILTER%1%2").arg(delimeter).arg(filter)); |
1797 | 668 |
} |
669 |
||
453 | 670 |
void HWNewNet::chatLineToNet(const QString& str) |
671 |
{ |
|
1568 | 672 |
if(str != "") { |
1815 | 673 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 674 |
emit(chatStringFromMe(formatChatMsg(mynick, str))); |
675 |
} |
|
676 |
} |
|
677 |
||
678 |
void HWNewNet::chatLineToLobby(const QString& str) |
|
679 |
{ |
|
680 |
if(str != "") { |
|
1815 | 681 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 682 |
emit(chatStringFromMeLobby(formatChatMsg(mynick, str))); |
683 |
} |
|
453 | 684 |
} |
1315 | 685 |
|
686 |
void HWNewNet::askRoomsList() |
|
687 |
{ |
|
688 |
if(netClientState != 2) |
|
689 |
{ |
|
1321 | 690 |
qWarning("Illegal try to get rooms list!"); |
1315 | 691 |
return; |
692 |
} |
|
693 |
RawSendNet(QString("LIST")); |
|
694 |
} |
|
1339 | 695 |
|
696 |
bool HWNewNet::isRoomChief() |
|
697 |
{ |
|
698 |
return isChief; |
|
699 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
700 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
701 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
702 |
{ |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
703 |
netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
704 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
705 |
} |
1378 | 706 |
|
707 |
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg) |
|
708 |
{ |
|
709 |
if(msg.left(4) == "/me ") |
|
1587 | 710 |
return QString("* %1 %2").arg(nick).arg(msg.mid(4)); |
1378 | 711 |
else |
1587 | 712 |
return QString("%1: %2").arg(nick).arg(msg); |
1378 | 713 |
} |
1391 | 714 |
|
715 |
void HWNewNet::kickPlayer(const QString & nick) |
|
716 |
{ |
|
717 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
718 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
719 |
|
1577 | 720 |
void HWNewNet::infoPlayer(const QString & nick) |
721 |
{ |
|
722 |
RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick)); |
|
723 |
} |
|
724 |
||
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
725 |
void HWNewNet::startGame() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
726 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
727 |
RawSendNet(QString("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
728 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
729 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
730 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
731 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
732 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
733 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
734 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
735 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
736 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
737 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
738 |
} |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
739 |
|
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
740 |
void HWNewNet::partRoom() |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
741 |
{ |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
742 |
netClientState = 2; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
743 |
RawSendNet(QString("PART")); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
744 |
} |
1671 | 745 |
|
746 |
bool HWNewNet::isInRoom() |
|
747 |
{ |
|
748 |
return netClientState > 2; |
|
749 |
} |