QTfrontend/game.cpp
author nemo
Sun, 28 Nov 2010 12:55:57 -0500
changeset 4428 2bc3d3475edf
parent 4406 beb4de0af990
child 4430 cacda05a053e
permissions -rw-r--r--
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
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
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 3162
diff changeset
     3
 * Copyright (c) 2005-2010 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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 */
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    18
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    19
#include <QString>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    20
#include <QByteArray>
788
00720357601f - Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents: 759
diff changeset
    21
#include <QUuid>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    22
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    23
#include "game.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    24
#include "hwconsts.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    25
#include "gameuiconfig.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    26
#include "gamecfgwidget.h"
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 324
diff changeset
    27
#include "teamselect.h"
210
440575778475 Fixed compilation on *nix .)
unc0rr
parents: 208
diff changeset
    28
#include "KB.h"
239
f9adf3c73bed 'Proto' class to make things easier
unc0rr
parents: 228
diff changeset
    29
#include "proto.h"
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    30
706
9e973b057a52 missing header fix
displacer
parents: 686
diff changeset
    31
#include <QTextStream>
9e973b057a52 missing header fix
displacer
parents: 686
diff changeset
    32
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
    33
QString training, campaign; // TODO: Cleaner solution?
2468
0b62498c201a openal fix, training map selection and rcplane adjustments from Smaxx (untested, but look reasonable). Bunch of new graphics from Tiy, new translation for pt-pt from inu_
nemo
parents: 2443
diff changeset
    34
681
7a20c50988ec working weapons select
displacer
parents: 673
diff changeset
    35
HWGame::HWGame(GameUIConfig * config, GameCFGWidget * gamecfg, QString ammo, TeamSelWidget* pTeamSelWidget) :
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 324
diff changeset
    36
  TCPBase(true),
1904
20348675b015 - Fix warnings in frontend
unc0rr
parents: 1812
diff changeset
    37
  ammostr(ammo),
20348675b015 - Fix warnings in frontend
unc0rr
parents: 1812
diff changeset
    38
  m_pTeamSelWidget(pTeamSelWidget)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    39
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    40
    this->config = config;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    41
    this->gamecfg = gamecfg;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    42
    TeamCount = 0;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    43
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    44
419
fdeed9718e6b virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents: 406
diff changeset
    45
HWGame::~HWGame()
fdeed9718e6b virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents: 406
diff changeset
    46
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    47
    SetGameState(gsDestroyed);
419
fdeed9718e6b virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents: 406
diff changeset
    48
}
fdeed9718e6b virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents: 406
diff changeset
    49
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    50
void HWGame::onClientDisconnect()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    51
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    52
    switch (gameType) {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    53
        case gtDemo: break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    54
        case gtNet:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    55
            emit HaveRecord(true, demo);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    56
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    57
        default:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    58
            if (gameState == gsInterrupted) emit HaveRecord(false, demo);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    59
            else if (gameState == gsFinished) emit HaveRecord(true, demo);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    60
    }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    61
    SetGameState(gsStopped);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    62
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    63
253
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
    64
void HWGame::commonConfig()
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    65
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    66
    QByteArray buf;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    67
    QString gt;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    68
    switch (gameType) {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    69
        case gtDemo:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    70
            gt = "TD";
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    71
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    72
        case gtNet:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    73
            gt = "TN";
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    74
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    75
        default:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    76
            gt = "TL";
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    77
    }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    78
    HWProto::addStringToBuffer(buf, gt);
788
00720357601f - Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents: 759
diff changeset
    79
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    80
    HWProto::addStringListToBuffer(buf, gamecfg->getFullConfig());
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
    81
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    82
    if (m_pTeamSelWidget)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    83
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    84
        QList<HWTeam> teams = m_pTeamSelWidget->getPlayingTeams();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    85
        for(QList<HWTeam>::iterator it = teams.begin(); it != teams.end(); ++it)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    86
        {
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
    87
            HWProto::addStringToBuffer(buf, QString("eammloadt %1").arg(ammostr.mid(0, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
    88
            HWProto::addStringToBuffer(buf, QString("eammprob %1").arg(ammostr.mid(cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
    89
            HWProto::addStringToBuffer(buf, QString("eammdelay %1").arg(ammostr.mid(2 * cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
    90
            HWProto::addStringToBuffer(buf, QString("eammreinf %1").arg(ammostr.mid(3 * cAmmoNumber, cAmmoNumber)));
4406
beb4de0af990 Increase teams to 8 to match the 8 colours, fix issue #108, reenable rope length modifier
nemo
parents: 3943
diff changeset
    91
            if(!gamecfg->schemeData(21).toBool()) HWProto::addStringToBuffer(buf, QString("eammstore"));
3943
9835060e5c01 Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents: 3919
diff changeset
    92
            HWProto::addStringListToBuffer(buf,
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
    93
                (*it).TeamGameConfig(gamecfg->getInitHealth()));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
    94
        }
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
    RawSendIPC(buf);
253
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
    97
}
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
    98
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
    99
void HWGame::SendConfig()
e7b3687fcb2c fixed: choose map for simple game is working now
displacer
parents: 249
diff changeset
   100
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   101
    commonConfig();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   102
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   103
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   104
void HWGame::SendQuickConfig()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   105
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   106
    QByteArray teamscfg;
239
f9adf3c73bed 'Proto' class to make things easier
unc0rr
parents: 228
diff changeset
   107
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   108
    HWProto::addStringToBuffer(teamscfg, "TL");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   109
    HWProto::addStringToBuffer(teamscfg, QString("etheme %1")
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   110
            .arg((Themes->size() > 0) ? Themes->at(rand() % Themes->size()) : "steel"));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   111
    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
   112
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   113
    HWNamegen namegen;
239
f9adf3c73bed 'Proto' class to make things easier
unc0rr
parents: 228
diff changeset
   114
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   115
    HWTeam * team1;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   116
    team1 = new HWTeam;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   117
    team1->difficulty = 0;
3876
3dd031a8b395 Frontend:
smaxx
parents: 3774
diff changeset
   118
    team1->teamColor = *colors[0];
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   119
    team1->numHedgehogs = 4;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   120
    namegen.TeamRandomNames(team1,TRUE);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   121
    HWProto::addStringListToBuffer(teamscfg,
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   122
            team1->TeamGameConfig(100));
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents: 1904
diff changeset
   123
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   124
    HWTeam * team2;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   125
    team2 = new HWTeam;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   126
    team2->difficulty = 4;
3876
3dd031a8b395 Frontend:
smaxx
parents: 3774
diff changeset
   127
    team2->teamColor = *colors[1];
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   128
    team2->numHedgehogs = 4;
3160
f2a3d861b23a Frontend:
smxx
parents: 3011
diff changeset
   129
	do
f2a3d861b23a Frontend:
smxx
parents: 3011
diff changeset
   130
        namegen.TeamRandomNames(team2,TRUE);
3344
b18a166e6ca4 Frontend:
smxx
parents: 3236
diff changeset
   131
	while(!team2->TeamName.compare(team1->TeamName) || !team2->Hedgehogs[0].Hat.compare(team1->Hedgehogs[0].Hat));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   132
    HWProto::addStringListToBuffer(teamscfg,
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   133
            team2->TeamGameConfig(100));
607
26a91a9f5514 Now trainings can have custom ammostore
unc0rr
parents: 604
diff changeset
   134
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   135
    HWProto::addStringToBuffer(teamscfg, QString("eammloadt %1").arg(cDefaultAmmoStore->mid(0, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   136
    HWProto::addStringToBuffer(teamscfg, QString("eammprob %1").arg(cDefaultAmmoStore->mid(cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   137
    HWProto::addStringToBuffer(teamscfg, QString("eammdelay %1").arg(cDefaultAmmoStore->mid(2 * cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   138
    HWProto::addStringToBuffer(teamscfg, QString("eammreinf %1").arg(cDefaultAmmoStore->mid(3 * cAmmoNumber, cAmmoNumber)));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   139
    HWProto::addStringToBuffer(teamscfg, QString("eammstore"));
967fd96f7373 Engine/Frontend:
smxx
parents: 3344
diff changeset
   140
    HWProto::addStringToBuffer(teamscfg, QString("eammstore"));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   141
    RawSendIPC(teamscfg);
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   142
}
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   143
588
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   144
void HWGame::SendTrainingConfig()
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   145
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   146
    QByteArray traincfg;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   147
    HWProto::addStringToBuffer(traincfg, "TL");
588
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   148
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   149
    HWProto::addStringToBuffer(traincfg, "escript " + training);
593
1f5e66379a43 Triggers proof-of-concept
unc0rr
parents: 588
diff changeset
   150
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   151
    RawSendIPC(traincfg);
588
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   152
}
b2e61fc49e5d Better stub for Training mode
unc0rr
parents: 587
diff changeset
   153
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   154
void HWGame::SendCampaignConfig()
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   155
{
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   156
    QByteArray campaigncfg;
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   157
    HWProto::addStringToBuffer(campaigncfg, "TL");
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   158
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   159
    HWProto::addStringToBuffer(campaigncfg, "escript " + campaign);
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   160
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   161
    RawSendIPC(campaigncfg);
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   162
}
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   163
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   164
void HWGame::SendNetConfig()
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   165
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   166
    commonConfig();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   167
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   168
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   169
void HWGame::ParseMessage(const QByteArray & msg)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   170
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   171
    switch(msg.at(1)) {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   172
        case '?': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   173
            SendIPC("!");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   174
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   175
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   176
        case 'C': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   177
            switch (gameType) {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   178
                case gtLocal: {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   179
                    SendConfig();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   180
                    break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   181
                }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   182
                case gtQLocal: {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   183
                    SendQuickConfig();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   184
                    break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   185
                }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   186
                case gtDemo: break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   187
                case gtNet: {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   188
                    SendNetConfig();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   189
                    break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   190
                }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   191
                case gtTraining: {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   192
                    SendTrainingConfig();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   193
                    break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   194
                }
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   195
                case gtCampaign: {
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   196
                    SendCampaignConfig();
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   197
                    break;
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   198
                }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   199
            }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   200
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   201
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   202
        case 'E': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   203
            int size = msg.size();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   204
            emit ErrorMessage(QString("Last two engine messages:\n") + QString().append(msg.mid(2)).left(size - 4));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   205
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   206
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   207
        case 'K': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   208
            ulong kb = msg.mid(2).toULong();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   209
            if (kb==1) {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   210
              qWarning("%s", KBMessages[kb - 1].toLocal8Bit().constData());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   211
              return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   212
            }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   213
            if (kb && kb <= KBmsgsCount)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   214
            {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   215
                emit ErrorMessage(KBMessages[kb - 1]);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   216
            }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   217
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   218
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   219
        case 'i': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   220
            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
   221
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   222
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   223
        case 'Q': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   224
            SetGameState(gsInterrupted);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   225
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   226
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   227
        case 'q': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   228
            SetGameState(gsFinished);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   229
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   230
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   231
        case 's': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   232
            int size = msg.size();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   233
            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
   234
            emit SendChat(msgbody);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   235
            // FIXME: /me command doesn't work here
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   236
            QByteArray buf;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   237
            HWProto::addStringToBuffer(buf, "s" + HWProto::formatChatMsg(config->netNick(), msgbody) + "\x20\x20");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   238
            demo.append(buf);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   239
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   240
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   241
        case 'b': {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   242
            int size = msg.size();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   243
            QString msgbody = QString::fromUtf8(msg.mid(2).left(size - 4));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   244
            emit SendTeamMessage(msgbody);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   245
            break;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   246
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   247
        default: {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   248
            if (gameType == gtNet)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   249
            {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   250
                emit SendNet(msg);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   251
            }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   252
        if (msg.at(1) != 's')
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   253
            demo.append(msg);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   254
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   255
    }
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   256
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   257
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   258
void HWGame::FromNet(const QByteArray & msg)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   259
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   260
    RawSendIPC(msg);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   261
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   262
1356
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1277
diff changeset
   263
void HWGame::FromNetChat(const QString & msg)
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1277
diff changeset
   264
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   265
    QByteArray buf;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   266
    HWProto::addStringToBuffer(buf, 's' + msg + "\x20\x20");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   267
    RawSendIPC(buf);
1356
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1277
diff changeset
   268
}
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1277
diff changeset
   269
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   270
void HWGame::onClientRead()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   271
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   272
    quint8 msglen;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   273
    quint32 bufsize;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   274
    while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) &&
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   275
            ((msglen = readbuffer.data()[0]) < bufsize))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   276
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   277
        QByteArray msg = readbuffer.left(msglen + 1);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   278
        readbuffer.remove(0, msglen + 1);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   279
        ParseMessage(msg);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   280
    }
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   281
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   282
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   283
QStringList HWGame::setArguments()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   284
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   285
    QStringList arguments;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   286
    QRect resolution = config->vid_Resolution();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   287
    arguments << cfgdir->absolutePath();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   288
    arguments << QString::number(resolution.width());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   289
    arguments << QString::number(resolution.height());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   290
    arguments << QString::number(config->bitDepth()); // bpp
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   291
    arguments << QString("%1").arg(ipc_port);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   292
    arguments << (config->vid_Fullscreen() ? "1" : "0");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   293
    arguments << (config->isSoundEnabled() ? "1" : "0");
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3708
diff changeset
   294
    arguments << (config->isMusicEnabled() ? "1" : "0");
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   295
    arguments << QString::number(config->volume()); // sound volume
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   296
    arguments << QString::number(config->timerInterval());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   297
    arguments << datadir->absolutePath();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   298
    arguments << (config->isShowFPSEnabled() ? "1" : "0");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   299
    arguments << (config->isAltDamageEnabled() ? "1" : "0");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   300
    arguments << config->netNick().toUtf8().toBase64();
3708
64e059b6f9c5 applied from experimental3D, use a slider to set up quality
koda
parents: 3695
diff changeset
   301
    arguments << QString::number(config->translateQuality());
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3708
diff changeset
   302
    arguments << tr("en.txt");
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3708
diff changeset
   303
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   304
    return arguments;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   305
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   306
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   307
void HWGame::AddTeam(const QString & teamname)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   308
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   309
    if (TeamCount == 5) return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   310
    teams[TeamCount] = teamname;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   311
    TeamCount++;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   312
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   313
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   314
void HWGame::PlayDemo(const QString & demofilename)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   315
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   316
    gameType = gtDemo;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   317
    QFile demofile(demofilename);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   318
    if (!demofile.open(QIODevice::ReadOnly))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   319
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   320
        emit ErrorMessage(tr("Cannot open demofile %1").arg(demofilename));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   321
        return ;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   322
    }
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   323
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   324
    // read demo
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   325
    toSendBuf = demofile.readAll();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   326
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   327
    // run engine
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   328
    demo.clear();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   329
    Start();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   330
    SetGameState(gsStarted);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   331
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   332
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   333
void HWGame::StartNet()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   334
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   335
    gameType = gtNet;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   336
    demo.clear();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   337
    Start();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   338
    SetGameState(gsStarted);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   339
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   340
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   341
void HWGame::StartLocal()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   342
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   343
    gameType = gtLocal;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   344
    demo.clear();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   345
    Start();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   346
    SetGameState(gsStarted);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   347
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   348
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   349
void HWGame::StartQuick()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   350
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   351
    gameType = gtQLocal;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   352
    demo.clear();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   353
    Start();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   354
    SetGameState(gsStarted);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   355
}
533
eebb7684ac22 Save saves in Save directory
unc0rr
parents: 529
diff changeset
   356
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
   357
void HWGame::StartTraining(const QString & file)
587
74db4115064a More work on Training mode
unc0rr
parents: 555
diff changeset
   358
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   359
    gameType = gtTraining;
3919
76d5b32758d9 Engine/Frontend:
smaxx
parents: 3876
diff changeset
   360
    training = "Missions/Training/" + file + ".lua";
3760
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   361
    demo.clear();
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   362
    Start();
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   363
    SetGameState(gsStarted);
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   364
}
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   365
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   366
void HWGame::StartCampaign(const QString & file)
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   367
{
d30f1ba768d7 Frontend:
smaxx
parents: 3709
diff changeset
   368
    gameType = gtCampaign;
3919
76d5b32758d9 Engine/Frontend:
smaxx
parents: 3876
diff changeset
   369
    campaign = "Missions/Campaign/" + file + ".lua";
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   370
    demo.clear();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   371
    Start();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   372
    SetGameState(gsStarted);
587
74db4115064a More work on Training mode
unc0rr
parents: 555
diff changeset
   373
}
74db4115064a More work on Training mode
unc0rr
parents: 555
diff changeset
   374
533
eebb7684ac22 Save saves in Save directory
unc0rr
parents: 529
diff changeset
   375
void HWGame::SetGameState(GameState state)
eebb7684ac22 Save saves in Save directory
unc0rr
parents: 529
diff changeset
   376
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   377
    gameState = state;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2786
diff changeset
   378
    emit GameStateChanged(state);
533
eebb7684ac22 Save saves in Save directory
unc0rr
parents: 529
diff changeset
   379
}
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
   380
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
   381
void HWGame::KillAllTeams()
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
   382
{
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
   383
    if (m_pTeamSelWidget)
2bc3d3475edf Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents: 4406
diff changeset
   384
    {
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
   385
        QByteArray buf;
2bc3d3475edf Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents: 4406
diff changeset
   386
        QList<HWTeam> teams = m_pTeamSelWidget->getPlayingTeams();
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
   387
        for(QList<HWTeam>::iterator it = teams.begin(); it != teams.end(); ++it)
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
   388
            HWProto::addStringToBuffer(buf, QString("eteamgone %1").arg((*it).TeamName));
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
   389
        RawSendIPC(buf);
2bc3d3475edf Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents: 4406
diff changeset
   390
    }
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
   391
}