author | unc0rr |
Wed, 01 Feb 2006 20:42:53 +0000 | |
changeset 57 | e1a77ae57065 |
parent 37 | 2b7f2a43b999 |
child 84 | 0f6669da2fcb |
permissions | -rw-r--r-- |
28 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2005 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*/ |
|
33 |
||
34 |
#include <QMessageBox> |
|
35 |
#include "netclient.h" |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
36 |
#include "game.h" |
28 | 37 |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
38 |
HWNet::HWNet(int Resolution, bool Fullscreen) |
28 | 39 |
: QObject() |
40 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
41 |
gameResolution = Resolution; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
42 |
gameFullscreen = Fullscreen; |
28 | 43 |
state = nsDisconnected; |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
44 |
IRCmsg_cmd_text = new QRegExp("^[A-Z]+ :.+$"); |
28 | 45 |
IRCmsg_number_param = new QRegExp("^:\\S+ [0-9]{3} .+$"); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
46 |
IRCmsg_who_cmd_target = new QRegExp("^:\\S+ [A-Z]+ \\S+$"); // last \\S should mean 'the 1st char is not ":"' |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
47 |
IRCmsg_who_cmd_text = new QRegExp("^:\\S+ [A-Z]+ :.+$"); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
48 |
IRCmsg_who_cmd_target_text = new QRegExp("^:\\S+ [A-Z]+ \\S+ :.+$"); |
29 | 49 |
isOp = false; |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
50 |
teamsCount = 0; |
28 | 51 |
|
52 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
|
53 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
54 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
55 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
56 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
57 |
} |
|
58 |
||
59 |
void HWNet::ClientRead() |
|
60 |
{ |
|
61 |
while (NetSocket.canReadLine()) |
|
62 |
{ |
|
63 |
ParseLine(NetSocket.readLine().trimmed()); |
|
64 |
} |
|
65 |
} |
|
66 |
||
67 |
void HWNet::displayError(QAbstractSocket::SocketError socketError) |
|
68 |
{ |
|
69 |
switch (socketError) |
|
70 |
{ |
|
71 |
case QAbstractSocket::RemoteHostClosedError: |
|
72 |
break; |
|
73 |
case QAbstractSocket::HostNotFoundError: |
|
74 |
QMessageBox::information(0, tr("Error"), |
|
75 |
tr("The host was not found. Please check the host name and port settings.")); |
|
76 |
break; |
|
77 |
case QAbstractSocket::ConnectionRefusedError: |
|
78 |
QMessageBox::information(0, tr("Error"), |
|
79 |
tr("Connection refused")); |
|
80 |
break; |
|
81 |
default: |
|
82 |
QMessageBox::information(0, tr("Error"), |
|
83 |
NetSocket.errorString()); |
|
84 |
} |
|
85 |
} |
|
86 |
||
29 | 87 |
void HWNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
28 | 88 |
{ |
89 |
state = nsConnecting; |
|
90 |
NetSocket.connectToHost(hostName, port); |
|
29 | 91 |
mynick = nick; |
92 |
opnick = ""; |
|
93 |
opCount = 0; |
|
28 | 94 |
} |
95 |
||
96 |
||
97 |
void HWNet::OnConnect() |
|
98 |
{ |
|
99 |
state = nsConnected; |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
100 |
RawSendNet(QString("USER hwgame 1 2 Hedgewars game")); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
101 |
RawSendNet(QString("NICK %1").arg(mynick)); |
28 | 102 |
} |
103 |
||
104 |
void HWNet::OnDisconnect() |
|
105 |
{ |
|
106 |
state = nsDisconnected; |
|
107 |
} |
|
108 |
||
109 |
void HWNet::Perform() |
|
110 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
111 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
112 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
113 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
114 |
void HWNet::JoinGame(const QString & game) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
115 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
116 |
state = nsJoining; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
117 |
RawSendNet(QString("JOIN %1").arg(game)); |
28 | 118 |
} |
119 |
||
120 |
void HWNet::Disconnect() |
|
121 |
{ |
|
122 |
switch (state) |
|
123 |
{ |
|
124 |
case nsDisconnected: |
|
125 |
{ |
|
126 |
break; |
|
127 |
} |
|
128 |
case nsConnecting: |
|
129 |
case nsQuitting: |
|
130 |
{ |
|
131 |
NetSocket.disconnect(); |
|
132 |
break; |
|
133 |
} |
|
134 |
default: |
|
135 |
{ |
|
136 |
state = nsQuitting; |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
137 |
RawSendNet(QString("QUIT :oops")); |
28 | 138 |
} |
139 |
} |
|
140 |
} |
|
141 |
||
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
142 |
void HWNet::RawSendNet(const QString & str) |
28 | 143 |
{ |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
144 |
RawSendNet(str.toLatin1()); |
28 | 145 |
} |
146 |
||
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
147 |
void HWNet::RawSendNet(const QByteArray & buf) |
28 | 148 |
{ |
149 |
if (buf.size() > 510) return; |
|
150 |
NetSocket.write(buf); |
|
151 |
NetSocket.write("\x0d\x0a", 2); |
|
152 |
} |
|
153 |
||
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
154 |
void HWNet::SendNet(const QByteArray & buf) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
155 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
156 |
if ((state == nsGaming) || (state == nsStarting)) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
157 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
158 |
QString msg = QString(buf.toBase64()); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
159 |
if ((msg == "AUM=") && (mynick == opnick)) |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
160 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
161 |
ConfigAsked(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
162 |
} else |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
163 |
if (msg == "AT8=") |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
164 |
{ |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
165 |
// its ping ("?") |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
166 |
} else |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
167 |
{ |
36 | 168 |
if (state == nsGaming) |
169 |
{ |
|
170 |
NetBuffer += buf; |
|
171 |
} else |
|
172 |
{ |
|
173 |
RawSendNet(QString("PRIVMSG %1 :"MAGIC_CHAR MAGIC_CHAR"%2").arg(channel, msg)); |
|
174 |
} |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
175 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
176 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
177 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
178 |
|
36 | 179 |
void HWNet::FlushNetBuf() |
180 |
{ |
|
181 |
if (NetBuffer.size() > 0) |
|
182 |
{ |
|
183 |
RawSendNet(QString("PRIVMSG %1 :"MAGIC_CHAR MAGIC_CHAR"%2").arg(channel, QString(NetBuffer.toBase64()))); |
|
184 |
NetBuffer.clear(); |
|
185 |
} |
|
186 |
} |
|
187 |
||
28 | 188 |
void HWNet::ParseLine(const QString & msg) |
189 |
{ |
|
29 | 190 |
//QMessageBox::information(0, "", msg); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
191 |
if (IRCmsg_cmd_text->exactMatch(msg)) |
28 | 192 |
{ |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
193 |
msgcmd_textHandler(msg); |
28 | 194 |
} else |
195 |
if (IRCmsg_number_param->exactMatch(msg)) |
|
196 |
{ |
|
197 |
msgnumber_paramHandler(msg); |
|
29 | 198 |
} else |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
199 |
if (IRCmsg_who_cmd_text->exactMatch(msg)) |
29 | 200 |
{ |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
201 |
msgwho_cmd_textHandler(msg); |
29 | 202 |
} else |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
203 |
if (IRCmsg_who_cmd_target->exactMatch(msg)) |
29 | 204 |
{ |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
205 |
msgwho_cmd_targetHandler(msg); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
206 |
} else |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
207 |
if (IRCmsg_who_cmd_target_text->exactMatch(msg)) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
208 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
209 |
msgwho_cmd_target_textHandler(msg); |
28 | 210 |
} |
211 |
} |
|
212 |
||
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
213 |
void HWNet::msgcmd_textHandler(const QString & msg) |
28 | 214 |
{ |
215 |
QStringList list = msg.split(" :"); |
|
216 |
if (list[0] == "PING") |
|
217 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
218 |
RawSendNet(QString("PONG %1").arg(list[1])); |
28 | 219 |
} |
220 |
} |
|
221 |
||
222 |
void HWNet::msgnumber_paramHandler(const QString & msg) |
|
223 |
{ |
|
29 | 224 |
int pos = msg.indexOf(" :"); |
225 |
QString text = msg.mid(pos + 2); |
|
226 |
QStringList list = msg.mid(0, pos).split(" "); |
|
28 | 227 |
bool ok; |
228 |
quint16 number = list[1].toInt(&ok); |
|
229 |
if (!ok) |
|
230 |
return ; |
|
231 |
switch (number) |
|
232 |
{ |
|
233 |
case 001 : |
|
234 |
{ |
|
235 |
Perform(); |
|
236 |
emit Connected(); |
|
237 |
break; |
|
238 |
} |
|
29 | 239 |
case 322 : // RPL_LIST |
28 | 240 |
{ |
241 |
emit AddGame(list[3]); |
|
29 | 242 |
break; |
243 |
} |
|
244 |
case 353 : // RPL_NAMREPLY |
|
245 |
{ |
|
246 |
QStringList ops = text.split(" ").filter(QRegExp("^@\\S+$")); |
|
247 |
opCount += ops.size(); |
|
248 |
if (ops.size() == 1) |
|
249 |
{ |
|
250 |
opnick = ops[0].mid(1); |
|
251 |
} |
|
252 |
break; |
|
253 |
} |
|
254 |
case 366 : // RPL_ENDOFNAMES |
|
255 |
{ |
|
256 |
if (opCount != 1) |
|
257 |
{ |
|
258 |
opnick = ""; |
|
259 |
} |
|
260 |
opCount = 0; |
|
261 |
break; |
|
262 |
} |
|
263 |
case 432 : // ERR_ERRONEUSNICKNAME |
|
264 |
case 433 : // ERR_NICKNAMEINUSE |
|
265 |
{ |
|
266 |
// ask for another nick |
|
28 | 267 |
} |
268 |
} |
|
269 |
} |
|
29 | 270 |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
271 |
void HWNet::msgwho_cmd_targetHandler(const QString & msg) |
29 | 272 |
{ |
273 |
QStringList list = msg.split(" "); |
|
274 |
QString who = list[0].mid(1).split("!")[0]; |
|
275 |
if (list[1] == "NICK") |
|
276 |
{ |
|
277 |
if (mynick == who) |
|
278 |
mynick = list[2]; |
|
279 |
if (opnick == who) |
|
280 |
opnick = list[2]; |
|
281 |
} |
|
282 |
} |
|
283 |
||
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
284 |
void HWNet::msgwho_cmd_textHandler(const QString & msg) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
285 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
286 |
int pos = msg.indexOf(" :"); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
287 |
QString text = msg.mid(pos + 2); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
288 |
QStringList list = msg.mid(0, pos).split(" "); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
289 |
QString who = list[0].mid(1).split("!")[0]; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
290 |
if (list[1] == "JOIN") |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
291 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
292 |
if (who == mynick) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
293 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
294 |
channel = text; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
295 |
state = nsJoined; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
296 |
emit EnteredGame(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
297 |
RawSendNet(QString("PRIVMSG %1 :Hello!").arg(channel)); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
298 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
299 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
300 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
301 |
void HWNet::msgwho_cmd_target_textHandler(const QString & msg) |
29 | 302 |
{ |
303 |
int pos = msg.indexOf(" :"); |
|
304 |
QString text = msg.mid(pos + 2); |
|
305 |
QStringList list = msg.mid(0, pos).split(" "); |
|
306 |
QString who = list[0].mid(1).split("!")[0]; |
|
307 |
if (list[1] == "PRIVMSG") |
|
308 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
309 |
if (list[2] == opnick) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
310 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
311 |
hwp_opmsg(who, text); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
312 |
} else |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
313 |
if (list[2] == channel) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
314 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
315 |
hwp_chanmsg(who, text); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
316 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
317 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
318 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
319 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
320 |
void HWNet::hwp_opmsg(const QString & who, const QString & msg) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
321 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
322 |
if (state != nsJoined) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
323 |
return ; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
324 |
if (!msg.startsWith(MAGIC_CHAR)) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
325 |
return ; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
326 |
QStringList list = msg.split(MAGIC_CHAR, QString::SkipEmptyParts); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
327 |
if (list[0] == "A") |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
328 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
329 |
list.removeFirst(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
330 |
if (list.size() != 9) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
331 |
return ; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
332 |
if (teamsCount < 5) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
333 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
334 |
teams[teamsCount].nick = who; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
335 |
teams[teamsCount].hhs = list; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
336 |
teamsCount++; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
337 |
QString teamnames; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
338 |
for(int i = 0; i < teamsCount; i++) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
339 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
340 |
teamnames += MAGIC_CHAR; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
341 |
teamnames += teams[i].hhs[0]; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
342 |
} |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
343 |
QString tmsg = QString(MAGIC_CHAR"=%2").arg(teamnames); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
344 |
RawSendNet(QString("PRIVMSG %1 :").arg(channel) + tmsg); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
345 |
hwp_chanmsg(mynick, tmsg); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
346 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
347 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
348 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
349 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
350 |
void HWNet::ConfigAsked() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
351 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
352 |
configasks++; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
353 |
if (configasks == playerscnt) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
354 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
355 |
quint32 color = 65535; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
356 |
for (int i = 0; i < teamsCount; i++) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
357 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
358 |
QString msg; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
359 |
msg = MAGIC_CHAR "T" MAGIC_CHAR + teams[i].nick + MAGIC_CHAR + teams[i].hhs.join(MAGIC_CHAR); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
360 |
RawSendNet(QString("PRIVMSG %1 :%2").arg(channel, msg)); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
361 |
hwp_chanmsg(mynick, msg); |
36 | 362 |
QByteArray cache; |
363 |
#define ADD(a) { \ |
|
364 |
QByteArray strmsg; \ |
|
365 |
strmsg.append(a); \ |
|
366 |
quint8 sz = strmsg.size(); \ |
|
367 |
cache.append(QByteArray((char *)&sz, 1)); \ |
|
368 |
cache.append(strmsg); \ |
|
369 |
} |
|
370 |
ADD(QString("ecolor %1").arg(color)); |
|
371 |
ADD("eadd hh0 0"); |
|
372 |
ADD("eadd hh1 0"); |
|
373 |
ADD("eadd hh2 0"); |
|
374 |
ADD("eadd hh3 0"); |
|
375 |
ADD("eadd hh4 0"); |
|
376 |
#undef ADD |
|
377 |
QString _msg = MAGIC_CHAR MAGIC_CHAR + QString(cache.toBase64()); |
|
378 |
hwp_chanmsg(mynick, _msg); |
|
379 |
RawSendNet(QString("PRIVMSG %1 :").arg(channel) + _msg); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
380 |
color <<= 8; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
381 |
} |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
382 |
SENDCFGSTRNET("!"); |
29 | 383 |
} |
384 |
} |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
385 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
386 |
void HWNet::hwp_chanmsg(const QString & who, const QString & msg) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
387 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
388 |
if ((state < nsJoined) || (state > nsGaming)) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
389 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
390 |
return ; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
391 |
} |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
392 |
if (state == nsJoined) |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
393 |
{ |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
394 |
if (msg.startsWith(MAGIC_CHAR"Start!"MAGIC_CHAR) && (who == opnick)) |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
395 |
{ |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
396 |
state = nsStarting; |
37 | 397 |
RunGame(msg.mid(8)); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
398 |
return ; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
399 |
} |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
400 |
if (msg.startsWith(MAGIC_CHAR"="MAGIC_CHAR) && (who == opnick)) |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
401 |
{ |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
402 |
emit ChangeInTeams(msg.mid(3).split(MAGIC_CHAR)); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
403 |
} |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
404 |
} |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
405 |
if (state == nsStarting) |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
406 |
{ |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
407 |
if (msg == MAGIC_CHAR MAGIC_CHAR "AUM=") |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
408 |
{ |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
409 |
if (mynick == opnick) ConfigAsked(); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
410 |
return ; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
411 |
} |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
412 |
if (msg == MAGIC_CHAR MAGIC_CHAR "ASE=") |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
413 |
{ |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
414 |
state = nsGaming; |
36 | 415 |
TimerFlusher = new QTimer(); |
416 |
connect(TimerFlusher, SIGNAL(timeout()), this, SLOT(FlushNetBuf())); |
|
417 |
TimerFlusher->start(2000); |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
418 |
} |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
419 |
if (msg.startsWith(MAGIC_CHAR"T"MAGIC_CHAR)) |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
420 |
{ |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
421 |
NetTeamAdded(msg.mid(3)); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
422 |
} |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
423 |
} |
36 | 424 |
if ((state < nsStarting) || (state > nsGaming)) |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
425 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
426 |
return; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
427 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
428 |
if (msg.startsWith(MAGIC_CHAR MAGIC_CHAR)) // HWP message |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
429 |
{ |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
430 |
QByteArray em = QByteArray::fromBase64(msg.mid(2).toLocal8Bit()); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
431 |
emit FromNet(em); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
432 |
} else // smth other |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
433 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
434 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
435 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
436 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
437 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
438 |
void HWNet::NetTeamAdded(const QString & msg) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
439 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
440 |
QStringList list = msg.split(MAGIC_CHAR, QString::SkipEmptyParts); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
441 |
if (list.size() != 10) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
442 |
return ; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
443 |
SENDCFGSTRLOC("eaddteam"); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
444 |
if (list[0] == mynick) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
445 |
{ |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
446 |
emit LocalCFG(list[1]); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
447 |
} else |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
448 |
{ |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
449 |
SENDCFGSTRLOC("erdriven"); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
450 |
SENDCFGSTRLOC(QString("ename team %1").arg(list[1])); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
451 |
for (int i = 0; i < 8; i++) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
452 |
{ |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
453 |
SENDCFGSTRLOC(QString("ename hh%1 ").arg(i) + list[i + 2]); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
454 |
} |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
455 |
} |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
456 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
457 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
458 |
void HWNet::AddTeam(const HWTeam & team) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
459 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
460 |
if (state != nsJoined) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
461 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
462 |
return ; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
463 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
464 |
RawSendNet(QString("PRIVMSG %1 :").arg(opnick) + MAGIC_CHAR "A" MAGIC_CHAR + |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
465 |
team.TeamName + MAGIC_CHAR + team.HHName[0] + MAGIC_CHAR + team.HHName[1] + MAGIC_CHAR + |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
466 |
team.HHName[2] + MAGIC_CHAR + team.HHName[3] + MAGIC_CHAR + team.HHName[4] + MAGIC_CHAR + |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
467 |
team.HHName[5] + MAGIC_CHAR + team.HHName[6] + MAGIC_CHAR + team.HHName[7]); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
468 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
469 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
470 |
void HWNet::StartGame() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
471 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
472 |
if ((opnick != mynick) || (state != nsJoined)) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
473 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
474 |
return ; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
475 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
476 |
QStringList players; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
477 |
for (int i = 0; i < teamsCount; i++) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
478 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
479 |
if (!players.contains(teams[i].nick)) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
480 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
481 |
players.append(teams[i].nick); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
482 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
483 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
484 |
playerscnt = players.size(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
485 |
configasks = 0; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
486 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
487 |
QString seed; |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
488 |
seedgen.GenRNDStr(seed, 10); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
489 |
QString msg = QString(MAGIC_CHAR"Start!"MAGIC_CHAR"%1").arg(seed); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
490 |
RawSendNet(QString("PRIVMSG %1 :%2").arg(channel, msg)); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
491 |
hwp_chanmsg(mynick, msg); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
492 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
493 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
494 |
void HWNet::RunGame(const QString & seed) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
495 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
496 |
HWGame * game = new HWGame(gameResolution, gameFullscreen); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
497 |
connect(game, SIGNAL(SendNet(const QByteArray &)), this, SLOT(SendNet(const QByteArray &))); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
498 |
connect(this, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
499 |
connect(this, SIGNAL(LocalCFG(const QString &)), game, SLOT(LocalCFG(const QString &))); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
500 |
game->StartNet(seed); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
29
diff
changeset
|
501 |
} |