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