author | nemo |
Sun, 21 Jun 2009 15:31:09 +0000 | |
changeset 2177 | c045698e044f |
parent 2155 | d897222d3339 |
child 2334 | 3cf9290a518e |
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()) { |
2149
2eda77999bec
Fix a bug in frontend leading to incorrect behaviour when dealing with names starting/ending with whitespace
unc0rr
parents:
2138
diff
changeset
|
164 |
QString s = QString::fromUtf8(NetSocket.readLine()); |
2eda77999bec
Fix a bug in frontend leading to incorrect behaviour when dealing with names starting/ending with whitespace
unc0rr
parents:
2138
diff
changeset
|
165 |
if (s.endsWith('\n')) s.chop(1); |
1082 | 166 |
|
167 |
if (s.size() == 0) { |
|
168 |
ParseCmd(cmdbuf); |
|
169 |
cmdbuf.clear(); |
|
170 |
} else |
|
171 |
cmdbuf << s; |
|
172 |
} |
|
315 | 173 |
} |
174 |
||
175 |
void HWNewNet::OnConnect() |
|
176 |
{ |
|
177 |
} |
|
178 |
||
179 |
void HWNewNet::OnDisconnect() |
|
180 |
{ |
|
1875 | 181 |
if(m_game_connected) emit Disconnected(); |
182 |
m_game_connected = false; |
|
315 | 183 |
} |
184 |
||
185 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
186 |
{ |
|
1800 | 187 |
emit Disconnected(); |
188 |
||
1302 | 189 |
switch (socketError) { |
190 |
case QAbstractSocket::RemoteHostClosedError: |
|
191 |
break; |
|
192 |
case QAbstractSocket::HostNotFoundError: |
|
1800 | 193 |
emit showMessage(tr("The host was not found. Please check the host name and port settings.")); |
1302 | 194 |
break; |
195 |
case QAbstractSocket::ConnectionRefusedError: |
|
1800 | 196 |
emit showMessage(tr("Connection refused")); |
1302 | 197 |
break; |
198 |
default: |
|
1800 | 199 |
emit showMessage(NetSocket.errorString()); |
1302 | 200 |
} |
315 | 201 |
} |
202 |
||
1082 | 203 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 204 |
{ |
1990 | 205 |
// qDebug() << "Server: " << lst; |
1305 | 206 |
|
207 |
if(!lst.size()) |
|
208 |
{ |
|
209 |
qWarning("Net client: Bad message"); |
|
210 |
return; |
|
211 |
} |
|
320 | 212 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
213 |
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
|
214 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
215 |
mynick = lst[1]; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
216 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
217 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
218 |
|
2108 | 219 |
if (lst[0] == "PROTO") |
220 |
return ; |
|
221 |
||
1305 | 222 |
if (lst[0] == "ERROR") { |
223 |
if (lst.size() == 2) |
|
1600 | 224 |
emit showMessage("Error: " + lst[1]); |
1305 | 225 |
else |
1600 | 226 |
emit showMessage("Unknown error"); |
1305 | 227 |
return; |
228 |
} |
|
315 | 229 |
|
1307 | 230 |
if (lst[0] == "WARNING") { |
231 |
if (lst.size() == 2) |
|
1600 | 232 |
emit showMessage("Warning: " + lst[1]); |
1307 | 233 |
else |
1600 | 234 |
emit showMessage("Unknown warning"); |
1307 | 235 |
return; |
236 |
} |
|
237 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
238 |
if (lst[0] == "CONNECTED") { |
1471 | 239 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
240 |
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
|
241 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
242 |
m_game_connected = true; |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
243 |
emit adminAccess(false); |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
244 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
245 |
} |
315 | 246 |
|
1462 | 247 |
if (lst[0] == "PING") { |
1929 | 248 |
if (lst.size() > 1) |
249 |
RawSendNet(QString("PONG%1%2").arg(delimeter).arg(lst[1])); |
|
250 |
else |
|
251 |
RawSendNet(QString("PONG")); |
|
1462 | 252 |
return; |
253 |
} |
|
254 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
255 |
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
|
256 |
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
|
257 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
258 |
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
|
259 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
260 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
261 |
|
1377 | 262 |
if (lst[0] == "SERVER_MESSAGE") { |
263 |
if(lst.size() < 2) |
|
264 |
{ |
|
265 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
266 |
return; |
|
267 |
} |
|
268 |
emit serverMessage(lst[1]); |
|
269 |
return; |
|
270 |
} |
|
271 |
||
1815 | 272 |
if (lst[0] == "CHAT") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
273 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
274 |
{ |
1815 | 275 |
qWarning("Net: Empty CHAT message"); |
1377 | 276 |
return; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
277 |
} |
1568 | 278 |
if (netClientState == 2) |
279 |
emit chatStringLobby(formatChatMsg(lst[1], lst[2])); |
|
280 |
else |
|
281 |
emit chatStringFromNet(formatChatMsg(lst[1], lst[2])); |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
282 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
283 |
} |
453 | 284 |
|
1577 | 285 |
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
|
286 |
if(lst.size() < 5) |
1577 | 287 |
{ |
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
|
288 |
qWarning("Net: Malformed INFO message"); |
1577 | 289 |
return; |
290 |
} |
|
291 |
QStringList tmp = lst; |
|
292 |
tmp.removeFirst(); |
|
293 |
if (netClientState == 2) |
|
1587 | 294 |
emit chatStringLobby(tmp.join("\n")); |
1577 | 295 |
else |
1587 | 296 |
emit chatStringFromNet(tmp.join("\n")); |
1577 | 297 |
return; |
298 |
} |
|
299 |
||
1405 | 300 |
if (lst[0] == "READY") { |
1829 | 301 |
if(lst.size() < 2) |
1405 | 302 |
{ |
303 |
qWarning("Net: Malformed READY message"); |
|
304 |
return; |
|
305 |
} |
|
1829 | 306 |
for(int i = 1; i < lst.size(); ++i) |
307 |
{ |
|
308 |
if (lst[i] == mynick) |
|
309 |
emit setMyReadyStatus(true); |
|
310 |
emit setReadyStatus(lst[i], true); |
|
311 |
} |
|
1405 | 312 |
return; |
313 |
} |
|
1591 | 314 |
|
1405 | 315 |
if (lst[0] == "NOT_READY") { |
1829 | 316 |
if(lst.size() < 2) |
1405 | 317 |
{ |
318 |
qWarning("Net: Malformed NOT_READY message"); |
|
319 |
return; |
|
320 |
} |
|
1829 | 321 |
for(int i = 1; i < lst.size(); ++i) |
322 |
{ |
|
323 |
if (lst[i] == mynick) |
|
324 |
emit setMyReadyStatus(false); |
|
325 |
emit setReadyStatus(lst[i], false); |
|
326 |
} |
|
1405 | 327 |
return; |
328 |
} |
|
329 |
||
1325 | 330 |
if (lst[0] == "ADD_TEAM") { |
1683 | 331 |
if(lst.size() != 23) |
1321 | 332 |
{ |
1325 | 333 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 334 |
return; |
335 |
} |
|
336 |
QStringList tmp = lst; |
|
337 |
tmp.removeFirst(); |
|
338 |
emit AddNetTeam(tmp); |
|
339 |
return; |
|
340 |
} |
|
315 | 341 |
|
1338 | 342 |
if (lst[0] == "REMOVE_TEAM") { |
343 |
if(lst.size() != 2) |
|
344 |
{ |
|
345 |
qWarning("Net: Bad REMOVETEAM message"); |
|
346 |
return; |
|
347 |
} |
|
348 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
349 |
return; |
|
350 |
} |
|
347 | 351 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
352 |
if(lst[0] == "ROOMABANDONED") { |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
353 |
netClientState = 2; |
1600 | 354 |
emit showMessage(HWNewNet::tr("Room destroyed")); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
355 |
emit LeftRoom(); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
356 |
return; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
357 |
} |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
358 |
|
1879 | 359 |
if(lst[0] == "KICKED") { |
360 |
netClientState = 2; |
|
361 |
emit showMessage(HWNewNet::tr("You got kicked")); |
|
362 |
emit LeftRoom(); |
|
363 |
return; |
|
364 |
} |
|
365 |
||
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
366 |
if(lst[0] == "JOINED") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
367 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
368 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
369 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
370 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
371 |
} |
1311 | 372 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
373 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 374 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
375 |
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
|
376 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
377 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
378 |
emit EnteredGame(); |
1860 | 379 |
emit roomMaster(isChief); |
1316 | 380 |
if (isChief) |
1875 | 381 |
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
|
382 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
383 |
emit nickAdded(lst[i]); |
1378 | 384 |
emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i])); |
1311 | 385 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
386 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
387 |
} |
455 | 388 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
389 |
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
|
390 |
if(lst.size() < 2) |
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 |
qWarning("Net: Bad JOINED message"); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
393 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
394 |
} |
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 |
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
|
397 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
398 |
if (lst[i] == mynick) |
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 |
netClientState = 2; |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
401 |
RawSendNet(QString("LIST")); |
1842
96a4757dfeb8
Move from 'connecting' page to lobby only when account checked
unc0rr
parents:
1841
diff
changeset
|
402 |
emit Connected(); |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
403 |
} |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
404 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
405 |
emit nickAddedLobby(lst[i]); |
1568 | 406 |
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
|
407 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
408 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
409 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
410 |
|
1325 | 411 |
if(lst[0] == "LEFT") { |
1310 | 412 |
if(lst.size() < 2) |
413 |
{ |
|
414 |
qWarning("Net: Bad LEFT message"); |
|
415 |
return; |
|
416 |
} |
|
417 |
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
|
418 |
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
|
419 |
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
|
420 |
else |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
421 |
emit chatStringFromNet(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2])); |
1310 | 422 |
return; |
423 |
} |
|
461 | 424 |
|
1591 | 425 |
if(lst[0] == "ROOM") { |
426 |
if(lst.size() < 2) |
|
427 |
{ |
|
428 |
qWarning("Net: Bad ROOM message"); |
|
429 |
return; |
|
430 |
} |
|
431 |
RawSendNet(QString("LIST")); |
|
432 |
return; |
|
433 |
} |
|
434 |
||
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
435 |
if(lst[0] == "LOBBY:LEFT") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
436 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
437 |
{ |
1581 | 438 |
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
|
439 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
440 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
441 |
emit nickRemovedLobby(lst[1]); |
1568 | 442 |
if (lst.size() < 3) |
443 |
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
|
444 |
else |
1568 | 445 |
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
|
446 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
447 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
448 |
|
1338 | 449 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
450 |
netClientState = 5; |
1325 | 451 |
RunGame(); |
452 |
return; |
|
453 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
454 |
|
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
455 |
if (lst[0] == "ASKPASSWORD") { |
2138 | 456 |
int passLength = config->value("net/passwordlength", 0).toInt(); |
457 |
QString hash = config->value("net/passwordhash", "").toString(); |
|
458 |
QString password = QInputDialog::getText(0, tr("Password"), tr("Enter your password:"), QLineEdit::Password, passLength==0?NULL:QString(passLength,'\0')); |
|
1844 | 459 |
|
2138 | 460 |
if (!passLength || password!=QString(passLength, '\0')) { |
461 |
hash = QCryptographicHash::hash(password.toLatin1(), QCryptographicHash::Md5).toHex(); |
|
462 |
config->setValue("net/passwordhash", hash); |
|
463 |
config->setValue("net/passwordlength", password.size()); |
|
464 |
} |
|
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
465 |
|
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
466 |
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
|
467 |
return; |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
468 |
} |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
469 |
|
1325 | 470 |
if (lst[0] == "TEAM_ACCEPTED") { |
471 |
if (lst.size() != 2) |
|
472 |
{ |
|
473 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
474 |
return; |
|
475 |
} |
|
476 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
477 |
return; |
|
478 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
479 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
480 |
|
1814 | 481 |
if (lst[0] == "CFG") { |
1319 | 482 |
if(lst.size() < 3) |
483 |
{ |
|
1817 | 484 |
qWarning("Net: Bad CFG message"); |
1319 | 485 |
return; |
486 |
} |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
487 |
QStringList tmp = lst; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
488 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
489 |
tmp.removeFirst(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
490 |
if (lst[1] == "SCHEME") |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
491 |
emit netSchemeConfig(tmp); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
492 |
else |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
493 |
emit paramChanged(lst[1], tmp); |
1319 | 494 |
return; |
697 | 495 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
496 |
|
1327 | 497 |
if (lst[0] == "HH_NUM") { |
498 |
if (lst.size() != 3) |
|
499 |
{ |
|
500 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
501 |
return; |
|
502 |
} |
|
503 |
HWTeam tmptm(lst[1]); |
|
504 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
505 |
emit hhnumChanged(tmptm); |
|
506 |
return; |
|
507 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
508 |
|
1330 | 509 |
if (lst[0] == "TEAM_COLOR") { |
510 |
if (lst.size() != 3) |
|
511 |
{ |
|
512 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
513 |
return; |
|
514 |
} |
|
515 |
HWTeam tmptm(lst[1]); |
|
516 |
tmptm.teamColor = QColor(lst[2]); |
|
517 |
emit teamColorChanged(tmptm); |
|
518 |
return; |
|
519 |
} |
|
520 |
||
1866 | 521 |
if (lst[0] == "EM") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
522 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
523 |
{ |
1866 | 524 |
qWarning("Net: Bad EM message"); |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
525 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
526 |
} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
527 |
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
|
528 |
{ |
1559
71e1f67dcfe7
Now spectating works for those who joined after game start
unc0rr
parents:
1558
diff
changeset
|
529 |
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
|
530 |
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
|
531 |
} |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
532 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
533 |
} |
573 | 534 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
535 |
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
|
536 |
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
|
537 |
{ |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
538 |
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
|
539 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
540 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
541 |
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
|
542 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
543 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
544 |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
545 |
|
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
546 |
if (lst[0] == "ADMIN_ACCESS") { |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
547 |
emit adminAccess(true); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
548 |
return; |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
549 |
} |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
550 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
551 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 552 |
} |
553 |
||
554 |
void HWNewNet::RunGame() |
|
555 |
{ |
|
1310 | 556 |
emit AskForRunGame(); |
431 | 557 |
} |
558 |
||
352 | 559 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
560 |
{ |
|
1330 | 561 |
if (isChief) |
1327 | 562 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 563 |
.arg(delimeter) |
564 |
.arg(team.TeamName) |
|
1321 | 565 |
.arg(team.numHedgehogs)); |
352 | 566 |
} |
567 |
||
372 | 568 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
569 |
{ |
|
1330 | 570 |
if (isChief) |
571 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 572 |
.arg(delimeter) |
573 |
.arg(team.TeamName) |
|
1321 | 574 |
.arg(team.teamColor.name())); |
372 | 575 |
} |
576 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
577 |
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
|
578 |
{ |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
579 |
if (isChief) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
580 |
RawSendNet( |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
581 |
QString("CFG%1%2%1%3") |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
582 |
.arg(delimeter) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
583 |
.arg(param) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
584 |
.arg(value.join(QString(delimeter))) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
585 |
); |
1797 | 586 |
} |
587 |
||
453 | 588 |
void HWNewNet::chatLineToNet(const QString& str) |
589 |
{ |
|
1568 | 590 |
if(str != "") { |
1815 | 591 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 592 |
emit(chatStringFromMe(formatChatMsg(mynick, str))); |
593 |
} |
|
594 |
} |
|
595 |
||
596 |
void HWNewNet::chatLineToLobby(const QString& str) |
|
597 |
{ |
|
598 |
if(str != "") { |
|
1815 | 599 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 600 |
emit(chatStringFromMeLobby(formatChatMsg(mynick, str))); |
601 |
} |
|
453 | 602 |
} |
1315 | 603 |
|
604 |
void HWNewNet::askRoomsList() |
|
605 |
{ |
|
606 |
if(netClientState != 2) |
|
607 |
{ |
|
1321 | 608 |
qWarning("Illegal try to get rooms list!"); |
1315 | 609 |
return; |
610 |
} |
|
611 |
RawSendNet(QString("LIST")); |
|
612 |
} |
|
1339 | 613 |
|
614 |
bool HWNewNet::isRoomChief() |
|
615 |
{ |
|
616 |
return isChief; |
|
617 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
618 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
619 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
620 |
{ |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
621 |
netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
622 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
623 |
} |
1378 | 624 |
|
625 |
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg) |
|
626 |
{ |
|
627 |
if(msg.left(4) == "/me ") |
|
1587 | 628 |
return QString("* %1 %2").arg(nick).arg(msg.mid(4)); |
1378 | 629 |
else |
1587 | 630 |
return QString("%1: %2").arg(nick).arg(msg); |
1378 | 631 |
} |
1391 | 632 |
|
1860 | 633 |
void HWNewNet::banPlayer(const QString & nick) |
634 |
{ |
|
635 |
RawSendNet(QString("BAN%1%2").arg(delimeter).arg(nick)); |
|
636 |
} |
|
637 |
||
1391 | 638 |
void HWNewNet::kickPlayer(const QString & nick) |
639 |
{ |
|
640 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
641 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
642 |
|
1577 | 643 |
void HWNewNet::infoPlayer(const QString & nick) |
644 |
{ |
|
645 |
RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick)); |
|
646 |
} |
|
647 |
||
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
648 |
void HWNewNet::startGame() |
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("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
651 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
652 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
653 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
654 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
655 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
656 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
657 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
658 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
659 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
660 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
661 |
} |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
662 |
|
2155
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
663 |
void HWNewNet::clearAccountsCache() |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
664 |
{ |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
665 |
RawSendNet(QString("CLEAR_ACCOUNTS_CACHE")); |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
666 |
} |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
667 |
|
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
668 |
void HWNewNet::partRoom() |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
669 |
{ |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
670 |
netClientState = 2; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
671 |
RawSendNet(QString("PART")); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
672 |
} |
1671 | 673 |
|
674 |
bool HWNewNet::isInRoom() |
|
675 |
{ |
|
676 |
return netClientState > 2; |
|
677 |
} |
|
1925 | 678 |
|
679 |
void HWNewNet::newServerMessage(const QString & msg) |
|
680 |
{ |
|
681 |
RawSendNet(QString("SET_SERVER_MESSAGE%1%2").arg(delimeter).arg(msg)); |
|
682 |
} |