QTfrontend/game.cpp
author displacer
Sun, 01 Oct 2006 20:14:30 +0000
changeset 177 c67c15e6fae3
parent 174 0b2c5b22f644
child 178 efdc2a63be8e
permissions -rw-r--r--
prepare uniting tcp classes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     1
/*
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     2
 * Hedgewars, a worms-like game
128
223522298250 Update file headers & delete unneeded files
unc0rr
parents: 127
diff changeset
     3
 * Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com>
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     4
 *
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     5
 * Distributed under the terms of the BSD-modified licence:
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     6
 *
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     8
 * of this software and associated documentation files (the "Software"), to deal
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     9
 * with the Software without restriction, including without limitation the
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    11
 * sell copies of the Software, and to permit persons to whom the Software is
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    12
 * furnished to do so, subject to the following conditions:
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    13
 *
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    14
 * 1. Redistributions of source code must retain the above copyright notice,
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    15
 *    this list of conditions and the following disclaimer.
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    16
 * 2. Redistributions in binary form must reproduce the above copyright notice,
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    17
 *    this list of conditions and the following disclaimer in the documentation
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    18
 *    and/or other materials provided with the distribution.
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    19
 * 3. The name of the author may not be used to endorse or promote products
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    20
 *    derived from this software without specific prior written permission.
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    21
 *
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    22
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    23
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    24
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    25
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    30
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    31
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    32
 */
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    33
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    34
#include <QMessageBox>
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    35
#include <QProcess>
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    36
#include <QTimer>
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    37
#include <QString>
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    38
#include <QByteArray>
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
    39
#include <QFile>
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    40
#include <QTextStream>
127
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 116
diff changeset
    41
#include <QUuid>
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
    42
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    43
#include "game.h"
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    44
#include "hwconsts.h"
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    45
#include "gameuiconfig.h"
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 86
diff changeset
    46
#include "gamecfgwidget.h"
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    47
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    48
HWGame::HWGame(GameUIConfig * config, GameCFGWidget * gamecfg)
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    49
{
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
    50
	this->config = config;
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    51
	this->gamecfg = gamecfg;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    52
	TeamCount = 0;
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
    53
	seed = "";
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    54
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    55
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    56
void HWGame::NewConnection()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    57
{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    58
	QTcpSocket * client = IPCServer->nextPendingConnection();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    59
	if(!IPCSocket)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    60
	{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    61
		IPCServer->close();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    62
		IPCSocket = client;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    63
		connect(client, SIGNAL(disconnected()), this, SLOT(ClientDisconnect()));
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    64
		connect(client, SIGNAL(readyRead()), this, SLOT(ClientRead()));
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
    65
		if (toSendBuf.size() > 0)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
    66
			SENDIPC("?");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    67
	} else
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    68
	{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    69
		qWarning("2nd IPC client?!");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    70
		client->disconnectFromHost();
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    71
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    72
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    73
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    74
void HWGame::ClientDisconnect()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    75
{
157
8e3e11bb0a5f Fix demos usability
unc0rr
parents: 149
diff changeset
    76
	SaveDemo(cfgdir->absolutePath() + "/Demos/LastRound.hwd_1");
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    77
    IPCSocket->deleteLater();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    78
	IPCSocket = 0;
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    79
	deleteLater();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    80
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    81
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    82
void HWGame::SendTeamConfig(int index)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    83
{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
    84
	LocalCFG(teams[index]);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    85
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    86
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    87
void HWGame::SendConfig()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    88
{
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
    89
	SendIPC(QString("eseed %1").arg(seed));
127
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 116
diff changeset
    90
	SendIPC(QString("etheme %1").arg(config->GetRandomTheme()));
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    91
	SENDIPC("TL");
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    92
	SendIPC(QString("e$gmflags %1").arg(gamecfg->getGameFlags()));
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
    93
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
    94
	for (int i = 0; i < TeamCount; i++)
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
    95
	{
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
    96
		SENDIPC("eaddteam");
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
    97
		LocalCFG(teams[i]);
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
    98
		SendIPC(QString("ecolor %1").arg(65535 << i * 8));
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
    99
		for (int t = 0; t < hdNum[teams[i]]; t++)
149
aae256899c49 Fix hedgehog physics %)
unc0rr
parents: 148
diff changeset
   100
			SendIPC(QString("eadd hh%1 0").arg(t));
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   101
	}
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   102
}
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   103
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   104
void HWGame::SendQuickConfig()
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   105
{
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   106
	SendIPC(QString("eseed %1").arg(seed));
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   107
	SendIPC(QString("etheme %1").arg(config->GetRandomTheme()));
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   108
	SENDIPC("TL");
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   109
	SendIPC(QString("e$gmflags %1").arg(gamecfg->getGameFlags()));
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   110
	SENDIPC("eaddteam");
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   111
	LocalCFG(0);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   112
	SENDIPC("ecolor 65535");
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   113
	SENDIPC("eadd hh0 0");
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   114
	SENDIPC("eadd hh1 0");
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   115
	SENDIPC("eadd hh2 0");
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   116
	SENDIPC("eadd hh3 0");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   117
	SENDIPC("eaddteam");
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 87
diff changeset
   118
	LocalCFG(2);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   119
	SENDIPC("ecolor 16776960");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   120
	SENDIPC("eadd hh0 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   121
	SENDIPC("eadd hh1 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   122
	SENDIPC("eadd hh2 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   123
	SENDIPC("eadd hh3 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   124
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   125
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   126
void HWGame::ParseMessage(const QByteArray & msg)
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   127
{
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   128
	switch(msg.data()[1]) {
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   129
		case '?': {
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   130
			if (gameType == gtNet)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   131
				emit SendNet(QByteArray("\x01""?"));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   132
			else
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   133
				SENDIPC("!");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   134
			break;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   135
		}
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   136
		case 'C': {
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   137
			switch (gameType) {
142
1ff0b02fe367 fix 'Simple game' and playing demos
unc0rr
parents: 141
diff changeset
   138
				case gtLocal: {
1ff0b02fe367 fix 'Simple game' and playing demos
unc0rr
parents: 141
diff changeset
   139
				 	SendConfig();
1ff0b02fe367 fix 'Simple game' and playing demos
unc0rr
parents: 141
diff changeset
   140
					break;
1ff0b02fe367 fix 'Simple game' and playing demos
unc0rr
parents: 141
diff changeset
   141
				}
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   142
				case gtQLocal: {
142
1ff0b02fe367 fix 'Simple game' and playing demos
unc0rr
parents: 141
diff changeset
   143
				 	SendQuickConfig();
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   144
					break;
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   145
				}
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   146
				case gtDemo: break;
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   147
				case gtNet: {
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   148
					SENDIPC("TN");
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   149
					emit SendNet(QByteArray("\x01""C"));
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   150
					break;
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   151
				}
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   152
			}
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   153
			break;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   154
		}
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   155
		case 'E': {
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   156
			QMessageBox::critical(0,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   157
					"Hedgewars: error message",
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   158
					QString().append(msg.mid(2)).left(msg.size() - 6),
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   159
					QMessageBox::Ok,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   160
					QMessageBox::NoButton,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   161
					QMessageBox::NoButton);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   162
			return;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   163
		}
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   164
		case '+': {
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   165
			if (gameType == gtNet)
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   166
			{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   167
				emit SendNet(msg);
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   168
			}
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   169
			break;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   170
		}
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   171
		default: {
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   172
			if (gameType == gtNet)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   173
			{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   174
				emit SendNet(msg);
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   175
			}
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   176
			demo->append(msg);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   177
		}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   178
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   179
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   180
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   181
void HWGame::SendIPC(const char * msg, quint8 len)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   182
{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   183
	SendIPC(QByteArray::fromRawData(msg, len));
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   184
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   185
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   186
void HWGame::SendIPC(const QString & buf)
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   187
{
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   188
	SendIPC(QByteArray().append(buf));
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   189
}
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   190
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   191
void HWGame::SendIPC(const QByteArray & buf)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   192
{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   193
	if (buf.size() > MAXMSGCHARS) return;
40
416d54ce0c34 - More binds
unc0rr
parents: 36
diff changeset
   194
	quint8 len = buf.size();
416d54ce0c34 - More binds
unc0rr
parents: 36
diff changeset
   195
	RawSendIPC(QByteArray::fromRawData((char *)&len, 1) + buf);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   196
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   197
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   198
void HWGame::RawSendIPC(const QByteArray & buf)
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   199
{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   200
	if (!IPCSocket)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   201
	{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   202
		toSendBuf += buf;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   203
	} else
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   204
	{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   205
		if (toSendBuf.size() > 0)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   206
		{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   207
			IPCSocket->write(toSendBuf);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   208
			demo->append(toSendBuf);
40
416d54ce0c34 - More binds
unc0rr
parents: 36
diff changeset
   209
			toSendBuf.clear();
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   210
		}
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   211
		IPCSocket->write(buf);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   212
		demo->append(buf);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   213
	}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   214
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   215
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   216
void HWGame::FromNet(const QByteArray & msg)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   217
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   218
	RawSendIPC(msg);
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   219
}
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   220
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   221
void HWGame::ClientRead()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   222
{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   223
	readbuffer.append(IPCSocket->readAll());
177
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   224
	onClientRead();
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   225
}
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   226
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   227
void HWGame::onClientRead()
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   228
{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   229
	quint8 msglen;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   230
	quint32 bufsize;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   231
	while (((bufsize = readbuffer.size()) > 0) &&
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   232
			((msglen = readbuffer.data()[0]) < bufsize))
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   233
	{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   234
		QByteArray msg = readbuffer.left(msglen + 1);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   235
		readbuffer.remove(0, msglen + 1);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   236
		ParseMessage(msg);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   237
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   238
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   239
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   240
void HWGame::Start()
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   241
{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   242
	IPCServer = new QTcpServer(this);
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   243
	connect(IPCServer, SIGNAL(newConnection()), this, SLOT(NewConnection()));
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   244
	IPCServer->setMaxPendingConnections(1);
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   245
	IPCSocket = 0;
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   246
	if (!IPCServer->listen(QHostAddress::LocalHost, IPC_PORT))
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   247
	{
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   248
		QMessageBox::critical(0, tr("Error"),
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   249
				tr("Unable to start the server: %1.")
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   250
				.arg(IPCServer->errorString()));
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   251
	}
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   252
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   253
	demo = new QByteArray;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   254
	QProcess * process;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   255
	process = new QProcess;
110
330a2dbacd67 - Use right packet length
unc0rr
parents: 97
diff changeset
   256
	connect(process, SIGNAL(error(QProcess::ProcessError)), this, SLOT(StartProcessError(QProcess::ProcessError)));
177
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   257
	QStringList arguments=setArguments();
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   258
	process->start(bindir->absolutePath() + "/hwengine", arguments);
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   259
}
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   260
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   261
QStringList HWGame::setArguments()
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   262
{
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   263
	QStringList arguments;
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   264
	arguments << resolutions[0][config->vid_Resolution()];
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   265
	arguments << resolutions[1][config->vid_Resolution()];
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   266
	arguments << "16";
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   267
	arguments << "46631";
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   268
	arguments << (config->vid_Fullscreen() ? "1" : "0");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   269
	arguments << (config->isSoundEnabled() ? "1" : "0");
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   270
	arguments << tr("en.txt");
174
0b2c5b22f644 Changeable volume
unc0rr
parents: 172
diff changeset
   271
	arguments << "128";
177
c67c15e6fae3 prepare uniting tcp classes
displacer
parents: 174
diff changeset
   272
	return arguments;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   273
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   274
110
330a2dbacd67 - Use right packet length
unc0rr
parents: 97
diff changeset
   275
void HWGame::StartProcessError(QProcess::ProcessError error)
330a2dbacd67 - Use right packet length
unc0rr
parents: 97
diff changeset
   276
{
330a2dbacd67 - Use right packet length
unc0rr
parents: 97
diff changeset
   277
	QMessageBox::critical(0, tr("Error"),
330a2dbacd67 - Use right packet length
unc0rr
parents: 97
diff changeset
   278
				tr("Unable to run engine: %1 (")
330a2dbacd67 - Use right packet length
unc0rr
parents: 97
diff changeset
   279
				.arg(error) + bindir->absolutePath() + "/hwengine)");
330a2dbacd67 - Use right packet length
unc0rr
parents: 97
diff changeset
   280
}
330a2dbacd67 - Use right packet length
unc0rr
parents: 97
diff changeset
   281
140
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 128
diff changeset
   282
void HWGame::AddTeam(const QString & teamname, unsigned char numHedgedogs)
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   283
{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   284
	if (TeamCount == 5) return;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   285
	teams[TeamCount] = teamname;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   286
	TeamCount++;
140
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 128
diff changeset
   287
	hdNum[teamname]=numHedgedogs;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   288
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   289
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   290
void HWGame::SaveDemo(const QString & filename)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   291
{
157
8e3e11bb0a5f Fix demos usability
unc0rr
parents: 149
diff changeset
   292
	demo->replace(QByteArray("\x02TL"), QByteArray("\x02TD"));
8e3e11bb0a5f Fix demos usability
unc0rr
parents: 149
diff changeset
   293
	demo->replace(QByteArray("\x02TN"), QByteArray("\x02TD"));
8e3e11bb0a5f Fix demos usability
unc0rr
parents: 149
diff changeset
   294
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   295
	QFile demofile(filename);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   296
	if (!demofile.open(QIODevice::WriteOnly))
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   297
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   298
		QMessageBox::critical(0,
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   299
				tr("Error"),
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   300
				tr("Cannot save demo to file %1").arg(filename),
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   301
				tr("Quit"));
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   302
		return ;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   303
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   304
	QDataStream stream(&demofile);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   305
	stream.writeRawData(demo->constData(), demo->size());
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   306
	demofile.close();
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   307
	delete demo;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   308
}
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   309
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   310
void HWGame::PlayDemo(const QString & demofilename)
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   311
{
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   312
	gameType = gtDemo;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   313
	QFile demofile(demofilename);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   314
	if (!demofile.open(QIODevice::ReadOnly))
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   315
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   316
		QMessageBox::critical(0,
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   317
				tr("Error"),
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   318
				tr("Cannot open demofile %1").arg(demofilename),
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   319
				tr("Quit"));
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   320
		return ;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   321
	}
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   322
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   323
	// read demo
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   324
	QDataStream stream(&demofile);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   325
	char buf[512];
142
1ff0b02fe367 fix 'Simple game' and playing demos
unc0rr
parents: 141
diff changeset
   326
	int readbytes;
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   327
	do
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   328
	{
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   329
		readbytes = stream.readRawData((char *)&buf, 512);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   330
		toSendBuf.append(QByteArray((char *)&buf, readbytes));
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   331
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   332
	} while (readbytes > 0);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   333
	demofile.close();
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   334
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   335
	// run engine
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   336
	Start();
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   337
}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   338
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 87
diff changeset
   339
void HWGame::StartNet()
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   340
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   341
	gameType = gtNet;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   342
	demo = new QByteArray;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   343
	Start();
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   344
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   345
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   346
void HWGame::StartLocal()
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   347
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   348
	gameType = gtLocal;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   349
	if (TeamCount < 2) return;
172
5294ada3910b working map preview
displacer
parents: 157
diff changeset
   350
	seed = gamecfg->getCurrentSeed();//QUuid::createUuid().toString();
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   351
	Start();
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   352
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   353
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   354
void HWGame::StartQuick()
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   355
{
141
ac3680be1f4b - Small fix for AI
unc0rr
parents: 140
diff changeset
   356
	gameType = gtQLocal;
172
5294ada3910b working map preview
displacer
parents: 157
diff changeset
   357
	seed = gamecfg->getCurrentSeed();//QUuid::createUuid().toString();
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   358
	Start();
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   359
}
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   360
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   361
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   362
void HWGame::LocalCFG(const QString & teamname)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   363
{
116
00d3d6d2e699 GameUIConfig* member removed
displacer
parents: 110
diff changeset
   364
	HWTeam team(teamname);
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   365
	if (!team.LoadFromFile()) {
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   366
		QMessageBox::critical(0,
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   367
				"Error",
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   368
				QString("Cannot load team config ""%1""").arg(teamname),
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   369
				QMessageBox::Ok,
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   370
				QMessageBox::NoButton,
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   371
				QMessageBox::NoButton);
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   372
		return;
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   373
	}
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   374
	RawSendIPC(team.IPCTeamInfo());
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   375
}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   376
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   377
void HWGame::LocalCFG(quint8 num)
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   378
{
116
00d3d6d2e699 GameUIConfig* member removed
displacer
parents: 110
diff changeset
   379
	HWTeam team(num);
86
664b536a1c27 Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents: 85
diff changeset
   380
	RawSendIPC(team.IPCTeamInfo());
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   381
}