QTfrontend/game.cpp
author unc0rr
Thu, 20 Jul 2006 20:11:32 +0000
changeset 80 3c3dc6a148ca
parent 74 42257fee61ae
child 84 0f6669da2fcb
permissions -rw-r--r--
- Fixed bug with hedgehog under water using rope - Add locale support in engine - Bots use ljump and hjump - Fix shotgun rating - Support for theme-dependent sprites - Horizon and sky can have any image size - Many small fixes
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"
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    43
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
    44
HWGame::HWGame(int Resolution, bool Fullscreen)
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    45
{
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
    46
	vid_Resolution = Resolution;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
    47
	vid_Fullscreen = Fullscreen;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    48
	TeamCount = 0;
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
    49
	seed = "";
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
    50
	cfgdir.setPath(cfgdir.homePath());
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
    51
	cfgdir.cd(".hedgewars");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    52
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    53
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    54
void HWGame::NewConnection()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    55
{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    56
	QTcpSocket * client = IPCServer->nextPendingConnection();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    57
	if(!IPCSocket)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    58
	{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    59
		IPCServer->close();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    60
		IPCSocket = client;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    61
		connect(client, SIGNAL(disconnected()), this, SLOT(ClientDisconnect()));
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    62
		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
    63
		if (toSendBuf.size() > 0)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
    64
			SENDIPC("?");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    65
	} else
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    66
	{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    67
		qWarning("2nd IPC client?!");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    68
		client->disconnectFromHost();
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
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    72
void HWGame::ClientDisconnect()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    73
{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    74
	SaveDemo("demo.hwd_1");
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    75
    IPCSocket->deleteLater();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    76
	IPCSocket = 0;
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
    77
	deleteLater();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    78
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    79
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    80
void HWGame::SendTeamConfig(int index)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    81
{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
    82
	LocalCFG(teams[index]);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    83
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    84
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    85
void HWGame::SendConfig()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    86
{
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
    87
	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
    88
	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
    89
	//SENDIPC("emap test");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    90
	SENDIPC("TL");
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
    91
	SENDIPC("e$gmflags 0");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    92
	SENDIPC("eaddteam");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    93
	SendTeamConfig(0);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    94
	SENDIPC("ecolor 65535");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    95
	SENDIPC("eadd hh0 0");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    96
	SENDIPC("eadd hh1 0");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    97
	SENDIPC("eadd hh2 0");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
    98
	SENDIPC("eadd hh3 0");
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
    99
	SENDIPC("eadd hh4 0");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   100
	SENDIPC("eaddteam");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   101
	SendTeamConfig(1);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   102
	SENDIPC("ecolor 16776960");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   103
	SENDIPC("eadd hh0 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   104
	SENDIPC("eadd hh1 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   105
	SENDIPC("eadd hh2 1");
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   106
	SENDIPC("eadd hh3 1");
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   107
	SENDIPC("eadd hh4 1");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   108
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   109
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   110
void HWGame::ParseMessage(const QByteArray & msg)
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   111
{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   112
	switch(msg.data()[1])
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   113
	{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   114
		case '?':
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   115
		{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   116
			if (gameType == gtNet)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   117
				emit SendNet(QByteArray("\x01""?"));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   118
			else
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   119
				SENDIPC("!");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   120
			break;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   121
		}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   122
		case 'C':
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   123
		{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   124
			if (gameType == gtNet)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   125
			{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   126
				SENDIPC("TN");
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   127
				emit SendNet(QByteArray("\x01""C"));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   128
			}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   129
			else
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   130
			{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   131
				if (gameType == gtLocal)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   132
				 	SendConfig();
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   133
			}
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
		}
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   136
		case 'E':
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   137
		{
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   138
			QMessageBox::critical(0,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   139
					"Hedgewars: error message",
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   140
					QString().append(msg.mid(2)).left(msg.size() - 6),
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   141
					QMessageBox::Ok,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   142
					QMessageBox::NoButton,
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   143
					QMessageBox::NoButton);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   144
			return;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   145
		}
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   146
		case '+':
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   147
		{
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   148
			if (gameType == gtNet)
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   149
			{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   150
				emit SendNet(msg);
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   151
			}
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   152
			break;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   153
		}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   154
		default:
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   155
		{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   156
			if (gameType == gtNet)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   157
			{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   158
				emit SendNet(msg);
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   159
			}
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   160
			demo->append(msg);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   161
		}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   162
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   163
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   164
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   165
void HWGame::SendIPC(const char * msg, quint8 len)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   166
{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   167
	SendIPC(QByteArray::fromRawData(msg, len));
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   168
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   169
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   170
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
   171
{
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   172
	SendIPC(QByteArray().append(buf));
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   173
}
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   174
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   175
void HWGame::SendIPC(const QByteArray & buf)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   176
{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   177
	if (buf.size() > MAXMSGCHARS) return;
40
416d54ce0c34 - More binds
unc0rr
parents: 36
diff changeset
   178
	quint8 len = buf.size();
416d54ce0c34 - More binds
unc0rr
parents: 36
diff changeset
   179
	RawSendIPC(QByteArray::fromRawData((char *)&len, 1) + buf);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   180
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   181
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   182
void HWGame::RawSendIPC(const QByteArray & buf)
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   183
{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   184
	if (!IPCSocket)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   185
	{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   186
		toSendBuf += buf;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   187
	} else
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   188
	{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   189
		if (toSendBuf.size() > 0)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   190
		{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   191
			IPCSocket->write(toSendBuf);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   192
			demo->append(toSendBuf);
40
416d54ce0c34 - More binds
unc0rr
parents: 36
diff changeset
   193
			toSendBuf.clear();
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   194
		}
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   195
		IPCSocket->write(buf);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   196
		demo->append(buf);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   197
	}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   198
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   199
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   200
void HWGame::FromNet(const QByteArray & msg)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   201
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   202
	RawSendIPC(msg);
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   203
}
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   204
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   205
void HWGame::ClientRead()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   206
{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   207
	readbuffer.append(IPCSocket->readAll());
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   208
	quint8 msglen;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   209
	quint32 bufsize;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   210
	while (((bufsize = readbuffer.size()) > 0) &&
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   211
			((msglen = readbuffer.data()[0]) < bufsize))
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   212
	{
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   213
		QByteArray msg = readbuffer.left(msglen + 1);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   214
		readbuffer.remove(0, msglen + 1);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 41
diff changeset
   215
		ParseMessage(msg);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   216
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   217
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   218
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   219
void HWGame::Start()
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   220
{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   221
	IPCServer = new QTcpServer(this);
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   222
	connect(IPCServer, SIGNAL(newConnection()), this, SLOT(NewConnection()));
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   223
	IPCServer->setMaxPendingConnections(1);
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   224
	IPCSocket = 0;
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   225
	if (!IPCServer->listen(QHostAddress::LocalHost, IPC_PORT))
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   226
	{
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   227
		QMessageBox::critical(0, tr("Error"),
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   228
				tr("Unable to start the server: %1.")
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   229
				.arg(IPCServer->errorString()));
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   230
	}
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   231
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   232
	demo = new QByteArray;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   233
	QProcess * process;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   234
	QStringList arguments;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   235
	process = new QProcess;
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   236
	arguments << resolutions[0][vid_Resolution];
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   237
	arguments << resolutions[1][vid_Resolution];
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   238
	arguments << "16";
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   239
	arguments << "46631";
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   240
	arguments << (vid_Fullscreen ? "1" : "0");
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 52
diff changeset
   241
	arguments << "1";
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   242
	arguments << tr("en.txt");
52
ae2950c5465c - Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents: 43
diff changeset
   243
	process->start("./hwengine", arguments);
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   244
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   245
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   246
void HWGame::AddTeam(const QString & teamname)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   247
{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   248
	if (TeamCount == 5) return;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   249
	teams[TeamCount] = teamname;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   250
	TeamCount++;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   251
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   252
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   253
QString HWGame::GetThemeBySeed()
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   254
{
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   255
	QFile themesfile(QString(DATA_PATH) + "/Themes/themes.cfg");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   256
	QStringList themes;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   257
	if (themesfile.open(QIODevice::ReadOnly))
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   258
	{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   259
		QTextStream stream(&themesfile);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   260
		QString str;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   261
		while (!stream.atEnd())
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   262
		{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   263
			themes << stream.readLine();
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   264
		}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   265
		themesfile.close();
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   266
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   267
	quint32 len = themes.size();
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   268
	if (len == 0)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   269
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   270
		QMessageBox::critical(0, "Error", "Cannot access themes.cfg or bad data", "OK");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   271
		return "avematan";
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   272
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   273
	if (seed.isEmpty())
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   274
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   275
		QMessageBox::critical(0, "Error", "seed not defined", "OK");
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   276
		return "avematan";
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   277
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   278
	quint32 k = 0;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   279
	for (int i = 0; i < seed.length(); i++)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   280
	{
41
5d7a505875cd - Fixed crash in IPC code
unc0rr
parents: 40
diff changeset
   281
		k += seed[i].cell();
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   282
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   283
	return themes[k % len];
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   284
}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   285
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   286
void HWGame::SaveDemo(const QString & filename)
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   287
{
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   288
	QFile demofile(filename);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   289
	if (!demofile.open(QIODevice::WriteOnly))
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,
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   292
				tr("Error"),
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   293
				tr("Cannot save demo to file %1").arg(filename),
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   294
				tr("Quit"));
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   295
		return ;
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   296
	}
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   297
	QDataStream stream(&demofile);
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   298
	stream.writeRawData(demo->constData(), demo->size());
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   299
	demofile.close();
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   300
	delete demo;
25
27aa8030322b - Get rid of old frontend
unc0rr
parents: 21
diff changeset
   301
}
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   302
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   303
void HWGame::PlayDemo(const QString & demofilename)
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   304
{
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   305
	gameType = gtDemo;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   306
	QFile demofile(demofilename);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   307
	if (!demofile.open(QIODevice::ReadOnly))
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   308
	{
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents: 26
diff changeset
   309
		QMessageBox::critical(0,
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   310
				tr("Error"),
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   311
				tr("Cannot open demofile %1").arg(demofilename),
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   312
				tr("Quit"));
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   313
		return ;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   314
	}
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   315
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   316
	// read demo
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   317
	QDataStream stream(&demofile);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   318
	char buf[512];
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   319
	quint32 readbytes;
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   320
	do
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   321
	{
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   322
		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
   323
		toSendBuf.append(QByteArray((char *)&buf, readbytes));
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   324
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   325
	} while (readbytes > 0);
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   326
	demofile.close();
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   327
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   328
	// run engine
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   329
	Start();
26
e32fa14529f8 Frontend lets define more binds
unc0rr
parents: 25
diff changeset
   330
}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   331
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   332
void HWGame::StartNet(const QString & netseed)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   333
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   334
	gameType = gtNet;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   335
	seed = netseed;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   336
	demo = new QByteArray;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   337
	Start();
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   338
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   339
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   340
void HWGame::StartLocal()
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   341
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   342
	gameType = gtLocal;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   343
	if (TeamCount < 2) return;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   344
	seedgen.GenRNDStr(seed, 10);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   345
	Start();
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   346
}
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::LocalCFG(const QString & teamname)
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
	QFile teamcfg(cfgdir.absolutePath() + "/" + teamname + ".cfg");
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   351
	if (!teamcfg.open(QIODevice::ReadOnly))
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
		return ;
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
	QTextStream stream(&teamcfg);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   356
	stream.setCodec("UTF-8");
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   357
	QString str;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   358
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   359
	while (!stream.atEnd())
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   360
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   361
		str = stream.readLine();
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   362
		if (str.startsWith(";") || (str.length() > 254)) continue;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   363
		str.prepend("e");
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 55
diff changeset
   364
		SendIPC(str.toUtf8());
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   365
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   366
	teamcfg.close();
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 28
diff changeset
   367
}