QTfrontend/game.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 15 May 2019 19:43:53 +0200
changeset 14962 da7eb3414e02
parent 14961 575dbd7b5f43
child 15278 16f389fcd462
permissions -rw-r--r--
Quick games: Add rare "floating flowers" map type
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 949
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10851
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     4
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     8
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    12
 * GNU General Public License for more details.
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    13
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 */
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    21
#include <QString>
9249
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
    22
#include <QCheckBox>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
7b9aa7aac336 * moved colours and default port from .cpp.in to .h
koda
parents: 5140
diff changeset
    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
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    34
#include "game.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    35
#include "hwconsts.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    36
#include "gameuiconfig.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
f9adf3c73bed 'Proto' class to make things easier
unc0rr
parents: 228
diff changeset
    39
#include "proto.h"
8346
3443e0de2c9d GCI2012: Advanced Keyboard Configuration
dag10
parents: 8325
diff changeset
    40
#include "binds.h"
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
    41
#include "campaign.h"
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    42
706
9e973b057a52 missing header fix
displacer
parents: 686
diff changeset
    43
#include <QTextStream>
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
    44
#include "ThemeModel.h"
706
9e973b057a52 missing header fix
displacer
parents: 686
diff changeset
    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
7a20c50988ec working weapons select
displacer
parents: 673
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
7b9b44a051f8 Fix some of issues found by coverity
unc0rr
parents: 10108
diff changeset
    67
7b9b44a051f8 Fix some of issues found by coverity
unc0rr
parents: 10108
diff changeset
    68
    gameState = gsNotStarted;
7b9b44a051f8 Fix some of issues found by coverity
unc0rr
parents: 10108
diff changeset
    69
    gameType = gtNone;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    70
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    77
void HWGame::onClientDisconnect()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    78
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
    79
    switch (gameType)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
    80
    {
5865
35387d27f73a Save demo when loaded from save game finishes
unc0rr
parents: 5781
diff changeset
    81
        case gtDemo:
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8354
diff changeset
    82
            // for video recording we need demo anyway
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7130
diff changeset
    83
            emit HaveRecord(rtNeither, demo);
5781
1fa54e5ea479 Don't refuse to create save file when a game loaded from save interrupts
unc0rr
parents: 5772
diff changeset
    84
            break;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    85
        case gtNet:
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7130
diff changeset
    86
            emit HaveRecord(rtDemo, demo);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    87
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    88
        default:
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7130
diff changeset
    89
            if (gameState == gsInterrupted || gameState == gsHalted)
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7130
diff changeset
    90
                emit HaveRecord(rtSave, demo);
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7130
diff changeset
    91
            else if (gameState == gsFinished)
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7130
diff changeset
    92
                emit HaveRecord(rtDemo, demo);
7280
fd707afbc3a2 pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents: 7278
diff changeset
    93
            else
fd707afbc3a2 pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents: 7278
diff changeset
    94
                emit HaveRecord(rtNeither, demo);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    95
    }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    96
    SetGameState(gsStopped);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    97
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    98
253
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
    99
void HWGame::commonConfig()
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   100
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   101
    QByteArray buf;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   102
    QString gt;
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   103
    switch (gameType)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   104
    {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   105
        case gtDemo:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   106
            gt = "TD";
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   107
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   108
        case gtNet:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   109
            gt = "TN";
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   110
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   111
        default:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   112
            gt = "TL";
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   113
    }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   114
    HWProto::addStringToBuffer(buf, gt);
788
00720357601f - Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents: 759
diff changeset
   115
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4430
diff changeset
   116
    buf += gamecfg->getFullConfig();
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   117
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   118
    if (m_pTeamSelWidget)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   119
    {
5772
c09c50efe8b5 Replace iterators with simple declarative foreach (not tested if it works)
unc0rr
parents: 5289
diff changeset
   120
        foreach(HWTeam team, m_pTeamSelWidget->getPlayingTeams())
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   121
        {
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   122
            HWProto::addStringToBuffer(buf, QString("eammloadt %1").arg(ammostr.mid(0, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   123
            HWProto::addStringToBuffer(buf, QString("eammprob %1").arg(ammostr.mid(cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   124
            HWProto::addStringToBuffer(buf, QString("eammdelay %1").arg(ammostr.mid(2 * cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   125
            HWProto::addStringToBuffer(buf, QString("eammreinf %1").arg(ammostr.mid(3 * cAmmoNumber, cAmmoNumber)));
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   126
            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
   127
            HWProto::addStringListToBuffer(buf,
9466
8b48c27201af - Load default binds from settings.ini
unc0rr
parents: 9249
diff changeset
   128
                                           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
   129
            ;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   130
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   131
    }
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8354
diff changeset
   132
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   133
    RawSendIPC(buf);
253
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
   134
}
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
   135
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
   136
void HWGame::SendConfig()
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
   137
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   138
    commonConfig();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   139
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   140
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   141
void HWGame::SendQuickConfig()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   142
{
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   143
    /* 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
   144
    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
   145
    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
   146
    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
   147
    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
   148
    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
   149
    are completely random. */
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   150
    int exp = config->quickGameExperience();
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   151
    if(exp < 20)
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   152
    {
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   153
       config->setQuickGameExperience(exp + 1);
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   154
    }
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   155
    qDebug("Starting quick game ...");
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   156
    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
   157
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   158
    // Init stuff
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   159
    QByteArray teamscfg;
13313
93780a3b846a Quick Game: ignore hidden themes
sheepluva
parents: 13311
diff changeset
   160
    QAbstractItemModel * themeModel = DataManager::instance().themeModel()->withoutHidden();
239
f9adf3c73bed 'Proto' class to make things easier
unc0rr
parents: 228
diff changeset
   161
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   162
    HWProto::addStringToBuffer(teamscfg, "TL");
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   163
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   164
    // Random seed
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   165
    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
   166
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   167
    int r, minhogs, maxhogs;
7713
3833741d8752 Always run simple game on medium maps
unc0rr
parents: 7665
diff changeset
   168
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   169
    // Random map type
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   170
    r = rand() % 10000;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   171
    if(r < 3000) { // 30%
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   172
        // Random
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   173
        r = 0;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   174
    } 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
   175
        // Maze
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   176
        if(exp <= 3)
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   177
            r = 0;
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   178
        else
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   179
            r = 1;
14962
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   180
    } 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
   181
        // Perlin
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   182
        if(exp <= 7)
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   183
            r = 1;
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   184
        else
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   185
            r = 2;
14962
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   186
    } 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
   187
        // Floating Flowers (just for fun)
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   188
        r = 5;
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   189
    } 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
   190
        // Image map
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   191
        r = 3;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   192
    } else { // 12.5%
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   193
        // Forts
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   194
        r = 4;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   195
    }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   196
    switch(r)
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   197
    {
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   198
        // Random map
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   199
        default:
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   200
        case 0: {
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   201
            r = rand() % 3;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   202
            if(r == 0)
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   203
            {
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   204
                // small island
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   205
                HWProto::addStringToBuffer(teamscfg, "e$template_filter 1");
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   206
                minhogs = 3;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   207
                maxhogs = 4;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   208
            }
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   209
            else if(r == 1 || exp <= 6)
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   210
            {
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   211
                // medium island
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   212
                HWProto::addStringToBuffer(teamscfg, "e$template_filter 2");
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   213
                minhogs = 4;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   214
                maxhogs = 5;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   215
            }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   216
            else
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   217
            {
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   218
                // cave (locked at low experience because these maps can be huge)
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   219
                HWProto::addStringToBuffer(teamscfg, "e$template_filter 4");
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   220
                minhogs = 4;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   221
                maxhogs = 6;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   222
            }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   223
            HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%18+4));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   224
            break;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   225
        }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   226
        // Maze
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   227
        case 1: {
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   228
            minhogs = 4;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   229
            maxhogs = 6;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   230
            HWProto::addStringToBuffer(teamscfg, "e$mapgen 1");
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   231
            HWProto::addStringToBuffer(teamscfg, "e$template_filter "+QString::number(rand()%6));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   232
            HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%16+6));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   233
            break;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   234
        }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   235
        // Perlin
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   236
        case 2: {
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   237
            minhogs = 4;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   238
            maxhogs = 6;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   239
            HWProto::addStringToBuffer(teamscfg, "e$mapgen 2");
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   240
            HWProto::addStringToBuffer(teamscfg, "e$template_filter "+QString::number(rand()%6));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   241
            HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%18+4));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   242
            break;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   243
        }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   244
        // Image map
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   245
        case 3: {
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   246
            minhogs = 4;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   247
            maxhogs = 6;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   248
            HWProto::addStringToBuffer(teamscfg, "e$mapgen 3");
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   249
            // Select map from hardcoded list.
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   250
            // TODO: find a more dynamic solution.
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   251
            r = rand() % cQuickGameMaps.count();
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   252
            HWProto::addStringToBuffer(teamscfg, "e$map " + cQuickGameMaps[r]);
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   253
            break;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   254
        }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   255
        // Forts
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   256
        case 4: {
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   257
            minhogs = 4;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   258
            maxhogs = 6;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   259
            HWProto::addStringToBuffer(teamscfg, "e$mapgen 4");
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   260
            HWProto::addStringToBuffer(teamscfg, "e$feature_size "+QString::number(rand()%20+1));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   261
            break;
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   262
        }
14962
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   263
        // Floating Flowers
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   264
        // (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
   265
        // something for hogs to stand on)
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   266
        case 5: {
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   267
            minhogs = 4;
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   268
            maxhogs = 8;
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   269
            HWProto::addStringToBuffer(teamscfg, "e$mapgen 3");
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   270
            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
   271
            break;
da7eb3414e02 Quick games: Add rare "floating flowers" map type
Wuzzy <Wuzzy2@mail.ru>
parents: 14961
diff changeset
   272
        }
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   273
    }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   274
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   275
    // Theme
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   276
    HWProto::addStringToBuffer(teamscfg, QString("etheme %1")
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   277
        .arg((themeModel->rowCount() > 0) ? themeModel->index(rand() % themeModel->rowCount(), 0).data(ThemeModel::ActualNameRole).toString() : "Nature"));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   278
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   279
    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
   280
    // 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
   281
    if((exp <= 8) && (hogs > 5))
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   282
        hogs = 5;
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   283
    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
   284
        hogs = 4;
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   285
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   286
    // Teams
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   287
    // 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
   288
    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
   289
    team1.setDifficulty(0);
7130
fcab1fd02bc6 - Allow switching colors with mouse wheel
unc0rr
parents: 7090
diff changeset
   290
    team1.setColor(0);
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   291
    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
   292
    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
   293
    team1.setVoicepack("Default_qau");
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents: 1904
diff changeset
   294
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   295
    // 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
   296
    HWTeam team2;
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   297
    // Random difficulty.
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   298
    // 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
   299
    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
   300
        r = 5 - rand() % 5;
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   301
    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
   302
        r = 5 - rand() % 4;
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   303
    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
   304
        r = 5 - rand() % 3;
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   305
    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
   306
        r = 5 - rand() % 2;
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   307
    else // very easy
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   308
        r = 5;
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   309
    team2.setDifficulty(r);
7130
fcab1fd02bc6 - Allow switching colors with mouse wheel
unc0rr
parents: 7090
diff changeset
   310
    team2.setColor(1);
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   311
    team2.setNumHedgehogs(hogs);
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   312
    // 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
   313
    do
12505
82c75a317d48 Randomized teams now can have any random hats (not just from types.ini)
Wuzzy <almikes@aol.com>
parents: 12474
diff changeset
   314
        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
   315
    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
   316
    team2.setVoicepack("Default_qau");
607
26a91a9f5514 Now trainings can have custom ammostore
unc0rr
parents: 604
diff changeset
   317
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   318
    // Team play order
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   319
    r = rand() % 2;
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   320
    if(r == 0 || exp <= 4) // player plays first
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   321
    {
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   322
        HWProto::addStringListToBuffer(teamscfg, team1.teamGameConfig(100));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   323
        HWProto::addStringListToBuffer(teamscfg, team2.teamGameConfig(100));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   324
    }
14961
575dbd7b5f43 Quick games: Cap max. difficulty for the first 15 games
Wuzzy <Wuzzy2@mail.ru>
parents: 14954
diff changeset
   325
    else // computer plays first
14954
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   326
    {
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   327
        HWProto::addStringListToBuffer(teamscfg, team2.teamGameConfig(100));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   328
        HWProto::addStringListToBuffer(teamscfg, team1.teamGameConfig(100));
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   329
    }
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   330
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   331
    // Ammo scheme "Default"
f59b7f5cf6e8 Quick games are more random
Wuzzy <Wuzzy2@mail.ru>
parents: 14931
diff changeset
   332
    // TODO: Random schemes
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   333
    HWProto::addStringToBuffer(teamscfg, QString("eammloadt %1").arg(cDefaultAmmoStore->mid(0, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   334
    HWProto::addStringToBuffer(teamscfg, QString("eammprob %1").arg(cDefaultAmmoStore->mid(cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   335
    HWProto::addStringToBuffer(teamscfg, QString("eammdelay %1").arg(cDefaultAmmoStore->mid(2 * cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   336
    HWProto::addStringToBuffer(teamscfg, QString("eammreinf %1").arg(cDefaultAmmoStore->mid(3 * cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   337
    HWProto::addStringToBuffer(teamscfg, QString("eammstore"));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   338
    HWProto::addStringToBuffer(teamscfg, QString("eammstore"));
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8354
diff changeset
   339
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   340
    RawSendIPC(teamscfg);
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   341
}
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   342
588
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   343
void HWGame::SendTrainingConfig()
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   344
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   345
    QByteArray traincfg;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   346
    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
   347
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14467
diff changeset
   348
    HWTeam missionTeam = HWTeam();
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14467
diff changeset
   349
    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
   350
    missionTeam.loadFromFile();
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14467
diff changeset
   351
    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
   352
    missionTeam.setMissionTeam(true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14467
diff changeset
   353
    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
   354
7090
63d09a846444 Provide training/campaign with a random seed to ignore/use.
nemo
parents: 6952
diff changeset
   355
    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
   356
    HWProto::addStringToBuffer(traincfg, "escript " + trainingScript);
593
1f5e66379a43 Triggers proof-of-concept
unc0rr
parents: 588
diff changeset
   357
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   358
    RawSendIPC(traincfg);
588
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   359
}
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   360
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   361
void HWGame::SendCampaignConfig()
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   362
{
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   363
    QByteArray campaigncfg;
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   364
    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
   365
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14467
diff changeset
   366
    HWTeam missionTeam = HWTeam();
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14467
diff changeset
   367
    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
   368
    missionTeam.loadFromFile();
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14467
diff changeset
   369
    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
   370
    missionTeam.setMissionTeam(true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14467
diff changeset
   371
    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
   372
7090
63d09a846444 Provide training/campaign with a random seed to ignore/use.
nemo
parents: 6952
diff changeset
   373
    HWProto::addStringToBuffer(campaigncfg, "eseed " + QUuid::createUuid().toString());
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   374
    HWProto::addStringToBuffer(campaigncfg, "escript " + campaignScript);
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   375
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   376
    RawSendIPC(campaigncfg);
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   377
}
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   378
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   379
void HWGame::SendNetConfig()
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   380
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   381
    commonConfig();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   382
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   383
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   384
void HWGame::ParseMessage(const QByteArray & msg)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   385
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   386
    switch(msg.at(1))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   387
    {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   388
        case '?':
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   389
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   390
            SendIPC("!");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   391
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   392
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   393
        case 'C':
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
            switch (gameType)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   396
            {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   397
                case gtLocal:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   398
                {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   399
                    SendConfig();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   400
                    break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   401
                }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   402
                case gtQLocal:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   403
                {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   404
                    SendQuickConfig();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   405
                    break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   406
                }
8901
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   407
                case gtNone:
5865
35387d27f73a Save demo when loaded from save game finishes
unc0rr
parents: 5781
diff changeset
   408
                case gtSave:
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   409
                case gtDemo:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   410
                    break;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   411
                case gtNet:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   412
                {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   413
                    SendNetConfig();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   414
                    break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   415
                }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   416
                case gtTraining:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   417
                {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   418
                    SendTrainingConfig();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   419
                    break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   420
                }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   421
                case gtCampaign:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   422
                {
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   423
                    SendCampaignConfig();
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   424
                    break;
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   425
                }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   426
            }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   427
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   428
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   429
        case 'E':
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   430
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   431
            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
   432
            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
   433
                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
   434
                "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
   435
                "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
   436
                "Last engine message:\n%1")
10310
22f541fbde32 Revert all recent sheepluva's work
unc0rr
parents: 10307
diff changeset
   437
                .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
   438
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   439
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   440
        case 'i':
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   441
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   442
            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
   443
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   444
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   445
        case 'Q':
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   446
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   447
            SetGameState(gsInterrupted);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   448
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   449
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   450
        case 'q':
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   451
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   452
            SetGameState(gsFinished);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   453
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   454
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   455
        case 'H':
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   456
        {
4746
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4494
diff changeset
   457
            SetGameState(gsHalted);
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4494
diff changeset
   458
            break;
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4494
diff changeset
   459
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   460
        case 's':
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   461
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   462
            int size = msg.size();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   463
            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
   464
            emit SendChat(msgbody);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   465
            QByteArray buf;
14447
b444f100a625 Backed out changeset f791c46b47a4
Wuzzy <Wuzzy2@mail.ru>
parents: 13970
diff changeset
   466
            HWProto::addStringToBuffer(buf, "s" + HWProto::formatChatMsg(config->netNick(), msgbody) + "\x20\x20");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   467
            demo.append(buf);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   468
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   469
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   470
        case 'b':
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   471
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   472
            int size = msg.size();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   473
            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
   474
            emit SendTeamMessage(msgbody);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   475
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   476
        }
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   477
        case 'V':
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   478
        {
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   479
            if (msg.at(2) == '?')
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   480
                sendCampaignVar(msg.right(msg.size() - 3));
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   481
            else if (msg.at(2) == '!')
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   482
                writeCampaignVar(msg.right(msg.size() - 3));
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   483
            break;
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   484
        }
14462
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   485
        case 'v':
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   486
        {
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   487
            if (msg.at(2) == '?')
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   488
                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
   489
            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
   490
                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
   491
            break;
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   492
        }
8345
9d9b498cfb03 Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents: 8325
diff changeset
   493
        case 'W':
9d9b498cfb03 Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents: 8325
diff changeset
   494
        {
9d9b498cfb03 Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents: 8325
diff changeset
   495
            // 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
   496
            int size = msg.size();
9d9b498cfb03 Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents: 8325
diff changeset
   497
            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
   498
            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
   499
            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
   500
            config->Form->ui.pageOptions->windowHeightEdit->setValue(wh[1].toInt());
8345
9d9b498cfb03 Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents: 8325
diff changeset
   501
            break;
9d9b498cfb03 Preserve windowed resolution after manual resize
vitiv <nikita.utiu@gmail.com>
parents: 8325
diff changeset
   502
        }
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10310
diff changeset
   503
        case '~':
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10310
diff changeset
   504
        {
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10310
diff changeset
   505
            int size = msg.size();
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10310
diff changeset
   506
            QString msgbody = QString::fromUtf8(msg.mid(2).left(size - 4));
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10310
diff changeset
   507
            emit SendConsoleCommand(msgbody);
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10310
diff changeset
   508
            break;
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10310
diff changeset
   509
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   510
        default:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6217
diff changeset
   511
        {
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
   512
            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
   513
                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
   514
7152
f49254ddfc67 Removed dead/deprecated code and comments
Medo <smaxein@googlemail.com>
parents: 7130
diff changeset
   515
            demo.append(msg);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   516
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   517
    }
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   518
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   519
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   520
void HWGame::FromNet(const QByteArray & msg)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   521
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   522
    RawSendIPC(msg);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   523
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   524
1356
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1277
diff changeset
   525
void HWGame::FromNetChat(const QString & msg)
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1277
diff changeset
   526
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   527
    QByteArray buf;
14447
b444f100a625 Backed out changeset f791c46b47a4
Wuzzy <Wuzzy2@mail.ru>
parents: 13970
diff changeset
   528
    HWProto::addStringToBuffer(buf, 's' + msg + "\x20\x20");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   529
    RawSendIPC(buf);
1356
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1277
diff changeset
   530
}
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1277
diff changeset
   531
13823
d012948b1eda Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13659
diff changeset
   532
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
   533
{
d012948b1eda Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13659
diff changeset
   534
    QByteArray buf;
14447
b444f100a625 Backed out changeset f791c46b47a4
Wuzzy <Wuzzy2@mail.ru>
parents: 13970
diff changeset
   535
    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
   536
    RawSendIPC(buf);
d012948b1eda Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13659
diff changeset
   537
}
d012948b1eda Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13659
diff changeset
   538
d012948b1eda Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13659
diff changeset
   539
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
   540
{
d012948b1eda Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13659
diff changeset
   541
    QByteArray buf;
14447
b444f100a625 Backed out changeset f791c46b47a4
Wuzzy <Wuzzy2@mail.ru>
parents: 13970
diff changeset
   542
    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
   543
    RawSendIPC(buf);
d012948b1eda Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13659
diff changeset
   544
}
d012948b1eda Make frontend forward server error and warning messages to engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13659
diff changeset
   545
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   546
void HWGame::onClientRead()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   547
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   548
    quint8 msglen;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   549
    quint32 bufsize;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   550
    while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) &&
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   551
            ((msglen = readbuffer.data()[0]) < bufsize))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   552
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   553
        QByteArray msg = readbuffer.left(msglen + 1);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   554
        readbuffer.remove(0, msglen + 1);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   555
        ParseMessage(msg);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   556
    }
8924
13ac59499066 update 0.9.19 with dev branch
koda
parents: 8902 8901
diff changeset
   557
8472
da6b569ac930 - Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents: 8434
diff changeset
   558
    flushNetBuffer();
da6b569ac930 - Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents: 8434
diff changeset
   559
}
da6b569ac930 - Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents: 8434
diff changeset
   560
da6b569ac930 - Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents: 8434
diff changeset
   561
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
   562
{
da6b569ac930 - Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents: 8434
diff changeset
   563
    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
   564
    {
da6b569ac930 - Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents: 8434
diff changeset
   565
        emit SendNet(m_netSendBuffer);
8924
13ac59499066 update 0.9.19 with dev branch
koda
parents: 8902 8901
diff changeset
   566
8629
76a265f3967c Fix team file path
unc0rr
parents: 8472
diff changeset
   567
        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
   568
    }
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   569
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   570
5213
a86768368309 make the associate button use the user's settings for loading demos/saves
nemo
parents: 5201
diff changeset
   571
QStringList HWGame::getArguments()
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   572
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   573
    QStringList arguments;
8354
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8350
diff changeset
   574
    std::pair<QRect, QRect> resolutions = config->vid_ResolutionPair();
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   575
    QString nick = config->netNick().toUtf8().toBase64();
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   576
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   577
    arguments << "--internal"; //Must be passed as first argument
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   578
    arguments << "--port";
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   579
    arguments << QString("%1").arg(ipc_port);
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   580
    arguments << "--prefix";
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   581
    arguments << datadir->absolutePath();
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   582
    arguments << "--user-prefix";
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   583
    arguments << cfgdir->absolutePath();
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   584
    arguments << "--locale";
12474
42da9d8d82ab Provide translator context for a few less obvious engine strings
Wuzzy <almikes@aol.com>
parents: 12248
diff changeset
   585
    // 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
   586
    //: 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
   587
    arguments << tr("en.txt");
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   588
    arguments << "--frame-interval";
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   589
    arguments << QString::number(config->timerInterval());
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   590
    arguments << "--volume";
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   591
    arguments << QString::number(config->volume());
8354
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8350
diff changeset
   592
    arguments << "--fullscreen-width";
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8350
diff changeset
   593
    arguments << QString::number(resolutions.first.width());
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8350
diff changeset
   594
    arguments << "--fullscreen-height";
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8350
diff changeset
   595
    arguments << QString::number(resolutions.first.height());
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   596
    arguments << "--width";
8354
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8350
diff changeset
   597
    arguments << QString::number(resolutions.second.width());
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   598
    arguments << "--height";
8354
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8350
diff changeset
   599
    arguments << QString::number(resolutions.second.height());
14677
93429d8f6b3f Add setting to set default/initial zoom
Wuzzy <Wuzzy2@mail.ru>
parents: 14670
diff changeset
   600
    if (config->zoom() != 100) {
93429d8f6b3f Add setting to set default/initial zoom
Wuzzy <Wuzzy2@mail.ru>
parents: 14670
diff changeset
   601
        arguments << "--zoom";
93429d8f6b3f Add setting to set default/initial zoom
Wuzzy <Wuzzy2@mail.ru>
parents: 14670
diff changeset
   602
        arguments << QString::number(config->zoom());
93429d8f6b3f Add setting to set default/initial zoom
Wuzzy <Wuzzy2@mail.ru>
parents: 14670
diff changeset
   603
    }
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   604
    arguments << "--raw-quality";
3708
64e059b6f9c5 applied from experimental3D, use a slider to set up quality
koda
parents: 3695
diff changeset
   605
    arguments << QString::number(config->translateQuality());
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   606
    arguments << "--stereo";
3696
6009d8378422 Engine:
smaxx
parents: 3694
diff changeset
   607
    arguments << QString::number(config->stereoMode());
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   608
    if (config->vid_Fullscreen())
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   609
        arguments << "--fullscreen";
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   610
    if (config->isShowFPSEnabled())
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   611
        arguments << "--showfps";
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   612
    if (config->isAltDamageEnabled())
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   613
        arguments << "--altdmg";
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   614
    if (!config->isSoundEnabled())
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   615
        arguments << "--nosound";
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   616
    if (!config->isMusicEnabled())
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   617
        arguments << "--nomusic";
13628
d5e029b84e16 Add setting to disable audio dampening if losing window focus
Wuzzy <Wuzzy2@mail.ru>
parents: 13313
diff changeset
   618
    if (!config->isAudioDampenEnabled())
d5e029b84e16 Add setting to disable audio dampening if losing window focus
Wuzzy <Wuzzy2@mail.ru>
parents: 13313
diff changeset
   619
        arguments << "--nodampen";
8325
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   620
    if (!nick.isEmpty()) {
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   621
        arguments << "--nick";
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   622
        arguments << nick;
ecd51650d5d8 GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents: 8070
diff changeset
   623
    }
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3708
diff changeset
   624
9249
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   625
    if (!config->Form->ui.pageOptions->CBTeamTag->isChecked())
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   626
        arguments << "--no-teamtag";
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   627
    if (!config->Form->ui.pageOptions->CBHogTag->isChecked())
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   628
        arguments << "--no-hogtag";
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   629
    if (!config->Form->ui.pageOptions->CBHealthTag->isChecked())
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   630
        arguments << "--no-healthtag";
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   631
    if (config->Form->ui.pageOptions->CBTagOpacity->isChecked())
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   632
        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
   633
    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
   634
        arguments << "--no-holiday-silliness";
9249
7b8c82785145 Configuration for tag display default
nemo
parents: 9124
diff changeset
   635
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   636
    return arguments;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   637
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   638
5865
35387d27f73a Save demo when loaded from save game finishes
unc0rr
parents: 5781
diff changeset
   639
void HWGame::PlayDemo(const QString & demofilename, bool isSave)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   640
{
5865
35387d27f73a Save demo when loaded from save game finishes
unc0rr
parents: 5781
diff changeset
   641
    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
   642
    lastGameType = gameType;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   643
    QFile demofile(demofilename);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   644
    if (!demofile.open(QIODevice::ReadOnly))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   645
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   646
        emit ErrorMessage(tr("Cannot open demofile %1").arg(demofilename));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   647
        return ;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   648
    }
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   649
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   650
    // read demo
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   651
    toSendBuf = demofile.readAll();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   652
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   653
    // run engine
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   654
    demo.clear();
8069
bb7671829935 - Only allow one engine instance running at the moment
unc0rr
parents: 7857
diff changeset
   655
    Start(false);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   656
    SetGameState(gsStarted);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   657
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   658
14903
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   659
void HWGame::PlayOfficialServerDemo()
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   660
{
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   661
    // 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
   662
    // Needs engine support first.
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   663
    lastGameStartArgs.clear();
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   664
    lastGameType = gtLocal;
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   665
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   666
    gameType = gtLocal;
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   667
    demo.clear();
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   668
    Start(false);
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   669
    SetGameState(gsStarted);
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   670
}
5119203470f3 Teach frontend how to deal with official server replays (/watch)
Wuzzy <Wuzzy2@mail.ru>
parents: 14677
diff changeset
   671
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   672
void HWGame::StartNet()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   673
{
12639
2473b03629c8 Remove broken “Play again” button in stats page after an online game
Wuzzy <almikes@aol.com>
parents: 12505
diff changeset
   674
    lastGameStartArgs.clear();
2473b03629c8 Remove broken “Play again” button in stats page after an online game
Wuzzy <almikes@aol.com>
parents: 12505
diff changeset
   675
    lastGameType = gtNet;
2473b03629c8 Remove broken “Play again” button in stats page after an online game
Wuzzy <almikes@aol.com>
parents: 12505
diff changeset
   676
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   677
    gameType = gtNet;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   678
    demo.clear();
8069
bb7671829935 - Only allow one engine instance running at the moment
unc0rr
parents: 7857
diff changeset
   679
    Start(false);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   680
    SetGameState(gsStarted);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   681
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   682
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   683
void HWGame::StartLocal()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   684
{
8901
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   685
    lastGameStartArgs.clear();
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   686
    lastGameType = gtLocal;
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   687
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   688
    gameType = gtLocal;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   689
    demo.clear();
8069
bb7671829935 - Only allow one engine instance running at the moment
unc0rr
parents: 7857
diff changeset
   690
    Start(false);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   691
    SetGameState(gsStarted);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   692
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   693
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   694
void HWGame::StartQuick()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   695
{
8901
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   696
    lastGameStartArgs.clear();
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   697
    lastGameType = gtQLocal;
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   698
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   699
    gameType = gtQLocal;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   700
    demo.clear();
8069
bb7671829935 - Only allow one engine instance running at the moment
unc0rr
parents: 7857
diff changeset
   701
    Start(false);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   702
    SetGameState(gsStarted);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   703
}
533
eebb7684ac22 Save saves in Save directory
unc0rr
parents: 529
diff changeset
   704
14462
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   705
void HWGame::StartTraining(const QString & file, const QString & subFolder, const QString & trainTeam)
587
74db4115064a More work on Training mode
unc0rr
parents: 555
diff changeset
   706
{
8901
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   707
    lastGameStartArgs.clear();
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   708
    lastGameStartArgs.append(file);
14462
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   709
    lastGameStartArgs.append(subFolder);
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   710
    lastGameStartArgs.append(trainTeam);
8901
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   711
    lastGameType = gtTraining;
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   712
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   713
    gameType = gtTraining;
11968
1de4d6b35748 Mission recategorization into trainings, challenges and scenarios.
Wuzzy <almikes@aol.com>
parents: 11888
diff changeset
   714
14463
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14462
diff changeset
   715
    trainingScript  = "Missions/" + subFolder + "/" + file + ".lua";
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14462
diff changeset
   716
    trainingName = file;
14462
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   717
    trainingTeam = trainTeam;
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   718
    demo.clear();
8069
bb7671829935 - Only allow one engine instance running at the moment
unc0rr
parents: 7857
diff changeset
   719
    Start(false);
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   720
    SetGameState(gsStarted);
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   721
}
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   722
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   723
void HWGame::StartCampaign(const QString & camp, const QString & campScript, const QString & campTeam)
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   724
{
8901
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   725
    lastGameStartArgs.clear();
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   726
    lastGameStartArgs.append(camp);
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   727
    lastGameStartArgs.append(campScript);
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   728
    lastGameStartArgs.append(campTeam);
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   729
    lastGameType = gtCampaign;
505307b9735d implementation of a restart-game button. location and appearance is not final :P
thunderstruck
parents: 8629
diff changeset
   730
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   731
    gameType = gtCampaign;
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   732
    campaign = camp;
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   733
    campaignScript = "Missions/Campaign/" + camp + "/" + campScript;
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   734
    campaignTeam = campTeam;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   735
    demo.clear();
8069
bb7671829935 - Only allow one engine instance running at the moment
unc0rr
parents: 7857
diff changeset
   736
    Start(false);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   737
    SetGameState(gsStarted);
587
74db4115064a More work on Training mode
unc0rr
parents: 555
diff changeset
   738
}
74db4115064a More work on Training mode
unc0rr
parents: 555
diff changeset
   739
533
eebb7684ac22 Save saves in Save directory
unc0rr
parents: 529
diff changeset
   740
void HWGame::SetGameState(GameState state)
eebb7684ac22 Save saves in Save directory
unc0rr
parents: 529
diff changeset
   741
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   742
    gameState = state;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   743
    emit GameStateChanged(state);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   744
    if (gameType == gtCampaign)
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   745
    {
14601
1d3f8cf48831 Campaign: Select next unfinished mission after completing one
Wuzzy <Wuzzy2@mail.ru>
parents: 14599
diff changeset
   746
        emit CampStateChanged(state);
14467
4edcb655dc5a Update training page after completing a training
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
   747
    }
4edcb655dc5a Update training page after completing a training
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
   748
    else if (gameType == gtTraining)
4edcb655dc5a Update training page after completing a training
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
   749
    {
4edcb655dc5a Update training page after completing a training
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
   750
        emit TrainingStateChanged(1);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   751
    }
533
eebb7684ac22 Save saves in Save directory
unc0rr
parents: 529
diff changeset
   752
}
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
   753
6211
ee9465c0ea82 move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents: 6024
diff changeset
   754
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
   755
{
6211
ee9465c0ea82 move (prematurely) finishing game by removing all teams into engine since that's where it should happen
sheepluva
parents: 6024
diff changeset
   756
    QByteArray buf;
13659
1889e4e95794 Close hwengine properly when you got kicked by room host
Wuzzy <Wuzzy2@mail.ru>
parents: 13628
diff changeset
   757
    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
   758
    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
   759
}
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   760
7665
e556b44f5bd8 More Qt-ish code, fix couple warnings.
unc0rr
parents: 7629
diff changeset
   761
void HWGame::sendCampaignVar(const QByteArray &varToSend)
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   762
{
9718
563a34cd8398 unbreak various parts of campaign variable loading/saving
sheepluva
parents: 9466
diff changeset
   763
    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
   764
    QSettings teamfile(QString(cfgdir->absolutePath() + "/Teams/%1.hwt").arg(campaignTeam), QSettings::IniFormat, 0);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   765
    teamfile.setIniCodec("UTF-8");
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   766
    QString varValue = teamfile.value("Campaign " + campaign + "/" + varToFind, "").toString();
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   767
    QByteArray command;
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   768
    HWProto::addStringToBuffer(command, "V." + varValue);
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   769
    RawSendIPC(command);
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   770
}
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   771
7665
e556b44f5bd8 More Qt-ish code, fix couple warnings.
unc0rr
parents: 7629
diff changeset
   772
void HWGame::writeCampaignVar(const QByteArray & varVal)
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   773
{
7665
e556b44f5bd8 More Qt-ish code, fix couple warnings.
unc0rr
parents: 7629
diff changeset
   774
    int i = varVal.indexOf(" ");
e556b44f5bd8 More Qt-ish code, fix couple warnings.
unc0rr
parents: 7629
diff changeset
   775
    if(i < 0)
e556b44f5bd8 More Qt-ish code, fix couple warnings.
unc0rr
parents: 7629
diff changeset
   776
        return;
e556b44f5bd8 More Qt-ish code, fix couple warnings.
unc0rr
parents: 7629
diff changeset
   777
e556b44f5bd8 More Qt-ish code, fix couple warnings.
unc0rr
parents: 7629
diff changeset
   778
    QString varToWrite = QString::fromUtf8(varVal.left(i));
e556b44f5bd8 More Qt-ish code, fix couple warnings.
unc0rr
parents: 7629
diff changeset
   779
    QString varValue = QString::fromUtf8(varVal.mid(i + 1));
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   780
13284
b504131f7405 Fix team files and settings not saving properly, and remove FileEngine stuff from DLC
Wuzzy <Wuzzy2@mail.ru>
parents: 13078
diff changeset
   781
    QSettings teamfile(QString(cfgdir->absolutePath() + "/Teams/%1.hwt").arg(campaignTeam), QSettings::IniFormat, 0);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   782
    teamfile.setIniCodec("UTF-8");
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   783
    teamfile.setValue("Campaign " + campaign + "/" + varToWrite, varValue);
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   784
}
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   785
14462
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   786
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
   787
{
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   788
    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
   789
    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
   790
    teamfile.setIniCodec("UTF-8");
14463
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14462
diff changeset
   791
    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
   792
    QByteArray command;
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   793
    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
   794
    RawSendIPC(command);
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   795
}
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   796
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   797
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
   798
{
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   799
    int i = varVal.indexOf(" ");
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   800
    if(i < 0)
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   801
        return;
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   802
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   803
    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
   804
    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
   805
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   806
    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
   807
    teamfile.setIniCodec("UTF-8");
14463
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14462
diff changeset
   808
    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
   809
}
4c743ef80b1b Add team selection in training page and basic check mark support
Wuzzy <Wuzzy2@mail.ru>
parents: 14447
diff changeset
   810