author | unc0rr |
Thu, 29 Jan 2015 23:36:58 +0300 | |
branch | qmlfrontend |
changeset 10754 | 8dd1cf1be5a2 |
parent 10571 | c90a1814a91b |
child 10850 | c76ea22ea249 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
9998 | 3 |
* Copyright (c) 2004-2014 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10015
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
184 | 17 |
*/ |
18 |
||
19 |
#include <QString> |
|
9249 | 20 |
#include <QCheckBox> |
184 | 21 |
#include <QByteArray> |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
22 |
#include <QUuid> |
5201 | 23 |
#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
|
24 |
#include <QStringListModel> |
7629 | 25 |
#include <QTextStream> |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
26 |
#include <utility> |
184 | 27 |
|
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
28 |
#include "hwform.h" |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
29 |
#include "ui/page/pageoptions.h" |
184 | 30 |
#include "game.h" |
31 |
#include "hwconsts.h" |
|
32 |
#include "gameuiconfig.h" |
|
33 |
#include "gamecfgwidget.h" |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
34 |
#include "teamselect.h" |
239 | 35 |
#include "proto.h" |
8346 | 36 |
#include "binds.h" |
7629 | 37 |
#include "campaign.h" |
184 | 38 |
|
706 | 39 |
#include <QTextStream> |
7629 | 40 |
#include "ThemeModel.h" |
706 | 41 |
|
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
42 |
// last game info |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
43 |
QList<QVariant> lastGameStartArgs = QList<QVariant>(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
44 |
GameType lastGameType = gtNone; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
45 |
GameCFGWidget * lastGameCfg = NULL; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
46 |
QString lastGameAmmo = NULL; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
47 |
TeamSelWidget * lastGameTeamSel = NULL; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
48 |
|
7629 | 49 |
QString training, campaign, campaignScript, campaignTeam; // 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
|
50 |
|
681 | 51 |
HWGame::HWGame(GameUIConfig * config, GameCFGWidget * gamecfg, QString ammo, TeamSelWidget* pTeamSelWidget) : |
8070
66bc20d089fc
Okay, remove previous request only if it has same parent
unc0rr
parents:
8069
diff
changeset
|
52 |
TCPBase(true, 0), |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
53 |
ammostr(ammo), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
54 |
m_pTeamSelWidget(pTeamSelWidget) |
184 | 55 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
56 |
this->config = config; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
57 |
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
|
58 |
netSuspend = false; |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
59 |
|
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
60 |
lastGameCfg = gamecfg; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
61 |
lastGameAmmo = ammo; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
62 |
lastGameTeamSel = pTeamSelWidget; |
10248 | 63 |
|
64 |
gameState = gsNotStarted; |
|
65 |
gameType = gtNone; |
|
184 | 66 |
} |
67 |
||
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
68 |
HWGame::~HWGame() |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
69 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
70 |
SetGameState(gsDestroyed); |
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
71 |
} |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
72 |
|
184 | 73 |
void HWGame::onClientDisconnect() |
74 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
75 |
switch (gameType) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
76 |
{ |
5865 | 77 |
case gtDemo: |
8434 | 78 |
// for video recording we need demo anyway |
7180 | 79 |
emit HaveRecord(rtNeither, demo); |
5781
1fa54e5ea479
Don't refuse to create save file when a game loaded from save interrupts
unc0rr
parents:
5772
diff
changeset
|
80 |
break; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
81 |
case gtNet: |
7180 | 82 |
emit HaveRecord(rtDemo, demo); |
2948
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: |
7180 | 85 |
if (gameState == gsInterrupted || gameState == gsHalted) |
86 |
emit HaveRecord(rtSave, demo); |
|
87 |
else if (gameState == gsFinished) |
|
88 |
emit HaveRecord(rtDemo, demo); |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7278
diff
changeset
|
89 |
else |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7278
diff
changeset
|
90 |
emit HaveRecord(rtNeither, demo); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
91 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
92 |
SetGameState(gsStopped); |
184 | 93 |
} |
94 |
||
253 | 95 |
void HWGame::commonConfig() |
184 | 96 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
97 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
98 |
QString gt; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
99 |
switch (gameType) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
100 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
101 |
case gtDemo: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
102 |
gt = "TD"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
103 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
104 |
case gtNet: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
105 |
gt = "TN"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
106 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
107 |
default: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
108 |
gt = "TL"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
109 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
110 |
HWProto::addStringToBuffer(buf, gt); |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
111 |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4430
diff
changeset
|
112 |
buf += gamecfg->getFullConfig(); |
341 | 113 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
114 |
if (m_pTeamSelWidget) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
115 |
{ |
5772
c09c50efe8b5
Replace iterators with simple declarative foreach (not tested if it works)
unc0rr
parents:
5289
diff
changeset
|
116 |
foreach(HWTeam team, m_pTeamSelWidget->getPlayingTeams()) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
117 |
{ |
3346 | 118 |
HWProto::addStringToBuffer(buf, QString("eammloadt %1").arg(ammostr.mid(0, cAmmoNumber))); |
119 |
HWProto::addStringToBuffer(buf, QString("eammprob %1").arg(ammostr.mid(cAmmoNumber, cAmmoNumber))); |
|
120 |
HWProto::addStringToBuffer(buf, QString("eammdelay %1").arg(ammostr.mid(2 * cAmmoNumber, cAmmoNumber))); |
|
121 |
HWProto::addStringToBuffer(buf, QString("eammreinf %1").arg(ammostr.mid(3 * cAmmoNumber, cAmmoNumber))); |
|
7629 | 122 |
if(gamecfg->schemeData(15).toBool() || !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
|
123 |
HWProto::addStringListToBuffer(buf, |
9466 | 124 |
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
|
125 |
; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
126 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
127 |
} |
8434 | 128 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
129 |
RawSendIPC(buf); |
253 | 130 |
} |
131 |
||
132 |
void HWGame::SendConfig() |
|
133 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
134 |
commonConfig(); |
184 | 135 |
} |
136 |
||
137 |
void HWGame::SendQuickConfig() |
|
138 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
139 |
QByteArray teamscfg; |
6937
7f77fa908a4e
messing with the theme model a bit (gets now auto-updated after DLC download too)
sheepluva
parents:
6700
diff
changeset
|
140 |
ThemeModel * themeModel = DataManager::instance().themeModel(); |
239 | 141 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
142 |
HWProto::addStringToBuffer(teamscfg, "TL"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
143 |
HWProto::addStringToBuffer(teamscfg, QString("etheme %1") |
9124
955a90b88865
fix issue 664 ("Quick game will fail if the randomly chosen theme is a DLC/custom one")
sheepluva
parents:
9080
diff
changeset
|
144 |
.arg((themeModel->rowCount() > 0) ? themeModel->index(rand() % themeModel->rowCount()).data(ThemeModel::ActualNameRole).toString() : "steel")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
145 |
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
|
146 |
|
7713 | 147 |
HWProto::addStringToBuffer(teamscfg, "e$template_filter 2"); |
10571 | 148 |
HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%18+4)); |
7713 | 149 |
|
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
|
150 |
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
|
151 |
team1.setDifficulty(0); |
7130 | 152 |
team1.setColor(0); |
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
|
153 |
team1.setNumHedgehogs(4); |
6024 | 154 |
HWNamegen::teamRandomNames(team1,true); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
155 |
HWProto::addStringListToBuffer(teamscfg, |
9466 | 156 |
team1.teamGameConfig(100)); |
1907 | 157 |
|
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
|
158 |
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
|
159 |
team2.setDifficulty(4); |
7130 | 160 |
team2.setColor(1); |
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
|
161 |
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
|
162 |
do |
6024 | 163 |
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
|
164 |
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
|
165 |
HWProto::addStringListToBuffer(teamscfg, |
9466 | 166 |
team2.teamGameConfig(100)); |
607 | 167 |
|
3346 | 168 |
HWProto::addStringToBuffer(teamscfg, QString("eammloadt %1").arg(cDefaultAmmoStore->mid(0, cAmmoNumber))); |
169 |
HWProto::addStringToBuffer(teamscfg, QString("eammprob %1").arg(cDefaultAmmoStore->mid(cAmmoNumber, cAmmoNumber))); |
|
170 |
HWProto::addStringToBuffer(teamscfg, QString("eammdelay %1").arg(cDefaultAmmoStore->mid(2 * cAmmoNumber, cAmmoNumber))); |
|
171 |
HWProto::addStringToBuffer(teamscfg, QString("eammreinf %1").arg(cDefaultAmmoStore->mid(3 * cAmmoNumber, cAmmoNumber))); |
|
172 |
HWProto::addStringToBuffer(teamscfg, QString("eammstore")); |
|
173 |
HWProto::addStringToBuffer(teamscfg, QString("eammstore")); |
|
8434 | 174 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
175 |
RawSendIPC(teamscfg); |
341 | 176 |
} |
177 |
||
588 | 178 |
void HWGame::SendTrainingConfig() |
179 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
180 |
QByteArray traincfg; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
181 |
HWProto::addStringToBuffer(traincfg, "TL"); |
7090
63d09a846444
Provide training/campaign with a random seed to ignore/use.
nemo
parents:
6952
diff
changeset
|
182 |
HWProto::addStringToBuffer(traincfg, "eseed " + QUuid::createUuid().toString()); |
3760 | 183 |
HWProto::addStringToBuffer(traincfg, "escript " + training); |
593 | 184 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
185 |
RawSendIPC(traincfg); |
588 | 186 |
} |
187 |
||
3760 | 188 |
void HWGame::SendCampaignConfig() |
189 |
{ |
|
190 |
QByteArray campaigncfg; |
|
191 |
HWProto::addStringToBuffer(campaigncfg, "TL"); |
|
7090
63d09a846444
Provide training/campaign with a random seed to ignore/use.
nemo
parents:
6952
diff
changeset
|
192 |
HWProto::addStringToBuffer(campaigncfg, "eseed " + QUuid::createUuid().toString()); |
3760 | 193 |
|
7629 | 194 |
HWProto::addStringToBuffer(campaigncfg, "escript " + campaignScript); |
3760 | 195 |
|
196 |
RawSendIPC(campaigncfg); |
|
197 |
} |
|
198 |
||
341 | 199 |
void HWGame::SendNetConfig() |
200 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
201 |
commonConfig(); |
184 | 202 |
} |
203 |
||
204 |
void HWGame::ParseMessage(const QByteArray & msg) |
|
205 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
206 |
switch(msg.at(1)) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
207 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
208 |
case '?': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
209 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
210 |
SendIPC("!"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
211 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
212 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
213 |
case 'C': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
214 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
215 |
switch (gameType) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
216 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
217 |
case gtLocal: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
218 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
219 |
SendConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
220 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
221 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
222 |
case gtQLocal: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
223 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
224 |
SendQuickConfig(); |
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 |
} |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
227 |
case gtNone: |
5865 | 228 |
case gtSave: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
229 |
case gtDemo: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
230 |
break; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
231 |
case gtNet: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
232 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
233 |
SendNetConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
234 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
235 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
236 |
case gtTraining: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
237 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
238 |
SendTrainingConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
239 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
240 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
241 |
case gtCampaign: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
242 |
{ |
3760 | 243 |
SendCampaignConfig(); |
244 |
break; |
|
245 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
246 |
} |
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 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
249 |
case 'E': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
250 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
251 |
int size = msg.size(); |
10307
e13d3147f15b
do not get stuck on "in game..." page just because of game crash. output a message instead. could still need some tweaking, but a man gotta sleep. and sheep too...
sheepluva
parents:
10248
diff
changeset
|
252 |
emit ErrorMessage( |
10310 | 253 |
tr("A Fatal ERROR occured! - The game engine had to stop.\n\n" |
254 |
"We are very sorry for the inconvenience :(\n\n" |
|
255 |
"If this keeps happening, please click the '%1' button in the main menu!\n\n" |
|
256 |
"Last two engine messages:\n%2") |
|
257 |
.arg("Feedback") |
|
258 |
.arg(QString::fromUtf8(msg.mid(2).left(size - 4)))); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
259 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
260 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
261 |
case 'i': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
262 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
263 |
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
|
264 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
265 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
266 |
case 'Q': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
267 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
268 |
SetGameState(gsInterrupted); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
269 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
270 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
271 |
case 'q': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
272 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
273 |
SetGameState(gsFinished); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
274 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
275 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
276 |
case 'H': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
277 |
{ |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
278 |
SetGameState(gsHalted); |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
279 |
break; |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
280 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
281 |
case 's': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
282 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
283 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
284 |
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
|
285 |
emit SendChat(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
286 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
287 |
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
|
288 |
demo.append(buf); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
289 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
290 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
291 |
case 'b': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
292 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
293 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
294 |
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
|
295 |
emit SendTeamMessage(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
296 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
297 |
} |
7629 | 298 |
case 'V': |
299 |
{ |
|
300 |
if (msg.at(2) == '?') |
|
301 |
sendCampaignVar(msg.right(msg.size() - 3)); |
|
302 |
else if (msg.at(2) == '!') |
|
303 |
writeCampaignVar(msg.right(msg.size() - 3)); |
|
304 |
break; |
|
305 |
} |
|
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
306 |
case 'W': |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
307 |
{ |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
308 |
// fetch new window resolution via IPC and save it in the settings |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
309 |
int size = msg.size(); |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
310 |
QString newResolution = QString().append(msg.mid(2)).left(size - 4); |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
311 |
QStringList wh = newResolution.split('x'); |
8902
a94c074fd483
fix for issue 599: "Change graphics size settings to use qspinbox"? somebody ask unC0Rr if that's what he wanted :p
sheepluva
parents:
8629
diff
changeset
|
312 |
config->Form->ui.pageOptions->windowWidthEdit->setValue(wh[0].toInt()); |
a94c074fd483
fix for issue 599: "Change graphics size settings to use qspinbox"? somebody ask unC0Rr if that's what he wanted :p
sheepluva
parents:
8629
diff
changeset
|
313 |
config->Form->ui.pageOptions->windowHeightEdit->setValue(wh[1].toInt()); |
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
314 |
break; |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
315 |
} |
10392 | 316 |
case '~': |
317 |
{ |
|
318 |
int size = msg.size(); |
|
319 |
QString msgbody = QString::fromUtf8(msg.mid(2).left(size - 4)); |
|
320 |
emit SendConsoleCommand(msgbody); |
|
321 |
break; |
|
322 |
} |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
323 |
default: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
324 |
{ |
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
|
325 |
if (gameType == gtNet && !netSuspend) |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
326 |
m_netSendBuffer.append(msg); |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
327 |
|
7152
f49254ddfc67
Removed dead/deprecated code and comments
Medo <smaxein@googlemail.com>
parents:
7130
diff
changeset
|
328 |
demo.append(msg); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
329 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
330 |
} |
184 | 331 |
} |
332 |
||
333 |
void HWGame::FromNet(const QByteArray & msg) |
|
334 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
335 |
RawSendIPC(msg); |
184 | 336 |
} |
337 |
||
1356 | 338 |
void HWGame::FromNetChat(const QString & msg) |
339 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
340 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
341 |
HWProto::addStringToBuffer(buf, 's' + msg + "\x20\x20"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
342 |
RawSendIPC(buf); |
1356 | 343 |
} |
344 |
||
184 | 345 |
void HWGame::onClientRead() |
346 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
347 |
quint8 msglen; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
348 |
quint32 bufsize; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
349 |
while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) && |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
350 |
((msglen = readbuffer.data()[0]) < bufsize)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
351 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
352 |
QByteArray msg = readbuffer.left(msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
353 |
readbuffer.remove(0, msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
354 |
ParseMessage(msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
355 |
} |
8924 | 356 |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
357 |
flushNetBuffer(); |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
358 |
} |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
359 |
|
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
360 |
void HWGame::flushNetBuffer() |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
361 |
{ |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
362 |
if(m_netSendBuffer.size()) |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
363 |
{ |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
364 |
emit SendNet(m_netSendBuffer); |
8924 | 365 |
|
8629 | 366 |
m_netSendBuffer.clear(); |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
367 |
} |
184 | 368 |
} |
369 |
||
5213
a86768368309
make the associate button use the user's settings for loading demos/saves
nemo
parents:
5201
diff
changeset
|
370 |
QStringList HWGame::getArguments() |
184 | 371 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
372 |
QStringList arguments; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
373 |
std::pair<QRect, QRect> resolutions = config->vid_ResolutionPair(); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
374 |
QString nick = config->netNick().toUtf8().toBase64(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
375 |
|
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
376 |
arguments << "--internal"; //Must be passed as first argument |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
377 |
arguments << "--port"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
378 |
arguments << QString("%1").arg(ipc_port); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
379 |
arguments << "--prefix"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
380 |
arguments << datadir->absolutePath(); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
381 |
arguments << "--user-prefix"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
382 |
arguments << cfgdir->absolutePath(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
383 |
arguments << "--locale"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
384 |
arguments << tr("en.txt"); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
385 |
arguments << "--frame-interval"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
386 |
arguments << QString::number(config->timerInterval()); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
387 |
arguments << "--volume"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
388 |
arguments << QString::number(config->volume()); |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
389 |
arguments << "--fullscreen-width"; |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
390 |
arguments << QString::number(resolutions.first.width()); |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
391 |
arguments << "--fullscreen-height"; |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
392 |
arguments << QString::number(resolutions.first.height()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
393 |
arguments << "--width"; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
394 |
arguments << QString::number(resolutions.second.width()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
395 |
arguments << "--height"; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
396 |
arguments << QString::number(resolutions.second.height()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
397 |
arguments << "--raw-quality"; |
3708
64e059b6f9c5
applied from experimental3D, use a slider to set up quality
koda
parents:
3695
diff
changeset
|
398 |
arguments << QString::number(config->translateQuality()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
399 |
arguments << "--stereo"; |
3696 | 400 |
arguments << QString::number(config->stereoMode()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
401 |
if (config->vid_Fullscreen()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
402 |
arguments << "--fullscreen"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
403 |
if (config->isShowFPSEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
404 |
arguments << "--showfps"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
405 |
if (config->isAltDamageEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
406 |
arguments << "--altdmg"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
407 |
if (!config->isSoundEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
408 |
arguments << "--nosound"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
409 |
if (!config->isMusicEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
410 |
arguments << "--nomusic"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
411 |
if (!nick.isEmpty()) { |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
412 |
arguments << "--nick"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
413 |
arguments << nick; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
414 |
} |
3709 | 415 |
|
9249 | 416 |
if (!config->Form->ui.pageOptions->CBTeamTag->isChecked()) |
417 |
arguments << "--no-teamtag"; |
|
418 |
if (!config->Form->ui.pageOptions->CBHogTag->isChecked()) |
|
419 |
arguments << "--no-hogtag"; |
|
420 |
if (!config->Form->ui.pageOptions->CBHealthTag->isChecked()) |
|
421 |
arguments << "--no-healthtag"; |
|
422 |
if (config->Form->ui.pageOptions->CBTagOpacity->isChecked()) |
|
423 |
arguments << "--translucent-tags"; |
|
424 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
425 |
return arguments; |
184 | 426 |
} |
427 |
||
5865 | 428 |
void HWGame::PlayDemo(const QString & demofilename, bool isSave) |
184 | 429 |
{ |
5865 | 430 |
gameType = isSave ? gtSave : gtDemo; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
431 |
QFile demofile(demofilename); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
432 |
if (!demofile.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
433 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
434 |
emit ErrorMessage(tr("Cannot open demofile %1").arg(demofilename)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
435 |
return ; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
436 |
} |
184 | 437 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
438 |
// read demo |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
439 |
toSendBuf = demofile.readAll(); |
184 | 440 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
441 |
// run engine |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
442 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
443 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
444 |
SetGameState(gsStarted); |
184 | 445 |
} |
446 |
||
447 |
void HWGame::StartNet() |
|
448 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
449 |
gameType = gtNet; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
450 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
451 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
452 |
SetGameState(gsStarted); |
184 | 453 |
} |
454 |
||
455 |
void HWGame::StartLocal() |
|
456 |
{ |
|
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
457 |
lastGameStartArgs.clear(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
458 |
lastGameType = gtLocal; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
459 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
460 |
gameType = gtLocal; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
461 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
462 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
463 |
SetGameState(gsStarted); |
184 | 464 |
} |
465 |
||
466 |
void HWGame::StartQuick() |
|
467 |
{ |
|
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
468 |
lastGameStartArgs.clear(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
469 |
lastGameType = gtQLocal; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
470 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
471 |
gameType = gtQLocal; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
472 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
473 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
474 |
SetGameState(gsStarted); |
184 | 475 |
} |
533 | 476 |
|
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
|
477 |
void HWGame::StartTraining(const QString & file) |
587 | 478 |
{ |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
479 |
lastGameStartArgs.clear(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
480 |
lastGameStartArgs.append(file); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
481 |
lastGameType = gtTraining; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
482 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
483 |
gameType = gtTraining; |
3919 | 484 |
training = "Missions/Training/" + file + ".lua"; |
3760 | 485 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
486 |
Start(false); |
3760 | 487 |
SetGameState(gsStarted); |
488 |
} |
|
489 |
||
7629 | 490 |
void HWGame::StartCampaign(const QString & camp, const QString & campScript, const QString & campTeam) |
3760 | 491 |
{ |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
492 |
lastGameStartArgs.clear(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
493 |
lastGameStartArgs.append(camp); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
494 |
lastGameStartArgs.append(campScript); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
495 |
lastGameStartArgs.append(campTeam); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
496 |
lastGameType = gtCampaign; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
497 |
|
3760 | 498 |
gameType = gtCampaign; |
7629 | 499 |
campaign = camp; |
500 |
campaignScript = "Missions/Campaign/" + camp + "/" + campScript; |
|
501 |
campaignTeam = campTeam; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
502 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
503 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
504 |
SetGameState(gsStarted); |
587 | 505 |
} |
506 |
||
533 | 507 |
void HWGame::SetGameState(GameState state) |
508 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
509 |
gameState = state; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
510 |
emit GameStateChanged(state); |
7629 | 511 |
if (gameType == gtCampaign) |
512 |
{ |
|
513 |
emit CampStateChanged(1); |
|
514 |
} |
|
533 | 515 |
} |
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
|
516 |
|
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
517 |
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
|
518 |
{ |
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
519 |
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
|
520 |
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
|
521 |
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
|
522 |
} |
7629 | 523 |
|
7665 | 524 |
void HWGame::sendCampaignVar(const QByteArray &varToSend) |
7629 | 525 |
{ |
9718
563a34cd8398
unbreak various parts of campaign variable loading/saving
sheepluva
parents:
9466
diff
changeset
|
526 |
QString varToFind = QString::fromUtf8(varToSend); |
8629 | 527 |
QSettings teamfile(QString("physfs://Teams/%1.hwt").arg(campaignTeam), QSettings::IniFormat, 0); |
7629 | 528 |
teamfile.setIniCodec("UTF-8"); |
529 |
QString varValue = teamfile.value("Campaign " + campaign + "/" + varToFind, "").toString(); |
|
530 |
QByteArray command; |
|
531 |
HWProto::addStringToBuffer(command, "V." + varValue); |
|
532 |
RawSendIPC(command); |
|
533 |
} |
|
534 |
||
7665 | 535 |
void HWGame::writeCampaignVar(const QByteArray & varVal) |
7629 | 536 |
{ |
7665 | 537 |
int i = varVal.indexOf(" "); |
538 |
if(i < 0) |
|
539 |
return; |
|
540 |
||
541 |
QString varToWrite = QString::fromUtf8(varVal.left(i)); |
|
542 |
QString varValue = QString::fromUtf8(varVal.mid(i + 1)); |
|
7629 | 543 |
|
8629 | 544 |
QSettings teamfile(QString("physfs://Teams/%1.hwt").arg(campaignTeam), QSettings::IniFormat, 0); |
7629 | 545 |
teamfile.setIniCodec("UTF-8"); |
546 |
teamfile.setValue("Campaign " + campaign + "/" + varToWrite, varValue); |
|
547 |
} |
|
548 |