author | unc0rr |
Mon, 09 Mar 2009 20:47:17 +0000 | |
changeset 1879 | bb114339eb4e |
parent 1878 | b3b277d2b891 |
child 1898 | f0ab0c77946d |
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> |
1844 | 21 |
#include <QInputDialog> |
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" |
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
30 |
#include "misc.h" |
315 | 31 |
|
1082 | 32 |
char delimeter='\n'; |
315 | 33 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
34 |
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) : |
334 | 35 |
config(config), |
36 |
m_pGameCFGWidget(pGameCFGWidget), |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
37 |
m_pTeamSelWidget(pTeamSelWidget), |
383 | 38 |
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
|
39 |
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
|
40 |
loginStep(0), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
41 |
netClientState(0) |
315 | 42 |
{ |
1418 | 43 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
44 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
45 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
46 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
47 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
315 | 48 |
} |
49 |
||
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
50 |
HWNewNet::~HWNewNet() |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
51 |
{ |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
52 |
if (m_game_connected) |
1800 | 53 |
{ |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
54 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1800 | 55 |
emit Disconnected(); |
56 |
} |
|
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
57 |
NetSocket.flush(); |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
58 |
} |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
59 |
|
315 | 60 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
61 |
{ |
|
1418 | 62 |
mynick = nick; |
63 |
NetSocket.connectToHost(hostName, port); |
|
315 | 64 |
} |
65 |
||
66 |
void HWNewNet::Disconnect() |
|
67 |
{ |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
68 |
if (m_game_connected) |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
69 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
70 |
m_game_connected = false; |
1800 | 71 |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
72 |
NetSocket.disconnectFromHost(); |
315 | 73 |
} |
74 |
||
1082 | 75 |
void HWNewNet::CreateRoom(const QString & room) |
315 | 76 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
77 |
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
|
78 |
{ |
1321 | 79 |
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
|
80 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
81 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
82 |
|
1082 | 83 |
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
|
84 |
m_pGameCFGWidget->setEnabled(true); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
85 |
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
|
86 |
isChief = true; |
1082 | 87 |
} |
88 |
||
89 |
void HWNewNet::JoinRoom(const QString & room) |
|
90 |
{ |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
91 |
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
|
92 |
{ |
1321 | 93 |
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
|
94 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
95 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
96 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
97 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
98 |
|
1082 | 99 |
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
|
100 |
m_pGameCFGWidget->setEnabled(false); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
101 |
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
|
102 |
isChief = false; |
315 | 103 |
} |
104 |
||
105 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
106 |
{ |
|
1327 | 107 |
QString cmd = QString("ADD_TEAM") + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
108 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
109 |
team.teamColor.name() + delimeter + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
110 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
111 |
team.Fort + delimeter + |
1661 | 112 |
team.Voicepack + delimeter + |
1245
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
113 |
QString::number(team.difficulty); |
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 |
for(int i = 0; i < 8; ++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 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
118 |
cmd.append(team.HHName[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
119 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
120 |
cmd.append(team.HHHat[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
121 |
} |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
122 |
RawSendNet(cmd); |
315 | 123 |
} |
124 |
||
347 | 125 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
126 |
{ |
|
1329 | 127 |
RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName); |
347 | 128 |
} |
129 |
||
1404 | 130 |
void HWNewNet::ToggleReady() |
315 | 131 |
{ |
1404 | 132 |
RawSendNet(QString("TOGGLE_READY")); |
315 | 133 |
} |
134 |
||
135 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
136 |
{ |
|
137 |
QString msg = QString(buf.toBase64()); |
|
138 |
||
1866 | 139 |
RawSendNet(QString("EM%1%2").arg(delimeter).arg(msg)); |
315 | 140 |
} |
141 |
||
142 |
void HWNewNet::RawSendNet(const QString & str) |
|
143 |
{ |
|
144 |
RawSendNet(str.toUtf8()); |
|
145 |
} |
|
146 |
||
147 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
148 |
{ |
|
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
149 |
qDebug() << "Client: " << QString(buf).split("\n"); |
1369 | 150 |
NetSocket.write(buf); |
151 |
NetSocket.write("\n\n", 2); |
|
315 | 152 |
} |
153 |
||
154 |
void HWNewNet::ClientRead() |
|
155 |
{ |
|
1082 | 156 |
while (NetSocket.canReadLine()) { |
157 |
QString s = QString::fromUtf8(NetSocket.readLine().trimmed()); |
|
158 |
||
159 |
if (s.size() == 0) { |
|
160 |
ParseCmd(cmdbuf); |
|
161 |
cmdbuf.clear(); |
|
162 |
} else |
|
163 |
cmdbuf << s; |
|
164 |
} |
|
315 | 165 |
} |
166 |
||
167 |
void HWNewNet::OnConnect() |
|
168 |
{ |
|
169 |
} |
|
170 |
||
171 |
void HWNewNet::OnDisconnect() |
|
172 |
{ |
|
1875 | 173 |
if(m_game_connected) emit Disconnected(); |
174 |
m_game_connected = false; |
|
315 | 175 |
} |
176 |
||
177 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
178 |
{ |
|
1800 | 179 |
emit Disconnected(); |
180 |
||
1302 | 181 |
switch (socketError) { |
182 |
case QAbstractSocket::RemoteHostClosedError: |
|
183 |
break; |
|
184 |
case QAbstractSocket::HostNotFoundError: |
|
1800 | 185 |
emit showMessage(tr("The host was not found. Please check the host name and port settings.")); |
1302 | 186 |
break; |
187 |
case QAbstractSocket::ConnectionRefusedError: |
|
1800 | 188 |
emit showMessage(tr("Connection refused")); |
1302 | 189 |
break; |
190 |
default: |
|
1800 | 191 |
emit showMessage(NetSocket.errorString()); |
1302 | 192 |
} |
315 | 193 |
} |
194 |
||
1082 | 195 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 196 |
{ |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
197 |
qDebug() << "Server: " << lst; |
1305 | 198 |
|
199 |
if(!lst.size()) |
|
200 |
{ |
|
201 |
qWarning("Net client: Bad message"); |
|
202 |
return; |
|
203 |
} |
|
320 | 204 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
205 |
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
|
206 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
207 |
mynick = lst[1]; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
208 |
return ; |
1313
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 |
|
1305 | 211 |
if (lst[0] == "ERROR") { |
212 |
if (lst.size() == 2) |
|
1600 | 213 |
emit showMessage("Error: " + lst[1]); |
1305 | 214 |
else |
1600 | 215 |
emit showMessage("Unknown error"); |
1305 | 216 |
return; |
217 |
} |
|
315 | 218 |
|
1307 | 219 |
if (lst[0] == "WARNING") { |
220 |
if (lst.size() == 2) |
|
1600 | 221 |
emit showMessage("Warning: " + lst[1]); |
1307 | 222 |
else |
1600 | 223 |
emit showMessage("Unknown warning"); |
1307 | 224 |
return; |
225 |
} |
|
226 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
227 |
if (lst[0] == "CONNECTED") { |
1471 | 228 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
229 |
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
|
230 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
231 |
m_game_connected = true; |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
232 |
emit adminAccess(false); |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
233 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
234 |
} |
315 | 235 |
|
1462 | 236 |
if (lst[0] == "PING") { |
237 |
RawSendNet(QString("PONG")); |
|
238 |
return; |
|
239 |
} |
|
240 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
241 |
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
|
242 |
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
|
243 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
244 |
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
|
245 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
246 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
247 |
|
1377 | 248 |
if (lst[0] == "SERVER_MESSAGE") { |
249 |
if(lst.size() < 2) |
|
250 |
{ |
|
251 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
252 |
return; |
|
253 |
} |
|
254 |
emit serverMessage(lst[1]); |
|
255 |
return; |
|
256 |
} |
|
257 |
||
1815 | 258 |
if (lst[0] == "CHAT") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
259 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
260 |
{ |
1815 | 261 |
qWarning("Net: Empty CHAT message"); |
1377 | 262 |
return; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
263 |
} |
1568 | 264 |
if (netClientState == 2) |
265 |
emit chatStringLobby(formatChatMsg(lst[1], lst[2])); |
|
266 |
else |
|
267 |
emit chatStringFromNet(formatChatMsg(lst[1], lst[2])); |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
268 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
269 |
} |
453 | 270 |
|
1577 | 271 |
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
|
272 |
if(lst.size() < 5) |
1577 | 273 |
{ |
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 |
qWarning("Net: Malformed INFO message"); |
1577 | 275 |
return; |
276 |
} |
|
277 |
QStringList tmp = lst; |
|
278 |
tmp.removeFirst(); |
|
279 |
if (netClientState == 2) |
|
1587 | 280 |
emit chatStringLobby(tmp.join("\n")); |
1577 | 281 |
else |
1587 | 282 |
emit chatStringFromNet(tmp.join("\n")); |
1577 | 283 |
return; |
284 |
} |
|
285 |
||
1405 | 286 |
if (lst[0] == "READY") { |
1829 | 287 |
if(lst.size() < 2) |
1405 | 288 |
{ |
289 |
qWarning("Net: Malformed READY message"); |
|
290 |
return; |
|
291 |
} |
|
1829 | 292 |
for(int i = 1; i < lst.size(); ++i) |
293 |
{ |
|
294 |
if (lst[i] == mynick) |
|
295 |
emit setMyReadyStatus(true); |
|
296 |
emit setReadyStatus(lst[i], true); |
|
297 |
} |
|
1405 | 298 |
return; |
299 |
} |
|
1591 | 300 |
|
1405 | 301 |
if (lst[0] == "NOT_READY") { |
1829 | 302 |
if(lst.size() < 2) |
1405 | 303 |
{ |
304 |
qWarning("Net: Malformed NOT_READY message"); |
|
305 |
return; |
|
306 |
} |
|
1829 | 307 |
for(int i = 1; i < lst.size(); ++i) |
308 |
{ |
|
309 |
if (lst[i] == mynick) |
|
310 |
emit setMyReadyStatus(false); |
|
311 |
emit setReadyStatus(lst[i], false); |
|
312 |
} |
|
1405 | 313 |
return; |
314 |
} |
|
315 |
||
1325 | 316 |
if (lst[0] == "ADD_TEAM") { |
1683 | 317 |
if(lst.size() != 23) |
1321 | 318 |
{ |
1325 | 319 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 320 |
return; |
321 |
} |
|
322 |
QStringList tmp = lst; |
|
323 |
tmp.removeFirst(); |
|
324 |
emit AddNetTeam(tmp); |
|
325 |
return; |
|
326 |
} |
|
315 | 327 |
|
1338 | 328 |
if (lst[0] == "REMOVE_TEAM") { |
329 |
if(lst.size() != 2) |
|
330 |
{ |
|
331 |
qWarning("Net: Bad REMOVETEAM message"); |
|
332 |
return; |
|
333 |
} |
|
334 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
335 |
return; |
|
336 |
} |
|
347 | 337 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
338 |
if(lst[0] == "ROOMABANDONED") { |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
339 |
netClientState = 2; |
1600 | 340 |
emit showMessage(HWNewNet::tr("Room destroyed")); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
341 |
emit LeftRoom(); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
342 |
return; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
343 |
} |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
344 |
|
1879 | 345 |
if(lst[0] == "KICKED") { |
346 |
netClientState = 2; |
|
347 |
emit showMessage(HWNewNet::tr("You got kicked")); |
|
348 |
emit LeftRoom(); |
|
349 |
return; |
|
350 |
} |
|
351 |
||
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
352 |
if(lst[0] == "JOINED") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
353 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
354 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
355 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
356 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
357 |
} |
1311 | 358 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
359 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 360 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
361 |
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
|
362 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
363 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
364 |
emit EnteredGame(); |
1860 | 365 |
emit roomMaster(isChief); |
1316 | 366 |
if (isChief) |
1875 | 367 |
emit configAsked(); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
368 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
369 |
emit nickAdded(lst[i]); |
1378 | 370 |
emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i])); |
1311 | 371 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
372 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
373 |
} |
455 | 374 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
375 |
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
|
376 |
if(lst.size() < 2) |
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 |
qWarning("Net: Bad JOINED message"); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
379 |
return; |
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 |
|
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
382 |
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
|
383 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
384 |
if (lst[i] == mynick) |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
385 |
{ |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
386 |
netClientState = 2; |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
387 |
RawSendNet(QString("LIST")); |
1842
96a4757dfeb8
Move from 'connecting' page to lobby only when account checked
unc0rr
parents:
1841
diff
changeset
|
388 |
emit Connected(); |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
389 |
} |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
390 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
391 |
emit nickAddedLobby(lst[i]); |
1568 | 392 |
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
|
393 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
394 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
395 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
396 |
|
1325 | 397 |
if(lst[0] == "LEFT") { |
1310 | 398 |
if(lst.size() < 2) |
399 |
{ |
|
400 |
qWarning("Net: Bad LEFT message"); |
|
401 |
return; |
|
402 |
} |
|
403 |
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
|
404 |
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
|
405 |
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
|
406 |
else |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
407 |
emit chatStringFromNet(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2])); |
1310 | 408 |
return; |
409 |
} |
|
461 | 410 |
|
1591 | 411 |
if(lst[0] == "ROOM") { |
412 |
if(lst.size() < 2) |
|
413 |
{ |
|
414 |
qWarning("Net: Bad ROOM message"); |
|
415 |
return; |
|
416 |
} |
|
417 |
RawSendNet(QString("LIST")); |
|
418 |
return; |
|
419 |
} |
|
420 |
||
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
421 |
if(lst[0] == "LOBBY:LEFT") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
422 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
423 |
{ |
1581 | 424 |
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
|
425 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
426 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
427 |
emit nickRemovedLobby(lst[1]); |
1568 | 428 |
if (lst.size() < 3) |
429 |
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
|
430 |
else |
1568 | 431 |
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
|
432 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
433 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
434 |
|
1338 | 435 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
436 |
netClientState = 5; |
1325 | 437 |
RunGame(); |
438 |
return; |
|
439 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
440 |
|
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
441 |
if (lst[0] == "ASKPASSWORD") { |
1844 | 442 |
QString password = QInputDialog::getText(0, tr("Password"), tr("Enter your password:"), QLineEdit::Password); |
443 |
||
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
444 |
QString hash = Hash::md5(password.toLatin1()); |
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
445 |
|
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
446 |
RawSendNet(QString("PASSWORD%1%2").arg(delimeter).arg(hash)); |
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
447 |
return; |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
448 |
} |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
449 |
|
1325 | 450 |
if (lst[0] == "TEAM_ACCEPTED") { |
451 |
if (lst.size() != 2) |
|
452 |
{ |
|
453 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
454 |
return; |
|
455 |
} |
|
456 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
457 |
return; |
|
458 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
459 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
460 |
|
1814 | 461 |
if (lst[0] == "CFG") { |
1319 | 462 |
if(lst.size() < 3) |
463 |
{ |
|
1817 | 464 |
qWarning("Net: Bad CFG message"); |
1319 | 465 |
return; |
466 |
} |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
467 |
QStringList tmp = lst; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
468 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
469 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
470 |
emit paramChanged(lst[1], tmp); |
1319 | 471 |
return; |
697 | 472 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
473 |
|
1327 | 474 |
if (lst[0] == "HH_NUM") { |
475 |
if (lst.size() != 3) |
|
476 |
{ |
|
477 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
478 |
return; |
|
479 |
} |
|
480 |
HWTeam tmptm(lst[1]); |
|
481 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
482 |
emit hhnumChanged(tmptm); |
|
483 |
return; |
|
484 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
485 |
|
1330 | 486 |
if (lst[0] == "TEAM_COLOR") { |
487 |
if (lst.size() != 3) |
|
488 |
{ |
|
489 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
490 |
return; |
|
491 |
} |
|
492 |
HWTeam tmptm(lst[1]); |
|
493 |
tmptm.teamColor = QColor(lst[2]); |
|
494 |
emit teamColorChanged(tmptm); |
|
495 |
return; |
|
496 |
} |
|
497 |
||
1866 | 498 |
if (lst[0] == "EM") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
499 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
500 |
{ |
1866 | 501 |
qWarning("Net: Bad EM message"); |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
502 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
503 |
} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
504 |
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
|
505 |
{ |
1559
71e1f67dcfe7
Now spectating works for those who joined after game start
unc0rr
parents:
1558
diff
changeset
|
506 |
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
|
507 |
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
|
508 |
} |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
509 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
510 |
} |
573 | 511 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
512 |
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
|
513 |
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
|
514 |
{ |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
515 |
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
|
516 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
517 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
518 |
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
|
519 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
520 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
521 |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
522 |
|
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
523 |
if (lst[0] == "ADMIN_ACCESS") { |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
524 |
emit adminAccess(true); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
525 |
return; |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
526 |
} |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
527 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
528 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 529 |
} |
530 |
||
531 |
void HWNewNet::RunGame() |
|
532 |
{ |
|
1310 | 533 |
emit AskForRunGame(); |
431 | 534 |
} |
535 |
||
352 | 536 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
537 |
{ |
|
1330 | 538 |
if (isChief) |
1327 | 539 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 540 |
.arg(delimeter) |
541 |
.arg(team.TeamName) |
|
1321 | 542 |
.arg(team.numHedgehogs)); |
352 | 543 |
} |
544 |
||
372 | 545 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
546 |
{ |
|
1330 | 547 |
if (isChief) |
548 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 549 |
.arg(delimeter) |
550 |
.arg(team.TeamName) |
|
1321 | 551 |
.arg(team.teamColor.name())); |
372 | 552 |
} |
553 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
554 |
void HWNewNet::onParamChanged(const QString & param, const QStringList & value) |
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
555 |
{ |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
556 |
if (isChief) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
557 |
RawSendNet( |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
558 |
QString("CFG%1%2%1%3") |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
559 |
.arg(delimeter) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
560 |
.arg(param) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
561 |
.arg(value.join(QString(delimeter))) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
562 |
); |
1797 | 563 |
} |
564 |
||
453 | 565 |
void HWNewNet::chatLineToNet(const QString& str) |
566 |
{ |
|
1568 | 567 |
if(str != "") { |
1815 | 568 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 569 |
emit(chatStringFromMe(formatChatMsg(mynick, str))); |
570 |
} |
|
571 |
} |
|
572 |
||
573 |
void HWNewNet::chatLineToLobby(const QString& str) |
|
574 |
{ |
|
575 |
if(str != "") { |
|
1815 | 576 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 577 |
emit(chatStringFromMeLobby(formatChatMsg(mynick, str))); |
578 |
} |
|
453 | 579 |
} |
1315 | 580 |
|
581 |
void HWNewNet::askRoomsList() |
|
582 |
{ |
|
583 |
if(netClientState != 2) |
|
584 |
{ |
|
1321 | 585 |
qWarning("Illegal try to get rooms list!"); |
1315 | 586 |
return; |
587 |
} |
|
588 |
RawSendNet(QString("LIST")); |
|
589 |
} |
|
1339 | 590 |
|
591 |
bool HWNewNet::isRoomChief() |
|
592 |
{ |
|
593 |
return isChief; |
|
594 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
595 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
596 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
597 |
{ |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
598 |
netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
599 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
600 |
} |
1378 | 601 |
|
602 |
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg) |
|
603 |
{ |
|
604 |
if(msg.left(4) == "/me ") |
|
1587 | 605 |
return QString("* %1 %2").arg(nick).arg(msg.mid(4)); |
1378 | 606 |
else |
1587 | 607 |
return QString("%1: %2").arg(nick).arg(msg); |
1378 | 608 |
} |
1391 | 609 |
|
1860 | 610 |
void HWNewNet::banPlayer(const QString & nick) |
611 |
{ |
|
612 |
RawSendNet(QString("BAN%1%2").arg(delimeter).arg(nick)); |
|
613 |
} |
|
614 |
||
1391 | 615 |
void HWNewNet::kickPlayer(const QString & nick) |
616 |
{ |
|
617 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
618 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
619 |
|
1577 | 620 |
void HWNewNet::infoPlayer(const QString & nick) |
621 |
{ |
|
622 |
RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick)); |
|
623 |
} |
|
624 |
||
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
625 |
void HWNewNet::startGame() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
626 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
627 |
RawSendNet(QString("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
628 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
629 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
630 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
631 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
632 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
633 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
634 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
635 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
636 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
637 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
638 |
} |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
639 |
|
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
640 |
void HWNewNet::partRoom() |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
641 |
{ |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
642 |
netClientState = 2; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
643 |
RawSendNet(QString("PART")); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
644 |
} |
1671 | 645 |
|
646 |
bool HWNewNet::isInRoom() |
|
647 |
{ |
|
648 |
return netClientState > 2; |
|
649 |
} |