author | alfadur |
Wed, 27 Mar 2024 02:19:44 +0300 | |
changeset 16001 | 8ba2b5007c29 |
parent 15845 | ad43384fbbe9 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 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 |
||
10850
c76ea22ea249
copy to/paste from system clipboard (via frontend)
sheepluva
parents:
10571
diff
changeset
|
19 |
#include <QApplication> |
c76ea22ea249
copy to/paste from system clipboard (via frontend)
sheepluva
parents:
10571
diff
changeset
|
20 |
|
184 | 21 |
#include <QString> |
9249 | 22 |
#include <QCheckBox> |
184 | 23 |
#include <QByteArray> |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
24 |
#include <QUuid> |
5201 | 25 |
#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
|
26 |
#include <QStringListModel> |
7629 | 27 |
#include <QTextStream> |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
28 |
#include <utility> |
184 | 29 |
|
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
30 |
#include "hwform.h" |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
31 |
#include "ui/page/pageoptions.h" |
14477
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
32 |
#include "ui/page/pagetraining.h" |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
33 |
#include "ui/page/pagecampaign.h" |
184 | 34 |
#include "game.h" |
35 |
#include "hwconsts.h" |
|
36 |
#include "gameuiconfig.h" |
|
37 |
#include "gamecfgwidget.h" |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
38 |
#include "teamselect.h" |
239 | 39 |
#include "proto.h" |
8346 | 40 |
#include "binds.h" |
7629 | 41 |
#include "campaign.h" |
184 | 42 |
|
706 | 43 |
#include <QTextStream> |
7629 | 44 |
#include "ThemeModel.h" |
706 | 45 |
|
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
46 |
// last game info |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
47 |
QList<QVariant> lastGameStartArgs = QList<QVariant>(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
48 |
GameType lastGameType = gtNone; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
49 |
GameCFGWidget * lastGameCfg = NULL; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
50 |
QString lastGameAmmo = NULL; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
51 |
TeamSelWidget * lastGameTeamSel = NULL; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
52 |
|
14463
bd1db668b7c0
Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents:
14462
diff
changeset
|
53 |
QString trainingName, trainingScript, trainingTeam, 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
|
54 |
|
681 | 55 |
HWGame::HWGame(GameUIConfig * config, GameCFGWidget * gamecfg, QString ammo, TeamSelWidget* pTeamSelWidget) : |
14599
b86e6e4f3c58
Make game engine load the user's locale correctly (bug 688)
Wuzzy <Wuzzy2@mail.ru>
parents:
14477
diff
changeset
|
56 |
TCPBase(true, !config->language().isEmpty(), 0), |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
57 |
ammostr(ammo), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
58 |
m_pTeamSelWidget(pTeamSelWidget) |
184 | 59 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
60 |
this->config = config; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
61 |
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
|
62 |
netSuspend = false; |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
63 |
|
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
64 |
lastGameCfg = gamecfg; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
65 |
lastGameAmmo = ammo; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
66 |
lastGameTeamSel = pTeamSelWidget; |
10248 | 67 |
|
68 |
gameState = gsNotStarted; |
|
69 |
gameType = gtNone; |
|
184 | 70 |
} |
71 |
||
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
72 |
HWGame::~HWGame() |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
73 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
74 |
SetGameState(gsDestroyed); |
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
75 |
} |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
76 |
|
184 | 77 |
void HWGame::onClientDisconnect() |
78 |
{ |
|
15278
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
79 |
if (demoIsPresent) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
80 |
{ |
15278
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
81 |
switch (gameType) |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
82 |
{ |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
83 |
case gtDemo: |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
84 |
// for video recording we need demo anyway |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
85 |
emit HaveRecord(rtNeither, demo); |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
86 |
break; |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
87 |
case gtNet: |
7180 | 88 |
emit HaveRecord(rtDemo, demo); |
15278
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
89 |
break; |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
90 |
default: |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
91 |
if (gameState == gsInterrupted || gameState == gsHalted) |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
92 |
emit HaveRecord(rtSave, demo); |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
93 |
else if (gameState == gsFinished) |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
94 |
emit HaveRecord(rtDemo, demo); |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
95 |
else |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
96 |
emit HaveRecord(rtNeither, demo); |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
97 |
} |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
98 |
} |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
99 |
else |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
100 |
{ |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
101 |
emit HaveRecord(rtNeither, demo); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
102 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
103 |
SetGameState(gsStopped); |
184 | 104 |
} |
105 |
||
253 | 106 |
void HWGame::commonConfig() |
184 | 107 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
108 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
109 |
QString gt; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
110 |
switch (gameType) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
111 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
112 |
case gtDemo: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
113 |
gt = "TD"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
114 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
115 |
case gtNet: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
116 |
gt = "TN"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
117 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
118 |
default: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
119 |
gt = "TL"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
120 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
121 |
HWProto::addStringToBuffer(buf, gt); |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
122 |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4430
diff
changeset
|
123 |
buf += gamecfg->getFullConfig(); |
341 | 124 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
125 |
if (m_pTeamSelWidget) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
126 |
{ |
5772
c09c50efe8b5
Replace iterators with simple declarative foreach (not tested if it works)
unc0rr
parents:
5289
diff
changeset
|
127 |
foreach(HWTeam team, m_pTeamSelWidget->getPlayingTeams()) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
128 |
{ |
3346 | 129 |
HWProto::addStringToBuffer(buf, QString("eammloadt %1").arg(ammostr.mid(0, cAmmoNumber))); |
130 |
HWProto::addStringToBuffer(buf, QString("eammprob %1").arg(ammostr.mid(cAmmoNumber, cAmmoNumber))); |
|
131 |
HWProto::addStringToBuffer(buf, QString("eammdelay %1").arg(ammostr.mid(2 * cAmmoNumber, cAmmoNumber))); |
|
132 |
HWProto::addStringToBuffer(buf, QString("eammreinf %1").arg(ammostr.mid(3 * cAmmoNumber, cAmmoNumber))); |
|
7629 | 133 |
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
|
134 |
HWProto::addStringListToBuffer(buf, |
9466 | 135 |
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
|
136 |
; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
137 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
138 |
} |
8434 | 139 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
140 |
RawSendIPC(buf); |
253 | 141 |
} |
142 |
||
143 |
void HWGame::SendConfig() |
|
144 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
145 |
commonConfig(); |
184 | 146 |
} |
147 |
||
148 |
void HWGame::SendQuickConfig() |
|
149 |
{ |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
150 |
/* Load and increase Quick Game experience level. |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
151 |
Experience increases by 1 for each started game and maxes out |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
152 |
at 20. Low experience levels will introduce a "beginner's bias" to make |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
153 |
the first quick games easier and simpler. The max. possible difficulty |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
154 |
increases progressively the longer you play. |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
155 |
If experience is maxed out, the beginner's bias is gone and quick games |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
156 |
are completely random. */ |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
157 |
int exp = config->quickGameExperience(); |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
158 |
if(exp < 20) |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
159 |
{ |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
160 |
config->setQuickGameExperience(exp + 1); |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
161 |
} |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
162 |
qDebug("Starting quick game ..."); |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
163 |
qDebug("Quick Game experience level: %d", exp); |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
164 |
|
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
165 |
// Init stuff |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
166 |
QByteArray teamscfg; |
13313 | 167 |
QAbstractItemModel * themeModel = DataManager::instance().themeModel()->withoutHidden(); |
239 | 168 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
169 |
HWProto::addStringToBuffer(teamscfg, "TL"); |
14954 | 170 |
|
171 |
// Random seed |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
172 |
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
|
173 |
|
14954 | 174 |
int r, minhogs, maxhogs; |
7713 | 175 |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
176 |
// Random map type |
14954 | 177 |
r = rand() % 10000; |
178 |
if(r < 3000) { // 30% |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
179 |
// Random |
14954 | 180 |
r = 0; |
181 |
} else if(r < 5250) { // 22.5% |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
182 |
// Maze |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
183 |
if(exp <= 3) |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
184 |
r = 0; |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
185 |
else |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
186 |
r = 1; |
14962
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
187 |
} else if(r < 7490) { // 22.4% |
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
188 |
// Perlin |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
189 |
if(exp <= 7) |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
190 |
r = 1; |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
191 |
else |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
192 |
r = 2; |
14962
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
193 |
} else if(r < 7500 && exp >= 5) { // 0.1% |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
194 |
// Floating Flowers (just for fun) |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
195 |
r = 5; |
14954 | 196 |
} else if(r < 8750) { // 12.5% |
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
197 |
// Image map |
14954 | 198 |
r = 3; |
199 |
} else { // 12.5% |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
200 |
// Forts |
14954 | 201 |
r = 4; |
202 |
} |
|
203 |
switch(r) |
|
204 |
{ |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
205 |
// Random map |
14954 | 206 |
default: |
207 |
case 0: { |
|
208 |
r = rand() % 3; |
|
209 |
if(r == 0) |
|
210 |
{ |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
211 |
// small island |
14954 | 212 |
HWProto::addStringToBuffer(teamscfg, "e$template_filter 1"); |
213 |
minhogs = 3; |
|
214 |
maxhogs = 4; |
|
215 |
} |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
216 |
else if(r == 1 || exp <= 6) |
14954 | 217 |
{ |
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
218 |
// medium island |
14954 | 219 |
HWProto::addStringToBuffer(teamscfg, "e$template_filter 2"); |
220 |
minhogs = 4; |
|
221 |
maxhogs = 5; |
|
222 |
} |
|
223 |
else |
|
224 |
{ |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
225 |
// cave (locked at low experience because these maps can be huge) |
14954 | 226 |
HWProto::addStringToBuffer(teamscfg, "e$template_filter 4"); |
227 |
minhogs = 4; |
|
228 |
maxhogs = 6; |
|
229 |
} |
|
230 |
HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%18+4)); |
|
231 |
break; |
|
232 |
} |
|
233 |
// Maze |
|
234 |
case 1: { |
|
235 |
minhogs = 4; |
|
236 |
maxhogs = 6; |
|
237 |
HWProto::addStringToBuffer(teamscfg, "e$mapgen 1"); |
|
238 |
HWProto::addStringToBuffer(teamscfg, "e$template_filter "+QString::number(rand()%6)); |
|
239 |
HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%16+6)); |
|
240 |
break; |
|
241 |
} |
|
242 |
// Perlin |
|
243 |
case 2: { |
|
244 |
minhogs = 4; |
|
245 |
maxhogs = 6; |
|
246 |
HWProto::addStringToBuffer(teamscfg, "e$mapgen 2"); |
|
247 |
HWProto::addStringToBuffer(teamscfg, "e$template_filter "+QString::number(rand()%6)); |
|
248 |
HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%18+4)); |
|
249 |
break; |
|
250 |
} |
|
251 |
// Image map |
|
252 |
case 3: { |
|
253 |
minhogs = 4; |
|
254 |
maxhogs = 6; |
|
255 |
HWProto::addStringToBuffer(teamscfg, "e$mapgen 3"); |
|
256 |
// Select map from hardcoded list. |
|
257 |
// TODO: find a more dynamic solution. |
|
258 |
r = rand() % cQuickGameMaps.count(); |
|
259 |
HWProto::addStringToBuffer(teamscfg, "e$map " + cQuickGameMaps[r]); |
|
260 |
break; |
|
261 |
} |
|
262 |
// Forts |
|
263 |
case 4: { |
|
264 |
minhogs = 4; |
|
265 |
maxhogs = 6; |
|
266 |
HWProto::addStringToBuffer(teamscfg, "e$mapgen 4"); |
|
267 |
HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%20+1)); |
|
268 |
break; |
|
269 |
} |
|
14962
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
270 |
// Floating Flowers |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
271 |
// (actually empty map; this forces the engine to generate fallback structures to have |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
272 |
// something for hogs to stand on) |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
273 |
case 5: { |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
274 |
minhogs = 4; |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
275 |
maxhogs = 8; |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
276 |
HWProto::addStringToBuffer(teamscfg, "e$mapgen 3"); |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
277 |
HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%4+3)); |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
278 |
break; |
da7eb3414e02
Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14961
diff
changeset
|
279 |
} |
14954 | 280 |
} |
281 |
||
282 |
// Theme |
|
283 |
HWProto::addStringToBuffer(teamscfg, QString("etheme %1") |
|
284 |
.arg((themeModel->rowCount() > 0) ? themeModel->index(rand() % themeModel->rowCount(), 0).data(ThemeModel::ActualNameRole).toString() : "Nature")); |
|
285 |
||
286 |
int hogs = minhogs + rand() % (maxhogs-minhogs+1); |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
287 |
// Cap hog count at low experience |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
288 |
if((exp <= 8) && (hogs > 5)) |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
289 |
hogs = 5; |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
290 |
else if((exp <= 5) && (hogs > 4)) |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
291 |
hogs = 4; |
14954 | 292 |
|
293 |
// Teams |
|
294 |
// Player team |
|
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
|
295 |
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
|
296 |
team1.setDifficulty(0); |
7130 | 297 |
team1.setColor(0); |
14954 | 298 |
team1.setNumHedgehogs(hogs); |
12505
82c75a317d48
Randomized teams now can have any random hats (not just from types.ini)
Wuzzy <almikes@aol.com>
parents:
12474
diff
changeset
|
299 |
HWNamegen::teamRandomEverything(team1); |
14931
ba5fd934f49b
Don't agressively select voicepack language automatically, must be now enabled explicitly with _qau suffix
Wuzzy <Wuzzy2@mail.ru>
parents:
14903
diff
changeset
|
300 |
team1.setVoicepack("Default_qau"); |
1907 | 301 |
|
14954 | 302 |
// Computer team |
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
|
303 |
HWTeam team2; |
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
304 |
// Random difficulty. |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
305 |
// Max. possible difficulty is capped at low experience levels. |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
306 |
if(exp >= 15) // very easy to very hard (full range) |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
307 |
r = 5 - rand() % 5; |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
308 |
else if(exp >= 9) // very easy to hard |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
309 |
r = 5 - rand() % 4; |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
310 |
else if(exp >= 6) // very easy to medium |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
311 |
r = 5 - rand() % 3; |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
312 |
else if(exp >= 2) // very easy to easy |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
313 |
r = 5 - rand() % 2; |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
314 |
else // very easy |
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
315 |
r = 5; |
14954 | 316 |
team2.setDifficulty(r); |
7130 | 317 |
team2.setColor(1); |
14954 | 318 |
team2.setNumHedgehogs(hogs); |
319 |
// Make sure the team names are not equal |
|
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
|
320 |
do |
12505
82c75a317d48
Randomized teams now can have any random hats (not just from types.ini)
Wuzzy <almikes@aol.com>
parents:
12474
diff
changeset
|
321 |
HWNamegen::teamRandomEverything(team2); |
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
|
322 |
while(!team2.name().compare(team1.name()) || !team2.hedgehog(0).Hat.compare(team1.hedgehog(0).Hat)); |
14931
ba5fd934f49b
Don't agressively select voicepack language automatically, must be now enabled explicitly with _qau suffix
Wuzzy <Wuzzy2@mail.ru>
parents:
14903
diff
changeset
|
323 |
team2.setVoicepack("Default_qau"); |
607 | 324 |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
325 |
// Team play order |
14954 | 326 |
r = rand() % 2; |
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
327 |
if(r == 0 || exp <= 4) // player plays first |
14954 | 328 |
{ |
329 |
HWProto::addStringListToBuffer(teamscfg, team1.teamGameConfig(100)); |
|
330 |
HWProto::addStringListToBuffer(teamscfg, team2.teamGameConfig(100)); |
|
331 |
} |
|
14961
575dbd7b5f43
Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents:
14954
diff
changeset
|
332 |
else // computer plays first |
14954 | 333 |
{ |
334 |
HWProto::addStringListToBuffer(teamscfg, team2.teamGameConfig(100)); |
|
335 |
HWProto::addStringListToBuffer(teamscfg, team1.teamGameConfig(100)); |
|
336 |
} |
|
337 |
||
338 |
// Ammo scheme "Default" |
|
339 |
// TODO: Random schemes |
|
3346 | 340 |
HWProto::addStringToBuffer(teamscfg, QString("eammloadt %1").arg(cDefaultAmmoStore->mid(0, cAmmoNumber))); |
341 |
HWProto::addStringToBuffer(teamscfg, QString("eammprob %1").arg(cDefaultAmmoStore->mid(cAmmoNumber, cAmmoNumber))); |
|
342 |
HWProto::addStringToBuffer(teamscfg, QString("eammdelay %1").arg(cDefaultAmmoStore->mid(2 * cAmmoNumber, cAmmoNumber))); |
|
343 |
HWProto::addStringToBuffer(teamscfg, QString("eammreinf %1").arg(cDefaultAmmoStore->mid(3 * cAmmoNumber, cAmmoNumber))); |
|
344 |
HWProto::addStringToBuffer(teamscfg, QString("eammstore")); |
|
345 |
HWProto::addStringToBuffer(teamscfg, QString("eammstore")); |
|
8434 | 346 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
347 |
RawSendIPC(teamscfg); |
341 | 348 |
} |
349 |
||
588 | 350 |
void HWGame::SendTrainingConfig() |
351 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
352 |
QByteArray traincfg; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
353 |
HWProto::addStringToBuffer(traincfg, "TL"); |
14477
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
354 |
|
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
355 |
HWTeam missionTeam = HWTeam(); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
356 |
missionTeam.setName(config->Form->ui.pageTraining->CBTeam->currentText()); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
357 |
missionTeam.loadFromFile(); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
358 |
missionTeam.setNumHedgehogs(HEDGEHOGS_PER_TEAM); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
359 |
missionTeam.setMissionTeam(true); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
360 |
HWProto::addStringListToBuffer(traincfg, missionTeam.teamGameConfig(100)); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
361 |
|
7090
63d09a846444
Provide training/campaign with a random seed to ignore/use.
nemo
parents:
6952
diff
changeset
|
362 |
HWProto::addStringToBuffer(traincfg, "eseed " + QUuid::createUuid().toString()); |
14463
bd1db668b7c0
Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents:
14462
diff
changeset
|
363 |
HWProto::addStringToBuffer(traincfg, "escript " + trainingScript); |
593 | 364 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
365 |
RawSendIPC(traincfg); |
588 | 366 |
} |
367 |
||
3760 | 368 |
void HWGame::SendCampaignConfig() |
369 |
{ |
|
370 |
QByteArray campaigncfg; |
|
371 |
HWProto::addStringToBuffer(campaigncfg, "TL"); |
|
14477
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
372 |
|
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
373 |
HWTeam missionTeam = HWTeam(); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
374 |
missionTeam.setName(config->Form->ui.pageCampaign->CBTeam->currentText()); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
375 |
missionTeam.loadFromFile(); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
376 |
missionTeam.setNumHedgehogs(HEDGEHOGS_PER_TEAM); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
377 |
missionTeam.setMissionTeam(true); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
378 |
HWProto::addStringListToBuffer(campaigncfg, missionTeam.teamGameConfig(100)); |
4b678aad50e9
Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents:
14467
diff
changeset
|
379 |
|
7090
63d09a846444
Provide training/campaign with a random seed to ignore/use.
nemo
parents:
6952
diff
changeset
|
380 |
HWProto::addStringToBuffer(campaigncfg, "eseed " + QUuid::createUuid().toString()); |
7629 | 381 |
HWProto::addStringToBuffer(campaigncfg, "escript " + campaignScript); |
3760 | 382 |
|
383 |
RawSendIPC(campaigncfg); |
|
384 |
} |
|
385 |
||
341 | 386 |
void HWGame::SendNetConfig() |
387 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
388 |
commonConfig(); |
184 | 389 |
} |
390 |
||
391 |
void HWGame::ParseMessage(const QByteArray & msg) |
|
392 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
393 |
switch(msg.at(1)) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
394 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
395 |
case '?': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
396 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
397 |
SendIPC("!"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
398 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
399 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
400 |
case 'C': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
401 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
402 |
switch (gameType) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
403 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
404 |
case gtLocal: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
405 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
406 |
SendConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
407 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
408 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
409 |
case gtQLocal: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
410 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
411 |
SendQuickConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
412 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
413 |
} |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
414 |
case gtNone: |
5865 | 415 |
case gtSave: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
416 |
case gtDemo: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
417 |
break; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
418 |
case gtNet: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
419 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
420 |
SendNetConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
421 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
422 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
423 |
case gtTraining: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
424 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
425 |
SendTrainingConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
426 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
427 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
428 |
case gtCampaign: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
429 |
{ |
3760 | 430 |
SendCampaignConfig(); |
431 |
break; |
|
432 |
} |
|
2948
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 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
435 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
436 |
case 'E': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
437 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
438 |
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
|
439 |
emit ErrorMessage( |
13078
dd904dd9c587
Fix frontend error dialog always displaying "failed" as last engine message after engine crash
Wuzzy <Wuzzy2@mail.ru>
parents:
12822
diff
changeset
|
440 |
tr("A fatal ERROR occured! The game engine had to stop.\n\n" |
dd904dd9c587
Fix frontend error dialog always displaying "failed" as last engine message after engine crash
Wuzzy <Wuzzy2@mail.ru>
parents:
12822
diff
changeset
|
441 |
"We are very sorry for the inconvenience. :-(\n\n" |
dd904dd9c587
Fix frontend error dialog always displaying "failed" as last engine message after engine crash
Wuzzy <Wuzzy2@mail.ru>
parents:
12822
diff
changeset
|
442 |
"If this keeps happening, please click the 'Feedback' button in the main menu!\n\n" |
dd904dd9c587
Fix frontend error dialog always displaying "failed" as last engine message after engine crash
Wuzzy <Wuzzy2@mail.ru>
parents:
12822
diff
changeset
|
443 |
"Last engine message:\n%1") |
10310 | 444 |
.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
|
445 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
446 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
447 |
case 'i': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
448 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
449 |
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
|
450 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
451 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
452 |
case 'Q': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
453 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
454 |
SetGameState(gsInterrupted); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
455 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
456 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
457 |
case 'q': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
458 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
459 |
SetGameState(gsFinished); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
460 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
461 |
} |
15278
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
462 |
case 'm': |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
463 |
{ |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
464 |
SetDemoPresence(false); |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
465 |
break; |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
466 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
467 |
case 'H': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
468 |
{ |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
469 |
SetGameState(gsHalted); |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
470 |
break; |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
471 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
472 |
case 's': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
473 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
474 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
475 |
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
|
476 |
emit SendChat(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
477 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
478 |
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
|
479 |
demo.append(buf); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
480 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
481 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
482 |
case 'b': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
483 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
484 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
485 |
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
|
486 |
emit SendTeamMessage(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
487 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
488 |
} |
7629 | 489 |
case 'V': |
490 |
{ |
|
491 |
if (msg.at(2) == '?') |
|
492 |
sendCampaignVar(msg.right(msg.size() - 3)); |
|
493 |
else if (msg.at(2) == '!') |
|
494 |
writeCampaignVar(msg.right(msg.size() - 3)); |
|
495 |
break; |
|
496 |
} |
|
14462
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
497 |
case 'v': |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
498 |
{ |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
499 |
if (msg.at(2) == '?') |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
500 |
sendMissionVar(msg.right(msg.size() - 3)); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
501 |
else if (msg.at(2) == '!') |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
502 |
writeMissionVar(msg.right(msg.size() - 3)); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
503 |
break; |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
504 |
} |
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
505 |
case 'W': |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
506 |
{ |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
507 |
// 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
|
508 |
int size = msg.size(); |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
509 |
QString newResolution = QString().append(msg.mid(2)).left(size - 4); |
15299
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
510 |
bool windowMaximized; |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
511 |
if (newResolution.endsWith('M')) |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
512 |
{ |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
513 |
windowMaximized = true; |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
514 |
newResolution.chop(1); |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
515 |
} |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
516 |
else |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
517 |
{ |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
518 |
windowMaximized = false; |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
519 |
} |
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
520 |
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
|
521 |
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
|
522 |
config->Form->ui.pageOptions->windowHeightEdit->setValue(wh[1].toInt()); |
15299
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
523 |
config->vid_SetMaximized(windowMaximized); |
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
524 |
break; |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
525 |
} |
10392 | 526 |
case '~': |
527 |
{ |
|
528 |
int size = msg.size(); |
|
529 |
QString msgbody = QString::fromUtf8(msg.mid(2).left(size - 4)); |
|
530 |
emit SendConsoleCommand(msgbody); |
|
531 |
break; |
|
532 |
} |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
533 |
default: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
534 |
{ |
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
|
535 |
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
|
536 |
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
|
537 |
|
7152
f49254ddfc67
Removed dead/deprecated code and comments
Medo <smaxein@googlemail.com>
parents:
7130
diff
changeset
|
538 |
demo.append(msg); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
539 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
540 |
} |
184 | 541 |
} |
542 |
||
543 |
void HWGame::FromNet(const QByteArray & msg) |
|
544 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
545 |
RawSendIPC(msg); |
184 | 546 |
} |
547 |
||
1356 | 548 |
void HWGame::FromNetChat(const QString & msg) |
549 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
550 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
551 |
HWProto::addStringToBuffer(buf, 's' + msg + "\x20\x20"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
552 |
RawSendIPC(buf); |
1356 | 553 |
} |
554 |
||
13823
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
555 |
void HWGame::FromNetWarning(const QString & msg) |
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
556 |
{ |
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
557 |
QByteArray buf; |
14447 | 558 |
HWProto::addStringToBuffer(buf, "s\x00" + msg + "\x20\x20"); |
13823
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
559 |
RawSendIPC(buf); |
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
560 |
} |
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
561 |
|
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
562 |
void HWGame::FromNetError(const QString & msg) |
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
563 |
{ |
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
564 |
QByteArray buf; |
14447 | 565 |
HWProto::addStringToBuffer(buf, "s\x05" + msg + "\x20\x20"); |
13823
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
566 |
RawSendIPC(buf); |
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
567 |
} |
d012948b1eda
Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents:
13659
diff
changeset
|
568 |
|
184 | 569 |
void HWGame::onClientRead() |
570 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
571 |
quint8 msglen; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
572 |
quint32 bufsize; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
573 |
while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) && |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
574 |
((msglen = readbuffer.data()[0]) < bufsize)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
575 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
576 |
QByteArray msg = readbuffer.left(msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
577 |
readbuffer.remove(0, msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
578 |
ParseMessage(msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
579 |
} |
8924 | 580 |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
581 |
flushNetBuffer(); |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
582 |
} |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
583 |
|
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
584 |
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
|
585 |
{ |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
586 |
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
|
587 |
{ |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8434
diff
changeset
|
588 |
emit SendNet(m_netSendBuffer); |
8924 | 589 |
|
8629 | 590 |
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
|
591 |
} |
184 | 592 |
} |
593 |
||
5213
a86768368309
make the associate button use the user's settings for loading demos/saves
nemo
parents:
5201
diff
changeset
|
594 |
QStringList HWGame::getArguments() |
184 | 595 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
596 |
QStringList arguments; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
597 |
std::pair<QRect, QRect> resolutions = config->vid_ResolutionPair(); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
598 |
QString nick = config->netNick().toUtf8().toBase64(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
599 |
|
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
600 |
arguments << "--internal"; //Must be passed as first argument |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
601 |
arguments << "--port"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
602 |
arguments << QString("%1").arg(ipc_port); |
15845 | 603 |
#ifdef _WIN32 |
604 |
{ |
|
605 |
QString path = datadir->absolutePath(); |
|
606 |
if (path == QLatin1String(path.toLatin1())) { |
|
607 |
arguments << "--prefix"; |
|
608 |
arguments << path; |
|
609 |
} else { |
|
610 |
arguments << "--prefix64"; |
|
611 |
arguments << path.toUtf8().toBase64(); |
|
612 |
} |
|
613 |
path = cfgdir->absolutePath(); |
|
614 |
if (path == QLatin1String(path.toLatin1())) { |
|
615 |
arguments << "--user-prefix"; |
|
616 |
arguments << path; |
|
617 |
} else { |
|
618 |
arguments << "--user-prefix64"; |
|
619 |
arguments << path.toUtf8().toBase64(); |
|
620 |
} |
|
621 |
} |
|
622 |
#else |
|
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
623 |
arguments << "--prefix"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
624 |
arguments << datadir->absolutePath(); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
625 |
arguments << "--user-prefix"; |
15845 | 626 |
arguments << cfgdir->absolutePath(); |
627 |
#endif |
|
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
628 |
arguments << "--locale"; |
12474
42da9d8d82ab
Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
629 |
// TODO: Don't bother translators with this nonsense and detect this file automatically. |
42da9d8d82ab
Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
630 |
//: IMPORTANT: This text has a special meaning, do not translate it directly. This is the file name of translation files for the game engine, found in Data/Locale/. Usually, you replace “en” with the ISO-639-1 language code of your language. |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
631 |
arguments << tr("en.txt"); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
632 |
arguments << "--frame-interval"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
633 |
arguments << QString::number(config->timerInterval()); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
634 |
arguments << "--volume"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
635 |
arguments << QString::number(config->volume()); |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
636 |
arguments << "--fullscreen-width"; |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
637 |
arguments << QString::number(resolutions.first.width()); |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
638 |
arguments << "--fullscreen-height"; |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
639 |
arguments << QString::number(resolutions.first.height()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
640 |
arguments << "--width"; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
641 |
arguments << QString::number(resolutions.second.width()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
642 |
arguments << "--height"; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
643 |
arguments << QString::number(resolutions.second.height()); |
15299
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
644 |
if (config->vid_Maximized()) |
3bf780084c86
Remember maximized state of game window
Wuzzy <Wuzzy2@mail.ru>
parents:
15278
diff
changeset
|
645 |
arguments << "--maximized"; |
14677
93429d8f6b3f
Add setting to set default/initial zoom
Wuzzy <Wuzzy2@mail.ru>
parents:
14670
diff
changeset
|
646 |
if (config->zoom() != 100) { |
93429d8f6b3f
Add setting to set default/initial zoom
Wuzzy <Wuzzy2@mail.ru>
parents:
14670
diff
changeset
|
647 |
arguments << "--zoom"; |
93429d8f6b3f
Add setting to set default/initial zoom
Wuzzy <Wuzzy2@mail.ru>
parents:
14670
diff
changeset
|
648 |
arguments << QString::number(config->zoom()); |
93429d8f6b3f
Add setting to set default/initial zoom
Wuzzy <Wuzzy2@mail.ru>
parents:
14670
diff
changeset
|
649 |
} |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
650 |
arguments << "--raw-quality"; |
3708
64e059b6f9c5
applied from experimental3D, use a slider to set up quality
koda
parents:
3695
diff
changeset
|
651 |
arguments << QString::number(config->translateQuality()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
652 |
arguments << "--stereo"; |
3696 | 653 |
arguments << QString::number(config->stereoMode()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
654 |
if (config->vid_Fullscreen()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
655 |
arguments << "--fullscreen"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
656 |
if (config->isShowFPSEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
657 |
arguments << "--showfps"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
658 |
if (config->isAltDamageEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
659 |
arguments << "--altdmg"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
660 |
if (!config->isSoundEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
661 |
arguments << "--nosound"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
662 |
if (!config->isMusicEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
663 |
arguments << "--nomusic"; |
13628
d5e029b84e16
Add setting to disable audio dampening if losing window focus
Wuzzy <Wuzzy2@mail.ru>
parents:
13313
diff
changeset
|
664 |
if (!config->isAudioDampenEnabled()) |
d5e029b84e16
Add setting to disable audio dampening if losing window focus
Wuzzy <Wuzzy2@mail.ru>
parents:
13313
diff
changeset
|
665 |
arguments << "--nodampen"; |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
666 |
if (!nick.isEmpty()) { |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
667 |
arguments << "--nick"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
668 |
arguments << nick; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
669 |
} |
3709 | 670 |
|
9249 | 671 |
if (!config->Form->ui.pageOptions->CBTeamTag->isChecked()) |
672 |
arguments << "--no-teamtag"; |
|
673 |
if (!config->Form->ui.pageOptions->CBHogTag->isChecked()) |
|
674 |
arguments << "--no-hogtag"; |
|
675 |
if (!config->Form->ui.pageOptions->CBHealthTag->isChecked()) |
|
676 |
arguments << "--no-healthtag"; |
|
677 |
if (config->Form->ui.pageOptions->CBTagOpacity->isChecked()) |
|
678 |
arguments << "--translucent-tags"; |
|
14670
56831f466d1d
Add settings.ini setting and hwengine param to disable holiday silliness (hat changes, etc.)
Wuzzy <Wuzzy2@mail.ru>
parents:
14601
diff
changeset
|
679 |
if (!config->isHolidaySillinessEnabled()) |
56831f466d1d
Add settings.ini setting and hwengine param to disable holiday silliness (hat changes, etc.)
Wuzzy <Wuzzy2@mail.ru>
parents:
14601
diff
changeset
|
680 |
arguments << "--no-holiday-silliness"; |
13389
24b531dcebe7
add chat size to misc settings. persist in settings.ini
sheepluva
parents:
13313
diff
changeset
|
681 |
arguments << "--chat-size"; |
24b531dcebe7
add chat size to misc settings. persist in settings.ini
sheepluva
parents:
13313
diff
changeset
|
682 |
arguments << QString::number(config->chatSize()); |
9249 | 683 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
684 |
return arguments; |
184 | 685 |
} |
686 |
||
5865 | 687 |
void HWGame::PlayDemo(const QString & demofilename, bool isSave) |
184 | 688 |
{ |
5865 | 689 |
gameType = isSave ? gtSave : gtDemo; |
12822
f062a31fc8f2
Fix lastGameType not being updated if game type was demo or save (fixes a crash)
Wuzzy <Wuzzy2@mail.ru>
parents:
12639
diff
changeset
|
690 |
lastGameType = gameType; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
691 |
QFile demofile(demofilename); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
692 |
if (!demofile.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
693 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
694 |
emit ErrorMessage(tr("Cannot open demofile %1").arg(demofilename)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
695 |
return ; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
696 |
} |
184 | 697 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
698 |
// read demo |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
699 |
toSendBuf = demofile.readAll(); |
184 | 700 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
701 |
// run engine |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
702 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
703 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
704 |
SetGameState(gsStarted); |
184 | 705 |
} |
706 |
||
14903
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
707 |
void HWGame::PlayOfficialServerDemo() |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
708 |
{ |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
709 |
// TODO: Use gtDemo so fast-forward is available. |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
710 |
// Needs engine support first. |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
711 |
lastGameStartArgs.clear(); |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
712 |
lastGameType = gtLocal; |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
713 |
|
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
714 |
gameType = gtLocal; |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
715 |
demo.clear(); |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
716 |
Start(false); |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
717 |
SetGameState(gsStarted); |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
718 |
} |
5119203470f3
Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents:
14677
diff
changeset
|
719 |
|
184 | 720 |
void HWGame::StartNet() |
721 |
{ |
|
12639
2473b03629c8
Remove broken “Play again” button in stats page after an online game
Wuzzy <almikes@aol.com>
parents:
12505
diff
changeset
|
722 |
lastGameStartArgs.clear(); |
2473b03629c8
Remove broken “Play again” button in stats page after an online game
Wuzzy <almikes@aol.com>
parents:
12505
diff
changeset
|
723 |
lastGameType = gtNet; |
2473b03629c8
Remove broken “Play again” button in stats page after an online game
Wuzzy <almikes@aol.com>
parents:
12505
diff
changeset
|
724 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
725 |
gameType = gtNet; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
726 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
727 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
728 |
SetGameState(gsStarted); |
184 | 729 |
} |
730 |
||
731 |
void HWGame::StartLocal() |
|
732 |
{ |
|
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
733 |
lastGameStartArgs.clear(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
734 |
lastGameType = gtLocal; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
735 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
736 |
gameType = gtLocal; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
737 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
738 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
739 |
SetGameState(gsStarted); |
184 | 740 |
} |
741 |
||
742 |
void HWGame::StartQuick() |
|
743 |
{ |
|
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
744 |
lastGameStartArgs.clear(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
745 |
lastGameType = gtQLocal; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
746 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
747 |
gameType = gtQLocal; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
748 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
749 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
750 |
SetGameState(gsStarted); |
184 | 751 |
} |
533 | 752 |
|
14462
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
753 |
void HWGame::StartTraining(const QString & file, const QString & subFolder, const QString & trainTeam) |
587 | 754 |
{ |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
755 |
lastGameStartArgs.clear(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
756 |
lastGameStartArgs.append(file); |
14462
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
757 |
lastGameStartArgs.append(subFolder); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
758 |
lastGameStartArgs.append(trainTeam); |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
759 |
lastGameType = gtTraining; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
760 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
761 |
gameType = gtTraining; |
11968
1de4d6b35748
Mission recategorization into trainings, challenges and scenarios.
Wuzzy <almikes@aol.com>
parents:
11888
diff
changeset
|
762 |
|
14463
bd1db668b7c0
Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents:
14462
diff
changeset
|
763 |
trainingScript = "Missions/" + subFolder + "/" + file + ".lua"; |
bd1db668b7c0
Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents:
14462
diff
changeset
|
764 |
trainingName = file; |
14462
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
765 |
trainingTeam = trainTeam; |
3760 | 766 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
767 |
Start(false); |
3760 | 768 |
SetGameState(gsStarted); |
769 |
} |
|
770 |
||
7629 | 771 |
void HWGame::StartCampaign(const QString & camp, const QString & campScript, const QString & campTeam) |
3760 | 772 |
{ |
8901
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
773 |
lastGameStartArgs.clear(); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
774 |
lastGameStartArgs.append(camp); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
775 |
lastGameStartArgs.append(campScript); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
776 |
lastGameStartArgs.append(campTeam); |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
777 |
lastGameType = gtCampaign; |
505307b9735d
implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents:
8629
diff
changeset
|
778 |
|
3760 | 779 |
gameType = gtCampaign; |
7629 | 780 |
campaign = camp; |
781 |
campaignScript = "Missions/Campaign/" + camp + "/" + campScript; |
|
782 |
campaignTeam = campTeam; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
783 |
demo.clear(); |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7857
diff
changeset
|
784 |
Start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
785 |
SetGameState(gsStarted); |
587 | 786 |
} |
787 |
||
533 | 788 |
void HWGame::SetGameState(GameState state) |
789 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
790 |
gameState = state; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
791 |
emit GameStateChanged(state); |
7629 | 792 |
if (gameType == gtCampaign) |
793 |
{ |
|
14601
1d3f8cf48831
Campaign: Select next unfinished mission after completing one
Wuzzy <Wuzzy2@mail.ru>
parents:
14599
diff
changeset
|
794 |
emit CampStateChanged(state); |
14467
4edcb655dc5a
Update training page after completing a training
Wuzzy <Wuzzy2@mail.ru>
parents:
14463
diff
changeset
|
795 |
} |
4edcb655dc5a
Update training page after completing a training
Wuzzy <Wuzzy2@mail.ru>
parents:
14463
diff
changeset
|
796 |
else if (gameType == gtTraining) |
4edcb655dc5a
Update training page after completing a training
Wuzzy <Wuzzy2@mail.ru>
parents:
14463
diff
changeset
|
797 |
{ |
4edcb655dc5a
Update training page after completing a training
Wuzzy <Wuzzy2@mail.ru>
parents:
14463
diff
changeset
|
798 |
emit TrainingStateChanged(1); |
7629 | 799 |
} |
533 | 800 |
} |
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
|
801 |
|
15278
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
802 |
void HWGame::SetDemoPresence(bool hasDemo) |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
803 |
{ |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
804 |
emit DemoPresenceChanged(hasDemo); |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
805 |
} |
16f389fcd462
Prevent saving of demo after /lua command was used
Wuzzy <Wuzzy2@mail.ru>
parents:
14962
diff
changeset
|
806 |
|
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
807 |
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
|
808 |
{ |
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
809 |
QByteArray buf; |
13659
1889e4e95794
Close hwengine properly when you got kicked by room host
Wuzzy <Wuzzy2@mail.ru>
parents:
13628
diff
changeset
|
810 |
HWProto::addStringToBuffer(buf, QString("eforcequit")); |
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
811 |
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
|
812 |
} |
7629 | 813 |
|
7665 | 814 |
void HWGame::sendCampaignVar(const QByteArray &varToSend) |
7629 | 815 |
{ |
9718
563a34cd8398
unbreak various parts of campaign variable loading/saving
sheepluva
parents:
9466
diff
changeset
|
816 |
QString varToFind = QString::fromUtf8(varToSend); |
13284
b504131f7405
Fix team files and settings not saving properly, and remove FileEngine stuff from DLC
Wuzzy <Wuzzy2@mail.ru>
parents:
13078
diff
changeset
|
817 |
QSettings teamfile(QString(cfgdir->absolutePath() + "/Teams/%1.hwt").arg(campaignTeam), QSettings::IniFormat, 0); |
7629 | 818 |
teamfile.setIniCodec("UTF-8"); |
819 |
QString varValue = teamfile.value("Campaign " + campaign + "/" + varToFind, "").toString(); |
|
820 |
QByteArray command; |
|
821 |
HWProto::addStringToBuffer(command, "V." + varValue); |
|
822 |
RawSendIPC(command); |
|
823 |
} |
|
824 |
||
7665 | 825 |
void HWGame::writeCampaignVar(const QByteArray & varVal) |
7629 | 826 |
{ |
7665 | 827 |
int i = varVal.indexOf(" "); |
828 |
if(i < 0) |
|
829 |
return; |
|
830 |
||
831 |
QString varToWrite = QString::fromUtf8(varVal.left(i)); |
|
832 |
QString varValue = QString::fromUtf8(varVal.mid(i + 1)); |
|
7629 | 833 |
|
13284
b504131f7405
Fix team files and settings not saving properly, and remove FileEngine stuff from DLC
Wuzzy <Wuzzy2@mail.ru>
parents:
13078
diff
changeset
|
834 |
QSettings teamfile(QString(cfgdir->absolutePath() + "/Teams/%1.hwt").arg(campaignTeam), QSettings::IniFormat, 0); |
7629 | 835 |
teamfile.setIniCodec("UTF-8"); |
836 |
teamfile.setValue("Campaign " + campaign + "/" + varToWrite, varValue); |
|
837 |
} |
|
838 |
||
14462
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
839 |
void HWGame::sendMissionVar(const QByteArray &varToSend) |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
840 |
{ |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
841 |
QString varToFind = QString::fromUtf8(varToSend); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
842 |
QSettings teamfile(QString(cfgdir->absolutePath() + "/Teams/%1.hwt").arg(trainingTeam), QSettings::IniFormat, 0); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
843 |
teamfile.setIniCodec("UTF-8"); |
14463
bd1db668b7c0
Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents:
14462
diff
changeset
|
844 |
QString varValue = teamfile.value("Mission " + trainingName + "/" + varToFind, "").toString(); |
14462
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
845 |
QByteArray command; |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
846 |
HWProto::addStringToBuffer(command, "v." + varValue); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
847 |
RawSendIPC(command); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
848 |
} |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
849 |
|
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
850 |
void HWGame::writeMissionVar(const QByteArray & varVal) |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
851 |
{ |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
852 |
int i = varVal.indexOf(" "); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
853 |
if(i < 0) |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
854 |
return; |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
855 |
|
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
856 |
QString varToWrite = QString::fromUtf8(varVal.left(i)); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
857 |
QString varValue = QString::fromUtf8(varVal.mid(i + 1)); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
858 |
|
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
859 |
QSettings teamfile(QString(cfgdir->absolutePath() + "/Teams/%1.hwt").arg(trainingTeam), QSettings::IniFormat, 0); |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
860 |
teamfile.setIniCodec("UTF-8"); |
14463
bd1db668b7c0
Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents:
14462
diff
changeset
|
861 |
teamfile.setValue("Mission " + trainingName + "/" + varToWrite, varValue); |
14462
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
862 |
} |
4c743ef80b1b
Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents:
14447
diff
changeset
|
863 |