author | nemo |
Mon, 14 Nov 2011 18:28:05 -0500 | |
changeset 6381 | 5f3412f6809e |
parent 6217 | ef53ba841791 |
child 6616 | f77bb02b669f |
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; |
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
|
44 |
netSuspend = false; |
184 | 45 |
} |
46 |
||
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
47 |
HWGame::~HWGame() |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
48 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
49 |
SetGameState(gsDestroyed); |
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
50 |
} |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
51 |
|
184 | 52 |
void HWGame::onClientDisconnect() |
53 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
54 |
switch (gameType) { |
5865 | 55 |
case gtSave: |
56 |
if (gameState == gsInterrupted || gameState == gsHalted) |
|
57 |
emit HaveRecord(false, demo); |
|
58 |
else if (gameState == gsFinished) |
|
59 |
emit HaveRecord(true, demo); |
|
60 |
break; |
|
61 |
case gtDemo: |
|
5781
1fa54e5ea479
Don't refuse to create save file when a game loaded from save interrupts
unc0rr
parents:
5772
diff
changeset
|
62 |
break; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
63 |
case gtNet: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
64 |
emit HaveRecord(true, demo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
65 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
66 |
default: |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
67 |
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
|
68 |
else if (gameState == gsFinished) emit HaveRecord(true, demo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
69 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
70 |
SetGameState(gsStopped); |
184 | 71 |
} |
72 |
||
253 | 73 |
void HWGame::commonConfig() |
184 | 74 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
75 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
76 |
QString gt; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
77 |
switch (gameType) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
78 |
case gtDemo: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
79 |
gt = "TD"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
80 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
81 |
case gtNet: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
82 |
gt = "TN"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
83 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
84 |
default: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
85 |
gt = "TL"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
86 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
87 |
HWProto::addStringToBuffer(buf, gt); |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
88 |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4430
diff
changeset
|
89 |
buf += gamecfg->getFullConfig(); |
341 | 90 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
91 |
if (m_pTeamSelWidget) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
92 |
{ |
5772
c09c50efe8b5
Replace iterators with simple declarative foreach (not tested if it works)
unc0rr
parents:
5289
diff
changeset
|
93 |
foreach(HWTeam team, m_pTeamSelWidget->getPlayingTeams()) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
94 |
{ |
3346 | 95 |
HWProto::addStringToBuffer(buf, QString("eammloadt %1").arg(ammostr.mid(0, cAmmoNumber))); |
96 |
HWProto::addStringToBuffer(buf, QString("eammprob %1").arg(ammostr.mid(cAmmoNumber, cAmmoNumber))); |
|
97 |
HWProto::addStringToBuffer(buf, QString("eammdelay %1").arg(ammostr.mid(2 * cAmmoNumber, cAmmoNumber))); |
|
98 |
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
|
99 |
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
|
100 |
HWProto::addStringListToBuffer(buf, |
6015
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
101 |
team.teamGameConfig(gamecfg->getInitHealth())); |
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
|
102 |
; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
103 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
104 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
105 |
RawSendIPC(buf); |
253 | 106 |
} |
107 |
||
108 |
void HWGame::SendConfig() |
|
109 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
110 |
commonConfig(); |
184 | 111 |
} |
112 |
||
113 |
void HWGame::SendQuickConfig() |
|
114 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
115 |
QByteArray teamscfg; |
239 | 116 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
117 |
HWProto::addStringToBuffer(teamscfg, "TL"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
118 |
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
|
119 |
.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
|
120 |
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
|
121 |
|
6015
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
122 |
HWTeam team1; |
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
123 |
team1.setDifficulty(0); |
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
124 |
team1.setColor(QColor(colors[0])); |
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
125 |
team1.setNumHedgehogs(4); |
6024 | 126 |
HWNamegen::teamRandomNames(team1,true); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
127 |
HWProto::addStringListToBuffer(teamscfg, |
6015
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
128 |
team1.teamGameConfig(100)); |
1907 | 129 |
|
6015
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
130 |
HWTeam team2; |
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
131 |
team2.setDifficulty(4); |
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
132 |
team2.setColor(QColor(colors[1])); |
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
133 |
team2.setNumHedgehogs(4); |
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
134 |
do |
6024 | 135 |
HWNamegen::teamRandomNames(team2,true); |
6015
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
136 |
while(!team2.name().compare(team1.name()) || !team2.hedgehog(0).Hat.compare(team1.hedgehog(0).Hat)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
137 |
HWProto::addStringListToBuffer(teamscfg, |
6015
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5865
diff
changeset
|
138 |
team2.teamGameConfig(100)); |
607 | 139 |
|
3346 | 140 |
HWProto::addStringToBuffer(teamscfg, QString("eammloadt %1").arg(cDefaultAmmoStore->mid(0, cAmmoNumber))); |
141 |
HWProto::addStringToBuffer(teamscfg, QString("eammprob %1").arg(cDefaultAmmoStore->mid(cAmmoNumber, cAmmoNumber))); |
|
142 |
HWProto::addStringToBuffer(teamscfg, QString("eammdelay %1").arg(cDefaultAmmoStore->mid(2 * cAmmoNumber, cAmmoNumber))); |
|
143 |
HWProto::addStringToBuffer(teamscfg, QString("eammreinf %1").arg(cDefaultAmmoStore->mid(3 * cAmmoNumber, cAmmoNumber))); |
|
144 |
HWProto::addStringToBuffer(teamscfg, QString("eammstore")); |
|
145 |
HWProto::addStringToBuffer(teamscfg, QString("eammstore")); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
146 |
RawSendIPC(teamscfg); |
341 | 147 |
} |
148 |
||
588 | 149 |
void HWGame::SendTrainingConfig() |
150 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
151 |
QByteArray traincfg; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
152 |
HWProto::addStringToBuffer(traincfg, "TL"); |
588 | 153 |
|
3760 | 154 |
HWProto::addStringToBuffer(traincfg, "escript " + training); |
593 | 155 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
156 |
RawSendIPC(traincfg); |
588 | 157 |
} |
158 |
||
3760 | 159 |
void HWGame::SendCampaignConfig() |
160 |
{ |
|
161 |
QByteArray campaigncfg; |
|
162 |
HWProto::addStringToBuffer(campaigncfg, "TL"); |
|
163 |
||
164 |
HWProto::addStringToBuffer(campaigncfg, "escript " + campaign); |
|
165 |
||
166 |
RawSendIPC(campaigncfg); |
|
167 |
} |
|
168 |
||
341 | 169 |
void HWGame::SendNetConfig() |
170 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
171 |
commonConfig(); |
184 | 172 |
} |
173 |
||
174 |
void HWGame::ParseMessage(const QByteArray & msg) |
|
175 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
176 |
switch(msg.at(1)) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
177 |
case '?': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
178 |
SendIPC("!"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
179 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
180 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
181 |
case 'C': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
182 |
switch (gameType) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
183 |
case gtLocal: { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
184 |
SendConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
185 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
186 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
187 |
case gtQLocal: { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
188 |
SendQuickConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
189 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
190 |
} |
5865 | 191 |
case gtSave: |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
192 |
case gtDemo: break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
193 |
case gtNet: { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
194 |
SendNetConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
195 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
196 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
197 |
case gtTraining: { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
198 |
SendTrainingConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
199 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
200 |
} |
3760 | 201 |
case gtCampaign: { |
202 |
SendCampaignConfig(); |
|
203 |
break; |
|
204 |
} |
|
2948
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 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
207 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
208 |
case 'E': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
209 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
210 |
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
|
211 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
212 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
213 |
case 'K': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
214 |
ulong kb = msg.mid(2).toULong(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
215 |
if (kb==1) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
216 |
qWarning("%s", KBMessages[kb - 1].toLocal8Bit().constData()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
217 |
return; |
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 |
if (kb && kb <= KBmsgsCount) |
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 |
emit ErrorMessage(KBMessages[kb - 1]); |
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 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
224 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
225 |
case 'i': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
226 |
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
|
227 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
228 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
229 |
case 'Q': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
230 |
SetGameState(gsInterrupted); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
231 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
232 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
233 |
case 'q': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
234 |
SetGameState(gsFinished); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
235 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
236 |
} |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
237 |
case 'H': { |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
238 |
SetGameState(gsHalted); |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
239 |
break; |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
240 |
} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
241 |
case 's': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
242 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
243 |
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
|
244 |
emit SendChat(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
245 |
// FIXME: /me command doesn't work here |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
246 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
247 |
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
|
248 |
demo.append(buf); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
249 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
250 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
251 |
case 'b': { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
252 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
253 |
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
|
254 |
emit SendTeamMessage(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
255 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
256 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
257 |
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
|
258 |
if (gameType == gtNet && !netSuspend) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
259 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
260 |
emit SendNet(msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
261 |
} |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
262 |
if (msg.at(1) != 's') |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
263 |
demo.append(msg); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
264 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
265 |
} |
184 | 266 |
} |
267 |
||
268 |
void HWGame::FromNet(const QByteArray & msg) |
|
269 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
270 |
RawSendIPC(msg); |
184 | 271 |
} |
272 |
||
1356 | 273 |
void HWGame::FromNetChat(const QString & msg) |
274 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
275 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
276 |
HWProto::addStringToBuffer(buf, 's' + msg + "\x20\x20"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
277 |
RawSendIPC(buf); |
1356 | 278 |
} |
279 |
||
184 | 280 |
void HWGame::onClientRead() |
281 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
282 |
quint8 msglen; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
283 |
quint32 bufsize; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
284 |
while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) && |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
285 |
((msglen = readbuffer.data()[0]) < bufsize)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
286 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
287 |
QByteArray msg = readbuffer.left(msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
288 |
readbuffer.remove(0, msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
289 |
ParseMessage(msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
290 |
} |
184 | 291 |
} |
292 |
||
5213
a86768368309
make the associate button use the user's settings for loading demos/saves
nemo
parents:
5201
diff
changeset
|
293 |
QStringList HWGame::getArguments() |
184 | 294 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
295 |
QStringList arguments; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
296 |
QRect resolution = config->vid_Resolution(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
297 |
arguments << cfgdir->absolutePath(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
298 |
arguments << QString::number(resolution.width()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
299 |
arguments << QString::number(resolution.height()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
300 |
arguments << QString::number(config->bitDepth()); // bpp |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
301 |
arguments << QString("%1").arg(ipc_port); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
302 |
arguments << (config->vid_Fullscreen() ? "1" : "0"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
303 |
arguments << (config->isSoundEnabled() ? "1" : "0"); |
3709 | 304 |
arguments << (config->isMusicEnabled() ? "1" : "0"); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
305 |
arguments << QString::number(config->volume()); // sound volume |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
306 |
arguments << QString::number(config->timerInterval()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
307 |
arguments << datadir->absolutePath(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
308 |
arguments << (config->isShowFPSEnabled() ? "1" : "0"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
309 |
arguments << (config->isAltDamageEnabled() ? "1" : "0"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
310 |
arguments << config->netNick().toUtf8().toBase64(); |
3708
64e059b6f9c5
applied from experimental3D, use a slider to set up quality
koda
parents:
3695
diff
changeset
|
311 |
arguments << QString::number(config->translateQuality()); |
3696 | 312 |
arguments << QString::number(config->stereoMode()); |
3709 | 313 |
arguments << tr("en.txt"); |
314 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
315 |
return arguments; |
184 | 316 |
} |
317 |
||
5865 | 318 |
void HWGame::PlayDemo(const QString & demofilename, bool isSave) |
184 | 319 |
{ |
5865 | 320 |
gameType = isSave ? gtSave : gtDemo; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
321 |
QFile demofile(demofilename); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
322 |
if (!demofile.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
323 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
324 |
emit ErrorMessage(tr("Cannot open demofile %1").arg(demofilename)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
325 |
return ; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
326 |
} |
184 | 327 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
328 |
// read demo |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
329 |
toSendBuf = demofile.readAll(); |
184 | 330 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
331 |
// run engine |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
332 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
333 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
334 |
SetGameState(gsStarted); |
184 | 335 |
} |
336 |
||
337 |
void HWGame::StartNet() |
|
338 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
339 |
gameType = gtNet; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
340 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
341 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
342 |
SetGameState(gsStarted); |
184 | 343 |
} |
344 |
||
345 |
void HWGame::StartLocal() |
|
346 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
347 |
gameType = gtLocal; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
348 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
349 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
350 |
SetGameState(gsStarted); |
184 | 351 |
} |
352 |
||
353 |
void HWGame::StartQuick() |
|
354 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
355 |
gameType = gtQLocal; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
356 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
357 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
358 |
SetGameState(gsStarted); |
184 | 359 |
} |
533 | 360 |
|
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
|
361 |
void HWGame::StartTraining(const QString & file) |
587 | 362 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
363 |
gameType = gtTraining; |
3919 | 364 |
training = "Missions/Training/" + file + ".lua"; |
3760 | 365 |
demo.clear(); |
366 |
Start(); |
|
367 |
SetGameState(gsStarted); |
|
368 |
} |
|
369 |
||
370 |
void HWGame::StartCampaign(const QString & file) |
|
371 |
{ |
|
372 |
gameType = gtCampaign; |
|
3919 | 373 |
campaign = "Missions/Campaign/" + file + ".lua"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
374 |
demo.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
375 |
Start(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
376 |
SetGameState(gsStarted); |
587 | 377 |
} |
378 |
||
533 | 379 |
void HWGame::SetGameState(GameState state) |
380 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
381 |
gameState = state; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
382 |
emit GameStateChanged(state); |
533 | 383 |
} |
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
|
384 |
|
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
385 |
void HWGame::abort() |
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
|
386 |
{ |
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
387 |
QByteArray buf; |
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
388 |
HWProto::addStringToBuffer(buf, QString("efinish")); |
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
389 |
RawSendIPC(buf); |
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
|
390 |
} |