author | unc0rr |
Fri, 04 Jan 2013 21:44:40 +0400 | |
branch | flibqtfrontend |
changeset 8363 | 0b4ac686fc44 |
parent 8306 | 50fe80adbfcb |
parent 8354 | c25bee85d6f8 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
6952 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <QString> |
|
20 |
#include <QByteArray> |
|
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
21 |
#include <QUuid> |
5201 | 22 |
#include <QColor> |
5289
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5213
diff
changeset
|
23 |
#include <QStringListModel> |
7629 | 24 |
#include <QTextStream> |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
25 |
#include <utility> |
184 | 26 |
|
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
27 |
#include "hwform.h" |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
28 |
#include "ui/page/pageoptions.h" |
184 | 29 |
#include "game.h" |
30 |
#include "hwconsts.h" |
|
31 |
#include "gameuiconfig.h" |
|
32 |
#include "gamecfgwidget.h" |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
33 |
#include "teamselect.h" |
239 | 34 |
#include "proto.h" |
8346 | 35 |
#include "binds.h" |
7629 | 36 |
#include "campaign.h" |
37 |
#include "ThemeModel.h" |
|
8100 | 38 |
#include "frontlibpoller.h" |
706 | 39 |
|
7629 | 40 |
QString training, campaign, campaignScript, campaignTeam; // TODO: Cleaner solution? |
2468
0b62498c201a
openal fix, training map selection and rcplane adjustments from Smaxx (untested, but look reasonable). Bunch of new graphics from Tiy, new translation for pt-pt from inu_
nemo
parents:
2443
diff
changeset
|
41 |
|
681 | 42 |
HWGame::HWGame(GameUIConfig * config, GameCFGWidget * gamecfg, QString ammo, TeamSelWidget* pTeamSelWidget) : |
8100 | 43 |
TCPBase(0) |
44 |
, ammostr(ammo) |
|
45 |
, m_pTeamSelWidget(pTeamSelWidget) |
|
8280 | 46 |
, m_conn(0) |
47 |
, m_poller(0) |
|
184 | 48 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
49 |
this->config = config; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
50 |
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
|
51 |
netSuspend = false; |
184 | 52 |
} |
53 |
||
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
54 |
HWGame::~HWGame() |
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
55 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
56 |
SetGameState(gsDestroyed); |
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
406
diff
changeset
|
57 |
|
8100 | 58 |
if(m_conn) |
59 |
flib_gameconn_destroy(m_conn); |
|
184 | 60 |
} |
61 |
||
8346 | 62 |
void HWGame::addKeyBindings(QByteArray * buf) |
63 |
{ |
|
64 |
for(int i = 0; i < BINDS_NUMBER; i++) |
|
65 |
{ |
|
66 |
QString value = config->value(QString("Binds/%1").arg(cbinds[i].action), cbinds[i].strbind).toString(); |
|
67 |
if (value.isEmpty() || value == "default") continue; |
|
68 |
||
69 |
QString bind = QString("edbind " + value + " " + cbinds[i].action); |
|
70 |
HWProto::addStringToBuffer(*buf, bind); |
|
71 |
} |
|
72 |
} |
|
73 |
||
253 | 74 |
void HWGame::commonConfig() |
184 | 75 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
76 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
77 |
QString gt; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
78 |
switch (gameType) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
79 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
80 |
case gtDemo: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
81 |
gt = "TD"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
82 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
83 |
case gtNet: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
84 |
gt = "TN"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
85 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
86 |
default: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
87 |
gt = "TL"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
88 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
89 |
HWProto::addStringToBuffer(buf, gt); |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
759
diff
changeset
|
90 |
|
8346 | 91 |
addKeyBindings(&buf); |
92 |
||
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4430
diff
changeset
|
93 |
buf += gamecfg->getFullConfig(); |
341 | 94 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
95 |
if (m_pTeamSelWidget) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
96 |
{ |
5772
c09c50efe8b5
Replace iterators with simple declarative foreach (not tested if it works)
unc0rr
parents:
5289
diff
changeset
|
97 |
foreach(HWTeam team, m_pTeamSelWidget->getPlayingTeams()) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
98 |
{ |
3346 | 99 |
HWProto::addStringToBuffer(buf, QString("eammloadt %1").arg(ammostr.mid(0, cAmmoNumber))); |
100 |
HWProto::addStringToBuffer(buf, QString("eammprob %1").arg(ammostr.mid(cAmmoNumber, cAmmoNumber))); |
|
101 |
HWProto::addStringToBuffer(buf, QString("eammdelay %1").arg(ammostr.mid(2 * cAmmoNumber, cAmmoNumber))); |
|
102 |
HWProto::addStringToBuffer(buf, QString("eammreinf %1").arg(ammostr.mid(3 * cAmmoNumber, cAmmoNumber))); |
|
7629 | 103 |
if(gamecfg->schemeData(15).toBool() || !gamecfg->schemeData(21).toBool()) HWProto::addStringToBuffer(buf, QString("eammstore")); |
8103 | 104 |
// HWProto::addStringListToBuffer(buf, |
8363 | 105 |
// team.teamGameConfig(gamecfg->getInitHealth(), config)); |
106 |
; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
107 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
108 |
} |
8363 | 109 |
|
8092 | 110 |
//RawSendIPC(buf); |
253 | 111 |
} |
112 |
||
113 |
void HWGame::SendConfig() |
|
114 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
115 |
commonConfig(); |
184 | 116 |
} |
117 |
||
588 | 118 |
void HWGame::SendTrainingConfig() |
119 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
120 |
QByteArray traincfg; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
121 |
HWProto::addStringToBuffer(traincfg, "TL"); |
7090
63d09a846444
Provide training/campaign with a random seed to ignore/use.
nemo
parents:
6952
diff
changeset
|
122 |
HWProto::addStringToBuffer(traincfg, "eseed " + QUuid::createUuid().toString()); |
3760 | 123 |
HWProto::addStringToBuffer(traincfg, "escript " + training); |
593 | 124 |
|
8346 | 125 |
addKeyBindings(&traincfg); |
126 |
||
8363 | 127 |
//RawSendIPC(traincfg); |
588 | 128 |
} |
129 |
||
3760 | 130 |
void HWGame::SendCampaignConfig() |
131 |
{ |
|
132 |
QByteArray campaigncfg; |
|
133 |
HWProto::addStringToBuffer(campaigncfg, "TL"); |
|
7090
63d09a846444
Provide training/campaign with a random seed to ignore/use.
nemo
parents:
6952
diff
changeset
|
134 |
HWProto::addStringToBuffer(campaigncfg, "eseed " + QUuid::createUuid().toString()); |
3760 | 135 |
|
7629 | 136 |
HWProto::addStringToBuffer(campaigncfg, "escript " + campaignScript); |
3760 | 137 |
|
8346 | 138 |
addKeyBindings(&campaigncfg); |
139 |
||
8363 | 140 |
//RawSendIPC(campaigncfg); |
3760 | 141 |
} |
142 |
||
341 | 143 |
void HWGame::SendNetConfig() |
144 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
145 |
commonConfig(); |
184 | 146 |
} |
8106 | 147 |
/* |
184 | 148 |
void HWGame::ParseMessage(const QByteArray & msg) |
149 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
150 |
switch(msg.at(1)) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
151 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
152 |
case '?': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
153 |
{ |
8092 | 154 |
//SendIPC("!"); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
155 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
156 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
157 |
case 'C': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
158 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
159 |
switch (gameType) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
160 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
161 |
case gtLocal: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
162 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
163 |
SendConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
164 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
165 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
166 |
case gtQLocal: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
167 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
168 |
SendQuickConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
169 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
170 |
} |
5865 | 171 |
case gtSave: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
172 |
case gtDemo: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
173 |
break; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
174 |
case gtNet: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
175 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
176 |
SendNetConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
177 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
178 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
179 |
case gtTraining: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
180 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
181 |
SendTrainingConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
182 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
183 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
184 |
case gtCampaign: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
185 |
{ |
3760 | 186 |
SendCampaignConfig(); |
187 |
break; |
|
188 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
189 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
190 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
191 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
192 |
case 'E': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
193 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
194 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
195 |
emit ErrorMessage(QString("Last two engine messages:\n") + QString().append(msg.mid(2)).left(size - 4)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
196 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
197 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
198 |
case 'i': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
199 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
200 |
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
|
201 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
202 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
203 |
case 'Q': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
204 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
205 |
SetGameState(gsInterrupted); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
206 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
207 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
208 |
case 'q': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
209 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
210 |
SetGameState(gsFinished); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
211 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
212 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
213 |
case 'H': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
214 |
{ |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
215 |
SetGameState(gsHalted); |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
216 |
break; |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4494
diff
changeset
|
217 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
218 |
case 's': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
219 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
220 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
221 |
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
|
222 |
emit SendChat(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
223 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
224 |
HWProto::addStringToBuffer(buf, "s" + HWProto::formatChatMsg(config->netNick(), msgbody) + "\x20\x20"); |
8092 | 225 |
//demo.append(buf); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
226 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
227 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
228 |
case 'b': |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
229 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
230 |
int size = msg.size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
231 |
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
|
232 |
emit SendTeamMessage(msgbody); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
233 |
break; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
234 |
} |
7629 | 235 |
case 'V': |
236 |
{ |
|
237 |
if (msg.at(2) == '?') |
|
238 |
sendCampaignVar(msg.right(msg.size() - 3)); |
|
239 |
else if (msg.at(2) == '!') |
|
240 |
writeCampaignVar(msg.right(msg.size() - 3)); |
|
241 |
break; |
|
242 |
} |
|
8345
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
243 |
case 'W': |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
244 |
{ |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
245 |
// 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
|
246 |
int size = msg.size(); |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
247 |
QString newResolution = QString().append(msg.mid(2)).left(size - 4); |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
248 |
QStringList wh = newResolution.split('x'); |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
249 |
config->Form->ui.pageOptions->windowWidthEdit->setText(wh[0]); |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
250 |
config->Form->ui.pageOptions->windowHeightEdit->setText(wh[1]); |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
251 |
break; |
9d9b498cfb03
Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents:
8325
diff
changeset
|
252 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
253 |
default: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6217
diff
changeset
|
254 |
{ |
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
|
255 |
if (gameType == gtNet && !netSuspend) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
256 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
257 |
emit SendNet(msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
258 |
} |
8092 | 259 |
//demo.append(msg); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
260 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
261 |
} |
8106 | 262 |
}*/ |
184 | 263 |
|
264 |
void HWGame::FromNet(const QByteArray & msg) |
|
265 |
{ |
|
8092 | 266 |
//RawSendIPC(msg); |
184 | 267 |
} |
268 |
||
1356 | 269 |
void HWGame::FromNetChat(const QString & msg) |
270 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
271 |
QByteArray buf; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
272 |
HWProto::addStringToBuffer(buf, 's' + msg + "\x20\x20"); |
8092 | 273 |
//RawSendIPC(buf); |
1356 | 274 |
} |
275 |
||
184 | 276 |
void HWGame::onClientRead() |
8092 | 277 |
{/* |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
278 |
quint8 msglen; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
279 |
quint32 bufsize; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
280 |
while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) && |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
281 |
((msglen = readbuffer.data()[0]) < bufsize)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
282 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
283 |
QByteArray msg = readbuffer.left(msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
284 |
readbuffer.remove(0, msglen + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
285 |
ParseMessage(msg); |
8092 | 286 |
}*/ |
184 | 287 |
} |
288 |
||
5213
a86768368309
make the associate button use the user's settings for loading demos/saves
nemo
parents:
5201
diff
changeset
|
289 |
QStringList HWGame::getArguments() |
184 | 290 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
291 |
QStringList arguments; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
292 |
std::pair<QRect, QRect> resolutions = config->vid_ResolutionPair(); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
293 |
QString nick = config->netNick().toUtf8().toBase64(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
294 |
|
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
295 |
arguments << "--internal"; //Must be passed as first argument |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
296 |
arguments << "--port"; |
8100 | 297 |
arguments << QString::number(flib_gameconn_getport(m_conn)); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
298 |
arguments << "--prefix"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
299 |
arguments << datadir->absolutePath(); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
300 |
arguments << "--user-prefix"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
301 |
arguments << cfgdir->absolutePath(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
302 |
arguments << "--locale"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
303 |
arguments << tr("en.txt"); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
304 |
arguments << "--frame-interval"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
305 |
arguments << QString::number(config->timerInterval()); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
306 |
arguments << "--volume"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
307 |
arguments << QString::number(config->volume()); |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
308 |
arguments << "--fullscreen-width"; |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
309 |
arguments << QString::number(resolutions.first.width()); |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
310 |
arguments << "--fullscreen-height"; |
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
311 |
arguments << QString::number(resolutions.first.height()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
312 |
arguments << "--width"; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
313 |
arguments << QString::number(resolutions.second.width()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
314 |
arguments << "--height"; |
8354
c25bee85d6f8
Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
315 |
arguments << QString::number(resolutions.second.height()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
316 |
arguments << "--raw-quality"; |
3708
64e059b6f9c5
applied from experimental3D, use a slider to set up quality
koda
parents:
3695
diff
changeset
|
317 |
arguments << QString::number(config->translateQuality()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
318 |
arguments << "--stereo"; |
3696 | 319 |
arguments << QString::number(config->stereoMode()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
320 |
if (config->vid_Fullscreen()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
321 |
arguments << "--fullscreen"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
322 |
if (config->isShowFPSEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
323 |
arguments << "--showfps"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
324 |
if (config->isAltDamageEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
325 |
arguments << "--altdmg"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
326 |
if (!config->isSoundEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
327 |
arguments << "--nosound"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
328 |
if (!config->isMusicEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
329 |
arguments << "--nomusic"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
330 |
if (!nick.isEmpty()) { |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
331 |
arguments << "--nick"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
332 |
arguments << nick; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
333 |
} |
3709 | 334 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
335 |
return arguments; |
184 | 336 |
} |
337 |
||
5865 | 338 |
void HWGame::PlayDemo(const QString & demofilename, bool isSave) |
184 | 339 |
{ |
5865 | 340 |
gameType = isSave ? gtSave : gtDemo; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
341 |
QFile demofile(demofilename); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
342 |
if (!demofile.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
343 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
344 |
emit ErrorMessage(tr("Cannot open demofile %1").arg(demofilename)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
345 |
return ; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
346 |
} |
184 | 347 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
348 |
// read demo |
8092 | 349 |
//toSendBuf = demofile.readAll(); |
184 | 350 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
351 |
// run engine |
8092 | 352 |
//demo.clear(); |
353 |
start(false); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
354 |
SetGameState(gsStarted); |
184 | 355 |
} |
356 |
||
357 |
void HWGame::StartNet() |
|
358 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
359 |
gameType = gtNet; |
8092 | 360 |
//demo.clear(); |
361 |
start(false); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
362 |
SetGameState(gsStarted); |
184 | 363 |
} |
364 |
||
365 |
void HWGame::StartLocal() |
|
366 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
367 |
gameType = gtLocal; |
8092 | 368 |
//demo.clear(); |
369 |
start(false); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
370 |
SetGameState(gsStarted); |
184 | 371 |
} |
372 |
||
373 |
void HWGame::StartQuick() |
|
374 |
{ |
|
8100 | 375 |
ThemeModel * themeModel = DataManager::instance().themeModel(); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
376 |
gameType = gtQLocal; |
8106 | 377 |
|
8100 | 378 |
flib_gamesetup gameSetup; |
379 |
gameSetup.style = NULL; |
|
380 |
gameSetup.gamescheme = flib_scheme_create("Default"); |
|
381 |
gameSetup.map = flib_map_create_regular( |
|
8133 | 382 |
QUuid::createUuid().toString().toAscii().constData() |
8100 | 383 |
, themeModel->rowCount() > 0 ? themeModel->index(rand() % themeModel->rowCount()).data().toString().toUtf8().constData() : "Sheep" |
8130 | 384 |
, 2); |
8100 | 385 |
gameSetup.teamlist = flib_teamlist_create(); |
386 |
||
8128 | 387 |
// add teams |
388 |
HWTeam team1; |
|
389 |
team1.setDifficulty(0); |
|
390 |
team1.setColor(0); |
|
391 |
team1.setNumHedgehogs(4); |
|
392 |
HWNamegen::teamRandomNames(team1, true); |
|
8106 | 393 |
|
8128 | 394 |
HWTeam team2; |
395 |
team2.setDifficulty(4); |
|
396 |
team2.setColor(1); |
|
397 |
team2.setNumHedgehogs(4); |
|
398 |
do |
|
399 |
HWNamegen::teamRandomNames(team2,true); |
|
400 |
while(!team2.name().compare(team1.name()) || !team2.hedgehogHat(0).compare(team1.hedgehogHat(0))); |
|
8106 | 401 |
|
8128 | 402 |
QList<flib_team *> teams; |
403 |
teams << team1.toFlibTeam() << team2.toFlibTeam(); |
|
404 |
||
405 |
for(int i = 0; i < 2; ++i) |
|
406 |
{ |
|
407 |
flib_team *team = teams[i]; |
|
408 |
team->hogsInGame = 4; |
|
409 |
team->remoteDriven = false; |
|
410 |
for(int h = 0; h < HEDGEHOGS_PER_TEAM; ++h) |
|
8130 | 411 |
{ |
412 |
team->hogs[h].weaponset = flib_weaponset_create("Default"); |
|
413 |
team->hogs[h].initialHealth = 100; |
|
414 |
} |
|
8128 | 415 |
flib_teamlist_insert(gameSetup.teamlist, team, 0); |
8106 | 416 |
} |
417 |
||
8128 | 418 |
|
8100 | 419 |
m_conn = flib_gameconn_create(config->netNick().toUtf8().constData(), &gameSetup, false); |
420 |
||
8106 | 421 |
flib_teamlist_destroy(gameSetup.teamlist); |
422 |
flib_map_destroy(gameSetup.map); |
|
423 |
flib_scheme_destroy(gameSetup.gamescheme); |
|
424 |
||
8092 | 425 |
start(false); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
426 |
SetGameState(gsStarted); |
184 | 427 |
} |
533 | 428 |
|
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
|
429 |
void HWGame::StartTraining(const QString & file) |
587 | 430 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
431 |
gameType = gtTraining; |
3919 | 432 |
training = "Missions/Training/" + file + ".lua"; |
8092 | 433 |
//demo.clear(); |
434 |
start(false); |
|
3760 | 435 |
SetGameState(gsStarted); |
436 |
} |
|
437 |
||
7629 | 438 |
void HWGame::StartCampaign(const QString & camp, const QString & campScript, const QString & campTeam) |
3760 | 439 |
{ |
440 |
gameType = gtCampaign; |
|
7629 | 441 |
campaign = camp; |
442 |
campaignScript = "Missions/Campaign/" + camp + "/" + campScript; |
|
443 |
campaignTeam = campTeam; |
|
8092 | 444 |
//demo.clear(); |
445 |
start(false); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
446 |
SetGameState(gsStarted); |
587 | 447 |
} |
448 |
||
533 | 449 |
void HWGame::SetGameState(GameState state) |
450 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
451 |
gameState = state; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2786
diff
changeset
|
452 |
emit GameStateChanged(state); |
7629 | 453 |
if (gameType == gtCampaign) |
454 |
{ |
|
8210 | 455 |
emit campStateChanged(1); |
7629 | 456 |
} |
533 | 457 |
} |
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
|
458 |
|
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
459 |
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
|
460 |
{ |
6211
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
461 |
QByteArray buf; |
ee9465c0ea82
move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents:
6024
diff
changeset
|
462 |
HWProto::addStringToBuffer(buf, QString("efinish")); |
8092 | 463 |
//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
|
464 |
} |
7629 | 465 |
|
7665 | 466 |
void HWGame::sendCampaignVar(const QByteArray &varToSend) |
7629 | 467 |
{ |
468 |
QString varToFind(varToSend); |
|
8306 | 469 |
QSettings teamfile("/Teams/" + campaignTeam + ".hwt", QSettings::IniFormat, 0); |
7629 | 470 |
teamfile.setIniCodec("UTF-8"); |
471 |
QString varValue = teamfile.value("Campaign " + campaign + "/" + varToFind, "").toString(); |
|
472 |
QByteArray command; |
|
473 |
HWProto::addStringToBuffer(command, "V." + varValue); |
|
8092 | 474 |
//RawSendIPC(command); |
7629 | 475 |
} |
476 |
||
7665 | 477 |
void HWGame::writeCampaignVar(const QByteArray & varVal) |
7629 | 478 |
{ |
7665 | 479 |
int i = varVal.indexOf(" "); |
480 |
if(i < 0) |
|
481 |
return; |
|
482 |
||
483 |
QString varToWrite = QString::fromUtf8(varVal.left(i)); |
|
484 |
QString varValue = QString::fromUtf8(varVal.mid(i + 1)); |
|
7629 | 485 |
|
8306 | 486 |
QSettings teamfile("/Teams/" + campaignTeam + ".hwt", QSettings::IniFormat, 0); |
7629 | 487 |
teamfile.setIniCodec("UTF-8"); |
488 |
teamfile.setValue("Campaign " + campaign + "/" + varToWrite, varValue); |
|
489 |
} |
|
490 |
||
8210 | 491 |
|
8276 | 492 |
void HWGame::onChat(void* context, const char *msg, bool teamchat) |
8210 | 493 |
{ |
494 |
HWGame * game = (HWGame *) context; |
|
8282 | 495 |
|
496 |
if(teamchat) |
|
497 |
emit game->SendTeamMessage(QString::fromUtf8(msg)); |
|
498 |
else |
|
499 |
emit game->SendChat(QString::fromUtf8(msg)); |
|
8210 | 500 |
} |
501 |
||
8276 | 502 |
void HWGame::onConnect(void* context) |
8210 | 503 |
{ |
504 |
HWGame * game = (HWGame *) context; |
|
505 |
} |
|
506 |
||
8276 | 507 |
void HWGame::onDisconnect(void* context, int reason) |
8210 | 508 |
{ |
509 |
HWGame * game = (HWGame *) context; |
|
510 |
/* |
|
511 |
switch (gameType) |
|
512 |
{ |
|
513 |
case gtDemo: |
|
514 |
// for video recording we need demo anyway |
|
515 |
emit HaveRecord(rtNeither, demo); |
|
516 |
break; |
|
517 |
case gtNet: |
|
518 |
emit HaveRecord(rtDemo, demo); |
|
519 |
break; |
|
520 |
default: |
|
521 |
if (gameState == gsInterrupted || gameState == gsHalted) |
|
522 |
emit HaveRecord(rtSave, demo); |
|
523 |
else if (gameState == gsFinished) |
|
524 |
emit HaveRecord(rtDemo, demo); |
|
525 |
else |
|
526 |
emit HaveRecord(rtNeither, demo); |
|
527 |
}*/ |
|
8280 | 528 |
|
8210 | 529 |
game->SetGameState(gsStopped); |
8304 | 530 |
game->clientDisconnected(); |
8280 | 531 |
|
532 |
delete game->m_poller; |
|
8210 | 533 |
} |
534 |
||
8276 | 535 |
void HWGame::onEngineMessage(void *context, const uint8_t *em, size_t size) |
8210 | 536 |
{ |
537 |
HWGame * game = (HWGame *) context; |
|
538 |
} |
|
539 |
||
8276 | 540 |
void HWGame::onErrorMessage(void* context, const char *msg) |
8210 | 541 |
{ |
542 |
HWGame * game = (HWGame *) context; |
|
8282 | 543 |
|
544 |
emit game->ErrorMessage(QString("Last two engine messages:\n%1").arg(QString::fromUtf8(msg))); |
|
8210 | 545 |
} |
546 |
||
8276 | 547 |
void HWGame::onGameRecorded(void *context, const uint8_t *record, size_t size, bool isSavegame) |
8210 | 548 |
{ |
549 |
HWGame * game = (HWGame *) context; |
|
550 |
} |
|
551 |
||
8092 | 552 |
void HWGame::onEngineStart() |
553 |
{ |
|
8210 | 554 |
flib_gameconn_onChat(m_conn, onChat, this); |
555 |
flib_gameconn_onConnect(m_conn, onConnect, this); |
|
556 |
flib_gameconn_onDisconnect(m_conn, onDisconnect, this); |
|
557 |
flib_gameconn_onEngineMessage(m_conn, onEngineMessage, this); |
|
558 |
flib_gameconn_onErrorMessage(m_conn, onErrorMessage, this); |
|
559 |
flib_gameconn_onGameRecorded(m_conn, onGameRecorded, this); |
|
560 |
||
8280 | 561 |
m_poller = new FrontLibPoller((void (*)(void *))flib_gameconn_tick, m_conn, this); |
8092 | 562 |
} |