QTfrontend/game.cpp
author unc0rr
Tue, 25 Jul 2006 13:32:11 +0000
changeset 85 44d9045b26ff
parent 84 0f6669da2fcb
child 86 664b536a1c27
permissions -rw-r--r--
New GameCFGWidget. Now it's possible to set forts mode from ui
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
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
     3
 * Copyright (c) 2005 Andrey Korotaev <unC0Rr@gmail.com>
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>
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    39
#include <QTextStream>
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    40
#include <QFile>
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    41
#include "game.h"
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    42
#include "hwconsts.h"
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    43
#include "gameuiconfig.h"
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    44
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    45
HWGame::HWGame(GameUIConfig * config, GameCFGWidget * gamecfg)
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    46
{
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
    47
	this->config = config;
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    48
	this->gamecfg = gamecfg;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    49
	TeamCount = 0;
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
    50
	seed = "";
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    51
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    52
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    53
void HWGame::NewConnection()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    54
{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    55
	QTcpSocket * client = IPCServer->nextPendingConnection();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    56
	if(!IPCSocket)
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
		IPCServer->close();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    59
		IPCSocket = client;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    60
		connect(client, SIGNAL(disconnected()), this, SLOT(ClientDisconnect()));
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    61
		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
    62
		if (toSendBuf.size() > 0)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
    63
			SENDIPC("?");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    64
	} else
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    65
	{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    66
		qWarning("2nd IPC client?!");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    67
		client->disconnectFromHost();
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    68
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    69
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    70
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    71
void HWGame::ClientDisconnect()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    72
{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    73
	SaveDemo("demo.hwd_1");
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    74
    IPCSocket->deleteLater();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    75
	IPCSocket = 0;
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    76
	deleteLater();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    77
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    78
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    79
void HWGame::SendTeamConfig(int index)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    80
{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
    81
	LocalCFG(teams[index]);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    82
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    83
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    84
void HWGame::SendConfig()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    85
{
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
    86
	SendIPC(QString("eseed %1").arg(seed));
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
    87
	SendIPC(QString("etheme %1").arg(GetThemeBySeed()));
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
    88
	//SENDIPC("emap test");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    89
	SENDIPC("TL");
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    90
	SendIPC(QString("e$gmflags %1").arg(gamecfg->getGameFlags()));
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    91
	SENDIPC("eaddteam");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    92
	SendTeamConfig(0);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    93
	SENDIPC("ecolor 65535");
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
    94
	SENDIPC("eadd hh0 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
    95
	SENDIPC("eadd hh1 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
    96
	SENDIPC("eadd hh2 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
    97
	SENDIPC("eadd hh3 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
    98
	SENDIPC("eadd hh4 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
    99
	SENDIPC("eadd hh5 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   100
	SENDIPC("eadd hh6 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   101
	SENDIPC("eadd hh7 1");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   102
	SENDIPC("eaddteam");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   103
	SendTeamConfig(1);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   104
	SENDIPC("ecolor 16776960");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   105
	SENDIPC("eadd hh0 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   106
	SENDIPC("eadd hh1 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   107
	SENDIPC("eadd hh2 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   108
	SENDIPC("eadd hh3 1");
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   109
	SENDIPC("eadd hh4 1");
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   110
	SENDIPC("eadd hh5 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   111
	SENDIPC("eadd hh6 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   112
	SENDIPC("eadd hh7 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   113
	SENDIPC("eaddteam");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   114
	SendTeamConfig(1);
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   115
	SENDIPC("ecolor 255");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   116
	SENDIPC("eadd hh0 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   117
	SENDIPC("eadd hh1 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   118
	SENDIPC("eadd hh2 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   119
	SENDIPC("eadd hh3 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   120
	SENDIPC("eadd hh4 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   121
	SENDIPC("eadd hh5 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   122
	SENDIPC("eadd hh6 1");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   123
	SENDIPC("eadd hh7 1");
25
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
{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   128
	switch(msg.data()[1])
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   129
	{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   130
		case '?':
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   131
		{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   132
			if (gameType == gtNet)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   133
				emit SendNet(QByteArray("\x01""?"));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   134
			else
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   135
				SENDIPC("!");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   136
			break;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   137
		}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   138
		case 'C':
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   139
		{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   140
			if (gameType == gtNet)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   141
			{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   142
				SENDIPC("TN");
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   143
				emit SendNet(QByteArray("\x01""C"));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   144
			}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   145
			else
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   146
			{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   147
				if (gameType == gtLocal)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   148
				 	SendConfig();
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   149
			}
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   150
			break;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   151
		}
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   152
		case 'E':
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   153
		{
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   154
			QMessageBox::critical(0,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   155
					"Hedgewars: error message",
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   156
					QString().append(msg.mid(2)).left(msg.size() - 6),
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   157
					QMessageBox::Ok,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   158
					QMessageBox::NoButton,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   159
					QMessageBox::NoButton);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   160
			return;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   161
		}
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   162
		case '+':
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   163
		{
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   164
			if (gameType == gtNet)
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   165
			{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   166
				emit SendNet(msg);
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   167
			}
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   168
			break;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   169
		}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   170
		default:
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   171
		{
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());
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   224
	quint8 msglen;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   225
	quint32 bufsize;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   226
	while (((bufsize = readbuffer.size()) > 0) &&
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   227
			((msglen = readbuffer.data()[0]) < bufsize))
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   228
	{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   229
		QByteArray msg = readbuffer.left(msglen + 1);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   230
		readbuffer.remove(0, msglen + 1);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   231
		ParseMessage(msg);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   232
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   233
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   234
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   235
void HWGame::Start()
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   236
{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   237
	IPCServer = new QTcpServer(this);
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   238
	connect(IPCServer, SIGNAL(newConnection()), this, SLOT(NewConnection()));
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   239
	IPCServer->setMaxPendingConnections(1);
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   240
	IPCSocket = 0;
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   241
	if (!IPCServer->listen(QHostAddress::LocalHost, IPC_PORT))
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   242
	{
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   243
		QMessageBox::critical(0, tr("Error"),
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   244
				tr("Unable to start the server: %1.")
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   245
				.arg(IPCServer->errorString()));
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   246
	}
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   247
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   248
	demo = new QByteArray;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   249
	QProcess * process;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   250
	QStringList arguments;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   251
	process = new QProcess;
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   252
	arguments << resolutions[0][config->vid_Resolution()];
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   253
	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
   254
	arguments << "16";
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   255
	arguments << "46631";
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   256
	arguments << (config->vid_Fullscreen() ? "1" : "0");
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   257
	arguments << (config->isSoundEnabled() ? "1" : "0");
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   258
	arguments << tr("en.txt");
52
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 43
diff changeset
   259
	process->start("./hwengine", arguments);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   260
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   261
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   262
void HWGame::AddTeam(const QString & teamname)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   263
{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   264
	if (TeamCount == 5) return;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   265
	teams[TeamCount] = teamname;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   266
	TeamCount++;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   267
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   268
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   269
QString HWGame::GetThemeBySeed()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   270
{
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   271
	QFile themesfile(QString(DATA_PATH) + "/Themes/themes.cfg");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   272
	QStringList themes;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   273
	if (themesfile.open(QIODevice::ReadOnly))
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   274
	{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   275
		QTextStream stream(&themesfile);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   276
		QString str;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   277
		while (!stream.atEnd())
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   278
		{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   279
			themes << stream.readLine();
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   280
		}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   281
		themesfile.close();
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   282
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   283
	quint32 len = themes.size();
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   284
	if (len == 0)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   285
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   286
		QMessageBox::critical(0, "Error", "Cannot access themes.cfg or bad data", "OK");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   287
		return "avematan";
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   288
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   289
	if (seed.isEmpty())
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   290
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   291
		QMessageBox::critical(0, "Error", "seed not defined", "OK");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   292
		return "avematan";
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   293
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   294
	quint32 k = 0;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   295
	for (int i = 0; i < seed.length(); i++)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   296
	{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   297
		k += seed[i].cell();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   298
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   299
	return themes[k % len];
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   300
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   301
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   302
void HWGame::SaveDemo(const QString & filename)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   303
{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   304
	QFile demofile(filename);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   305
	if (!demofile.open(QIODevice::WriteOnly))
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   306
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   307
		QMessageBox::critical(0,
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   308
				tr("Error"),
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   309
				tr("Cannot save demo to file %1").arg(filename),
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   310
				tr("Quit"));
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   311
		return ;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   312
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   313
	QDataStream stream(&demofile);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   314
	stream.writeRawData(demo->constData(), demo->size());
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   315
	demofile.close();
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   316
	delete demo;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   317
}
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   318
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   319
void HWGame::PlayDemo(const QString & demofilename)
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   320
{
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   321
	gameType = gtDemo;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   322
	QFile demofile(demofilename);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   323
	if (!demofile.open(QIODevice::ReadOnly))
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   324
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   325
		QMessageBox::critical(0,
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   326
				tr("Error"),
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   327
				tr("Cannot open demofile %1").arg(demofilename),
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   328
				tr("Quit"));
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   329
		return ;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   330
	}
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   331
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   332
	// read demo
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   333
	QDataStream stream(&demofile);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   334
	char buf[512];
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   335
	quint32 readbytes;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   336
	do
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   337
	{
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   338
		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
   339
		toSendBuf.append(QByteArray((char *)&buf, readbytes));
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   340
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   341
	} while (readbytes > 0);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   342
	demofile.close();
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   343
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   344
	// run engine
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   345
	Start();
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   346
}
31
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
void HWGame::StartNet(const QString & netseed)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   349
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   350
	gameType = gtNet;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   351
	seed = netseed;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   352
	demo = new QByteArray;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   353
	Start();
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   354
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   355
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   356
void HWGame::StartLocal()
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   357
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   358
	gameType = gtLocal;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   359
	if (TeamCount < 2) return;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   360
	seedgen.GenRNDStr(seed, 10);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   361
	Start();
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   362
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   363
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   364
void HWGame::LocalCFG(const QString & teamname)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   365
{
84
0f6669da2fcb Start rewrite ui
unc0rr
parents: 80
diff changeset
   366
	QFile teamcfg(config->cfgdir.absolutePath() + "/" + teamname + ".cfg");
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   367
	if (!teamcfg.open(QIODevice::ReadOnly))
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   368
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   369
		return ;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   370
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   371
	QTextStream stream(&teamcfg);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   372
	stream.setCodec("UTF-8");
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   373
	QString str;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   374
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   375
	while (!stream.atEnd())
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   376
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   377
		str = stream.readLine();
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   378
		if (str.startsWith(";") || (str.length() > 254)) continue;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   379
		str.prepend("e");
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 55
diff changeset
   380
		SendIPC(str.toUtf8());
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   381
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   382
	teamcfg.close();
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   383
}