author | unc0rr |
Tue, 26 Jul 2011 17:27:14 +0400 | |
changeset 5419 | 2fed5e26ff7d |
parent 5289 | 9d18b61bd3eb |
child 5772 | c09c50efe8b5 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2005-2011 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <QString> |
|
20 |
#include <QByteArray> |
|
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
21 |
#include <QUuid> |
5201 | 22 |
#include <QColor> |
5289
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5213
diff
changeset
|
23 |
#include <QStringListModel> |
184 | 24 |
|
25 |
#include "game.h" |
|
26 |
#include "hwconsts.h" |
|
27 |
#include "gameuiconfig.h" |
|
28 |
#include "gamecfgwidget.h" |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
29 |
#include "teamselect.h" |
210 | 30 |
#include "KB.h" |
239 | 31 |
#include "proto.h" |
184 | 32 |
|
706 | 33 |
#include <QTextStream> |
34 |
||
3760 | 35 |
QString training, campaign; // TODO: Cleaner solution? |
2468
0b62498c201a
openal fix, training map selection and rcplane adjustments from Smaxx (untested, but look reasonable). Bunch of new graphics from Tiy, new translation for pt-pt from inu_
nemo
parents:
2443
diff
changeset
|
36 |
|
681 | 37 |
HWGame::HWGame(GameUIConfig * config, GameCFGWidget * gamecfg, QString ammo, TeamSelWidget* pTeamSelWidget) : |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
38 |
TCPBase(true), |
1904 | 39 |
ammostr(ammo), |
40 |
m_pTeamSelWidget(pTeamSelWidget) |
|
184 | 41 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
42 |
this->config = config; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
43 |
this->gamecfg = gamecfg; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
44 |
TeamCount = 0; |
4430
cacda05a053e
Try suppressing those annoying "incorrect state" messages without actually breaking net play. Alter prior checks on GoBack. NEEDS TESTING.
nemo
parents:
4428
diff
changeset
|
45 |
netSuspend = false; |
184 | 46 |
} |
47 |
||
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
48 |
HWGame::~HWGame() |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
49 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
50 |
SetGameState(gsDestroyed); |
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
51 |
} |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
52 |
|
184 | 53 |
void HWGame::onClientDisconnect() |
54 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
55 |
switch (gameType) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
56 |
case gtDemo: break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
57 |
case gtNet: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
58 |
emit HaveRecord(true, demo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
59 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
60 |
default: |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
61 |
if (gameState == gsInterrupted || gameState == gsHalted) emit HaveRecord(false, demo); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
62 |
else if (gameState == gsFinished) emit HaveRecord(true, demo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
63 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
64 |
SetGameState(gsStopped); |
184 | 65 |
} |
66 |
||
253 | 67 |
void HWGame::commonConfig() |
184 | 68 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
69 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
70 |
QString gt; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
71 |
switch (gameType) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
72 |
case gtDemo: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
73 |
gt = "TD"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
74 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
75 |
case gtNet: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
76 |
gt = "TN"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
77 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
78 |
default: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
79 |
gt = "TL"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
80 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
81 |
HWProto::addStringToBuffer(buf, gt); |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
82 |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4430
diff
changeset
|
83 |
buf += gamecfg->getFullConfig(); |
341 | 84 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
85 |
if (m_pTeamSelWidget) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
86 |
{ |
5140
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
4976
diff
changeset
|
87 |
QListIterator<HWTeam> it(m_pTeamSelWidget->getPlayingTeams()); |
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
4976
diff
changeset
|
88 |
while(it.hasNext()) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
89 |
{ |
3346 | 90 |
HWProto::addStringToBuffer(buf, QString("eammloadt %1").arg(ammostr.mid(0, cAmmoNumber))); |
91 |
HWProto::addStringToBuffer(buf, QString("eammprob %1").arg(ammostr.mid(cAmmoNumber, cAmmoNumber))); |
|
92 |
HWProto::addStringToBuffer(buf, QString("eammdelay %1").arg(ammostr.mid(2 * cAmmoNumber, cAmmoNumber))); |
|
93 |
HWProto::addStringToBuffer(buf, QString("eammreinf %1").arg(ammostr.mid(3 * cAmmoNumber, cAmmoNumber))); |
|
4406
beb4de0af990
Increase teams to 8 to match the 8 colours, fix issue #108, reenable rope length modifier
nemo
parents:
3943
diff
changeset
|
94 |
if(!gamecfg->schemeData(21).toBool()) HWProto::addStringToBuffer(buf, QString("eammstore")); |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3919
diff
changeset
|
95 |
HWProto::addStringListToBuffer(buf, |
5140
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
4976
diff
changeset
|
96 |
it.next().TeamGameConfig(gamecfg->getInitHealth())); |
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
4976
diff
changeset
|
97 |
; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
98 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
99 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
100 |
RawSendIPC(buf); |
253 | 101 |
} |
102 |
||
103 |
void HWGame::SendConfig() |
|
104 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
105 |
commonConfig(); |
184 | 106 |
} |
107 |
||
108 |
void HWGame::SendQuickConfig() |
|
109 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
110 |
QByteArray teamscfg; |
239 | 111 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
112 |
HWProto::addStringToBuffer(teamscfg, "TL"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
113 |
HWProto::addStringToBuffer(teamscfg, QString("etheme %1") |
5289
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5213
diff
changeset
|
114 |
.arg((themesModel->rowCount() > 0) ? themesModel->index(rand() % themesModel->rowCount()).data().toString() : "steel")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
115 |
HWProto::addStringToBuffer(teamscfg, "eseed " + QUuid::createUuid().toString()); |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
116 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
117 |
HWNamegen namegen; |
239 | 118 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
119 |
HWTeam * team1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
120 |
team1 = new HWTeam; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
121 |
team1->difficulty = 0; |
5201 | 122 |
team1->teamColor = QColor(colors[0]); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
123 |
team1->numHedgehogs = 4; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
124 |
namegen.TeamRandomNames(team1,TRUE); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
125 |
HWProto::addStringListToBuffer(teamscfg, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
126 |
team1->TeamGameConfig(100)); |
1907 | 127 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
128 |
HWTeam * team2; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
129 |
team2 = new HWTeam; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
130 |
team2->difficulty = 4; |
5201 | 131 |
team2->teamColor = QColor(colors[1]); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
132 |
team2->numHedgehogs = 4; |
3160 | 133 |
do |
134 |
namegen.TeamRandomNames(team2,TRUE); |
|
3344 | 135 |
while(!team2->TeamName.compare(team1->TeamName) || !team2->Hedgehogs[0].Hat.compare(team1->Hedgehogs[0].Hat)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
136 |
HWProto::addStringListToBuffer(teamscfg, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
137 |
team2->TeamGameConfig(100)); |
607 | 138 |
|
3346 | 139 |
HWProto::addStringToBuffer(teamscfg, QString("eammloadt %1").arg(cDefaultAmmoStore->mid(0, cAmmoNumber))); |
140 |
HWProto::addStringToBuffer(teamscfg, QString("eammprob %1").arg(cDefaultAmmoStore->mid(cAmmoNumber, cAmmoNumber))); |
|
141 |
HWProto::addStringToBuffer(teamscfg, QString("eammdelay %1").arg(cDefaultAmmoStore->mid(2 * cAmmoNumber, cAmmoNumber))); |
|
142 |
HWProto::addStringToBuffer(teamscfg, QString("eammreinf %1").arg(cDefaultAmmoStore->mid(3 * cAmmoNumber, cAmmoNumber))); |
|
143 |
HWProto::addStringToBuffer(teamscfg, QString("eammstore")); |
|
144 |
HWProto::addStringToBuffer(teamscfg, QString("eammstore")); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
145 |
RawSendIPC(teamscfg); |
341 | 146 |
} |
147 |
||
588 | 148 |
void HWGame::SendTrainingConfig() |
149 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
150 |
QByteArray traincfg; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
151 |
HWProto::addStringToBuffer(traincfg, "TL"); |
588 | 152 |
|
3760 | 153 |
HWProto::addStringToBuffer(traincfg, "escript " + training); |
593 | 154 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
155 |
RawSendIPC(traincfg); |
588 | 156 |
} |
157 |
||
3760 | 158 |
void HWGame::SendCampaignConfig() |
159 |
{ |
|
160 |
QByteArray campaigncfg; |
|
161 |
HWProto::addStringToBuffer(campaigncfg, "TL"); |
|
162 |
||
163 |
HWProto::addStringToBuffer(campaigncfg, "escript " + campaign); |
|
164 |
||
165 |
RawSendIPC(campaigncfg); |
|
166 |
} |
|
167 |
||
341 | 168 |
void HWGame::SendNetConfig() |
169 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
170 |
commonConfig(); |
184 | 171 |
} |
172 |
||
173 |
void HWGame::ParseMessage(const QByteArray & msg) |
|
174 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
175 |
switch(msg.at(1)) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
176 |
case '?': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
177 |
SendIPC("!"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
178 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
179 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
180 |
case 'C': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
181 |
switch (gameType) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
182 |
case gtLocal: { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
183 |
SendConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
184 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
185 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
186 |
case gtQLocal: { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
187 |
SendQuickConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
188 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
189 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
190 |
case gtDemo: break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
191 |
case gtNet: { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
192 |
SendNetConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
193 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
194 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
195 |
case gtTraining: { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
196 |
SendTrainingConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
197 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
198 |
} |
3760 | 199 |
case gtCampaign: { |
200 |
SendCampaignConfig(); |
|
201 |
break; |
|
202 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
203 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
204 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
205 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
206 |
case 'E': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
207 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
208 |
emit ErrorMessage(QString("Last two engine messages:\n") + QString().append(msg.mid(2)).left(size - 4)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
209 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
210 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
211 |
case 'K': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
212 |
ulong kb = msg.mid(2).toULong(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
213 |
if (kb==1) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
214 |
qWarning("%s", KBMessages[kb - 1].toLocal8Bit().constData()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
215 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
216 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
217 |
if (kb && kb <= KBmsgsCount) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
218 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
219 |
emit ErrorMessage(KBMessages[kb - 1]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
220 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
221 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
222 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
223 |
case 'i': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
224 |
emit GameStats(msg.at(2), QString::fromUtf8(msg.mid(3))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
225 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
226 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
227 |
case 'Q': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
228 |
SetGameState(gsInterrupted); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
229 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
230 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
231 |
case 'q': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
232 |
SetGameState(gsFinished); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
233 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
234 |
} |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
235 |
case 'H': { |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
236 |
SetGameState(gsHalted); |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
237 |
break; |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
238 |
} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
239 |
case 's': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
240 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
241 |
QString msgbody = QString::fromUtf8(msg.mid(2).left(size - 4)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
242 |
emit SendChat(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
243 |
// FIXME: /me command doesn't work here |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
244 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
245 |
HWProto::addStringToBuffer(buf, "s" + HWProto::formatChatMsg(config->netNick(), msgbody) + "\x20\x20"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
246 |
demo.append(buf); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
247 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
248 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
249 |
case 'b': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
250 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
251 |
QString msgbody = QString::fromUtf8(msg.mid(2).left(size - 4)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
252 |
emit SendTeamMessage(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
253 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
254 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
255 |
default: { |
4430
cacda05a053e
Try suppressing those annoying "incorrect state" messages without actually breaking net play. Alter prior checks on GoBack. NEEDS TESTING.
nemo
parents:
4428
diff
changeset
|
256 |
if (gameType == gtNet && !netSuspend) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
257 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
258 |
emit SendNet(msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
259 |
} |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
260 |
if (msg.at(1) != 's') |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
261 |
demo.append(msg); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
262 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
263 |
} |
184 | 264 |
} |
265 |
||
266 |
void HWGame::FromNet(const QByteArray & msg) |
|
267 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
268 |
RawSendIPC(msg); |
184 | 269 |
} |
270 |
||
1356 | 271 |
void HWGame::FromNetChat(const QString & msg) |
272 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
273 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
274 |
HWProto::addStringToBuffer(buf, 's' + msg + "\x20\x20"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
275 |
RawSendIPC(buf); |
1356 | 276 |
} |
277 |
||
184 | 278 |
void HWGame::onClientRead() |
279 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
280 |
quint8 msglen; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
281 |
quint32 bufsize; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
282 |
while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) && |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
283 |
((msglen = readbuffer.data()[0]) < bufsize)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
284 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
285 |
QByteArray msg = readbuffer.left(msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
286 |
readbuffer.remove(0, msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
287 |
ParseMessage(msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
288 |
} |
184 | 289 |
} |
290 |
||
5213
a86768368309
make the associate button use the user's settings for loading demos/saves
nemo
parents:
5201
diff
changeset
|
291 |
QStringList HWGame::getArguments() |
184 | 292 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
293 |
QStringList arguments; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
294 |
QRect resolution = config->vid_Resolution(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
295 |
arguments << cfgdir->absolutePath(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
296 |
arguments << QString::number(resolution.width()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
297 |
arguments << QString::number(resolution.height()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
298 |
arguments << QString::number(config->bitDepth()); // bpp |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
299 |
arguments << QString("%1").arg(ipc_port); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
300 |
arguments << (config->vid_Fullscreen() ? "1" : "0"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
301 |
arguments << (config->isSoundEnabled() ? "1" : "0"); |
3709 | 302 |
arguments << (config->isMusicEnabled() ? "1" : "0"); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
303 |
arguments << QString::number(config->volume()); // sound volume |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
304 |
arguments << QString::number(config->timerInterval()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
305 |
arguments << datadir->absolutePath(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
306 |
arguments << (config->isShowFPSEnabled() ? "1" : "0"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
307 |
arguments << (config->isAltDamageEnabled() ? "1" : "0"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
308 |
arguments << config->netNick().toUtf8().toBase64(); |
3708
64e059b6f9c5
applied from experimental3D, use a slider to set up quality
koda
parents:
3695
diff
changeset
|
309 |
arguments << QString::number(config->translateQuality()); |
3696 | 310 |
arguments << QString::number(config->stereoMode()); |
3709 | 311 |
arguments << tr("en.txt"); |
312 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
313 |
return arguments; |
184 | 314 |
} |
315 |
||
341 | 316 |
void HWGame::AddTeam(const QString & teamname) |
184 | 317 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
318 |
if (TeamCount == 5) return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
319 |
teams[TeamCount] = teamname; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
320 |
TeamCount++; |
184 | 321 |
} |
322 |
||
323 |
void HWGame::PlayDemo(const QString & demofilename) |
|
324 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
325 |
gameType = gtDemo; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
326 |
QFile demofile(demofilename); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
327 |
if (!demofile.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
328 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
329 |
emit ErrorMessage(tr("Cannot open demofile %1").arg(demofilename)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
330 |
return ; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
331 |
} |
184 | 332 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
333 |
// read demo |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
334 |
toSendBuf = demofile.readAll(); |
184 | 335 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
336 |
// run engine |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
337 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
338 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
339 |
SetGameState(gsStarted); |
184 | 340 |
} |
341 |
||
342 |
void HWGame::StartNet() |
|
343 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
344 |
gameType = gtNet; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
345 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
346 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
347 |
SetGameState(gsStarted); |
184 | 348 |
} |
349 |
||
350 |
void HWGame::StartLocal() |
|
351 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
352 |
gameType = gtLocal; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
353 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
354 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
355 |
SetGameState(gsStarted); |
184 | 356 |
} |
357 |
||
358 |
void HWGame::StartQuick() |
|
359 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
360 |
gameType = gtQLocal; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
361 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
362 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
363 |
SetGameState(gsStarted); |
184 | 364 |
} |
533 | 365 |
|
2468
0b62498c201a
openal fix, training map selection and rcplane adjustments from Smaxx (untested, but look reasonable). Bunch of new graphics from Tiy, new translation for pt-pt from inu_
nemo
parents:
2443
diff
changeset
|
366 |
void HWGame::StartTraining(const QString & file) |
587 | 367 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
368 |
gameType = gtTraining; |
3919 | 369 |
training = "Missions/Training/" + file + ".lua"; |
3760 | 370 |
demo.clear(); |
371 |
Start(); |
|
372 |
SetGameState(gsStarted); |
|
373 |
} |
|
374 |
||
375 |
void HWGame::StartCampaign(const QString & file) |
|
376 |
{ |
|
377 |
gameType = gtCampaign; |
|
3919 | 378 |
campaign = "Missions/Campaign/" + file + ".lua"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
379 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
380 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
381 |
SetGameState(gsStarted); |
587 | 382 |
} |
383 |
||
533 | 384 |
void HWGame::SetGameState(GameState state) |
385 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
386 |
gameState = state; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
387 |
emit GameStateChanged(state); |
533 | 388 |
} |
4428
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
389 |
|
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
390 |
void HWGame::KillAllTeams() |
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
391 |
{ |
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
392 |
if (m_pTeamSelWidget) |
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
393 |
{ |
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
394 |
QByteArray buf; |
5140
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
4976
diff
changeset
|
395 |
QListIterator<HWTeam> it(m_pTeamSelWidget->getPlayingTeams()); |
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
4976
diff
changeset
|
396 |
while(it.hasNext()) |
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
4976
diff
changeset
|
397 |
HWProto::addStringToBuffer(buf, QString("eteamgone %1").arg(it.next().TeamName)); |
4428
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
398 |
RawSendIPC(buf); |
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
399 |
} |
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4406
diff
changeset
|
400 |
} |