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