QTfrontend/netclient.cpp
author unc0rr
Sat, 31 Dec 2005 13:46:49 +0000
changeset 36 a803a00a3272
parent 32 78bff13b11c0
child 37 2b7f2a43b999
permissions -rw-r--r--
- Anti-flood and anti-lag changes - Fixed crash on connect to net server
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     1
/*
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2005 Andrey Korotaev <unC0Rr@gmail.com>
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     4
 *
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     5
 * Distributed under the terms of the BSD-modified licence:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     6
 *
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     8
 * of this software and associated documentation files (the "Software"), to deal
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
     9
 * with the Software without restriction, including without limitation the
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    11
 * sell copies of the Software, and to permit persons to whom the Software is
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    12
 * furnished to do so, subject to the following conditions:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    13
 *
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    14
 * 1. Redistributions of source code must retain the above copyright notice,
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    15
 *    this list of conditions and the following disclaimer.
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    16
 * 2. Redistributions in binary form must reproduce the above copyright notice,
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    17
 *    this list of conditions and the following disclaimer in the documentation
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    18
 *    and/or other materials provided with the distribution.
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    19
 * 3. The name of the author may not be used to endorse or promote products
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    20
 *    derived from this software without specific prior written permission.
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    21
 *
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    22
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    23
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    24
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    25
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    30
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    31
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    32
 */
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    33
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    34
#include <QMessageBox>
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    35
#include "netclient.h"
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    36
#include "game.h"
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    37
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    38
HWNet::HWNet(int Resolution, bool Fullscreen)
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    39
	: QObject()
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    40
{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    41
	gameResolution = Resolution;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    42
	gameFullscreen = Fullscreen;
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    43
	state = nsDisconnected;
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    44
	IRCmsg_cmd_text = new QRegExp("^[A-Z]+ :.+$");
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    45
	IRCmsg_number_param = new QRegExp("^:\\S+ [0-9]{3} .+$");
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    46
	IRCmsg_who_cmd_target = new QRegExp("^:\\S+ [A-Z]+ \\S+$"); // last \\S should mean 'the 1st char is not ":"'
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    47
	IRCmsg_who_cmd_text = new QRegExp("^:\\S+ [A-Z]+ :.+$");
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    48
	IRCmsg_who_cmd_target_text = new QRegExp("^:\\S+ [A-Z]+ \\S+ :.+$");
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
    49
	isOp = false;
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
    50
	teamsCount = 0;
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    51
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    52
	connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead()));
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    53
	connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect()));
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    54
	connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect()));
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    55
	connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this,
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    56
			SLOT(displayError(QAbstractSocket::SocketError)));
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    57
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    58
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    59
void HWNet::ClientRead()
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    60
{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    61
	while (NetSocket.canReadLine())
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    62
	{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    63
		ParseLine(NetSocket.readLine().trimmed());
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    64
	}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    65
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    66
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    67
void HWNet::displayError(QAbstractSocket::SocketError socketError)
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    68
{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    69
	switch (socketError)
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    70
	{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    71
		case QAbstractSocket::RemoteHostClosedError:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    72
			break;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    73
		case QAbstractSocket::HostNotFoundError:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    74
			QMessageBox::information(0, tr("Error"),
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    75
					tr("The host was not found. Please check the host name and port settings."));
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    76
			break;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    77
		case QAbstractSocket::ConnectionRefusedError:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    78
			QMessageBox::information(0, tr("Error"),
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    79
					tr("Connection refused"));
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    80
			break;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    81
		default:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    82
			QMessageBox::information(0, tr("Error"),
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    83
					NetSocket.errorString());
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    84
    }
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    85
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    86
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
    87
void HWNet::Connect(const QString & hostName, quint16 port, const QString & nick)
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    88
{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    89
	state = nsConnecting;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    90
	NetSocket.connectToHost(hostName, port);
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
    91
	mynick = nick;
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
    92
	opnick = "";
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
    93
	opCount = 0;
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    94
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    95
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    96
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    97
void HWNet::OnConnect()
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    98
{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
    99
	state = nsConnected;
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   100
	RawSendNet(QString("USER hwgame 1 2 Hedgewars game"));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   101
	RawSendNet(QString("NICK %1").arg(mynick));
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   102
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   103
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   104
void HWNet::OnDisconnect()
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   105
{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   106
	state = nsDisconnected;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   107
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   108
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   109
void HWNet::Perform()
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   110
{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   111
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   112
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   113
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   114
void HWNet::JoinGame(const QString & game)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   115
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   116
	state = nsJoining;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   117
	RawSendNet(QString("JOIN %1").arg(game));
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   118
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   119
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   120
void HWNet::Disconnect()
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   121
{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   122
	switch (state)
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   123
	{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   124
		case nsDisconnected:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   125
		{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   126
			break;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   127
		}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   128
		case nsConnecting:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   129
		case nsQuitting:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   130
		{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   131
			NetSocket.disconnect();
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   132
			break;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   133
		}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   134
		default:
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   135
		{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   136
			state = nsQuitting;
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   137
			RawSendNet(QString("QUIT :oops"));
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   138
		}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   139
	}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   140
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   141
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   142
void HWNet::RawSendNet(const QString & str)
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   143
{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   144
	RawSendNet(str.toLatin1());
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   145
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   146
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   147
void HWNet::RawSendNet(const QByteArray & buf)
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   148
{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   149
	if (buf.size() > 510) return;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   150
	NetSocket.write(buf);
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   151
	NetSocket.write("\x0d\x0a", 2);
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   152
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   153
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   154
void HWNet::SendNet(const QByteArray & buf)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   155
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   156
	if ((state == nsGaming) || (state == nsStarting))
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   157
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   158
		QString msg = QString(buf.toBase64());
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   159
		if ((msg == "AUM=") && (mynick == opnick))
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   160
		{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   161
			ConfigAsked();
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   162
		} else
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   163
		if (msg == "AT8=")
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   164
		{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   165
			// its ping ("?")
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   166
		} else
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   167
		{
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   168
			if (state == nsGaming)
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   169
			{
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   170
				NetBuffer += buf;
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   171
			} else
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   172
			{
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   173
				RawSendNet(QString("PRIVMSG %1 :"MAGIC_CHAR MAGIC_CHAR"%2").arg(channel, msg));
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   174
			}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   175
		}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   176
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   177
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   178
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   179
void HWNet::FlushNetBuf()
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   180
{
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   181
	if (NetBuffer.size() > 0)
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   182
	{
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   183
		RawSendNet(QString("PRIVMSG %1 :"MAGIC_CHAR MAGIC_CHAR"%2").arg(channel, QString(NetBuffer.toBase64())));
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   184
		NetBuffer.clear();
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   185
	}
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   186
}
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   187
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   188
void HWNet::ParseLine(const QString & msg)
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   189
{
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   190
	//QMessageBox::information(0, "", msg);
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   191
	if (IRCmsg_cmd_text->exactMatch(msg))
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   192
	{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   193
		msgcmd_textHandler(msg);
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   194
	} else
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   195
	if (IRCmsg_number_param->exactMatch(msg))
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   196
	{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   197
		msgnumber_paramHandler(msg);
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   198
	} else
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   199
	if (IRCmsg_who_cmd_text->exactMatch(msg))
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   200
	{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   201
		msgwho_cmd_textHandler(msg);
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   202
	} else
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   203
	if (IRCmsg_who_cmd_target->exactMatch(msg))
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   204
	{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   205
		msgwho_cmd_targetHandler(msg);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   206
	} else
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   207
	if (IRCmsg_who_cmd_target_text->exactMatch(msg))
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   208
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   209
		msgwho_cmd_target_textHandler(msg);
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   210
	}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   211
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   212
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   213
void HWNet::msgcmd_textHandler(const QString & msg)
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   214
{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   215
	QStringList list = msg.split(" :");
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   216
	if (list[0] == "PING")
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   217
	{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   218
		RawSendNet(QString("PONG %1").arg(list[1]));
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   219
	}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   220
}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   221
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   222
void HWNet::msgnumber_paramHandler(const QString & msg)
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   223
{
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   224
	int pos = msg.indexOf(" :");
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   225
	QString text = msg.mid(pos + 2);
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   226
	QStringList list = msg.mid(0, pos).split(" ");
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   227
	bool ok;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   228
	quint16 number = list[1].toInt(&ok);
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   229
	if (!ok)
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   230
		return ;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   231
	switch (number)
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   232
	{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   233
		case 001 :
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   234
		{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   235
			Perform();
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   236
			emit Connected();
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   237
			break;
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   238
		}
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   239
		case 322 : // RPL_LIST
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   240
		{
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   241
			emit AddGame(list[3]);
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   242
			break;
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   243
		}
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   244
		case 353 : // RPL_NAMREPLY
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   245
		{
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   246
			QStringList ops = text.split(" ").filter(QRegExp("^@\\S+$"));
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   247
			opCount += ops.size();
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   248
			if (ops.size() == 1)
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   249
			{
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   250
				opnick = ops[0].mid(1);
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   251
			}
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   252
			break;
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   253
		}
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   254
		case 366 : // RPL_ENDOFNAMES
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   255
		{
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   256
			if (opCount != 1)
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   257
			{
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   258
				opnick = "";
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   259
			}
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   260
			opCount = 0;
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   261
			break;
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   262
		}
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   263
		case 432 : // ERR_ERRONEUSNICKNAME
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   264
		case 433 : // ERR_NICKNAMEINUSE
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   265
		{
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   266
			// ask for another nick
28
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   267
		}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   268
	}
59f7db859b8a - clear demos list before adding items
unc0rr
parents:
diff changeset
   269
}
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   270
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   271
void HWNet::msgwho_cmd_targetHandler(const QString & msg)
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   272
{
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   273
	QStringList list = msg.split(" ");
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   274
	QString who = list[0].mid(1).split("!")[0];
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   275
	if (list[1] == "NICK")
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   276
	{
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   277
		if (mynick == who)
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   278
			mynick = list[2];
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   279
		if (opnick == who)
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   280
			opnick = list[2];
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   281
	}
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   282
}
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   283
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   284
void HWNet::msgwho_cmd_textHandler(const QString & msg)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   285
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   286
	int pos = msg.indexOf(" :");
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   287
	QString text = msg.mid(pos + 2);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   288
	QStringList list = msg.mid(0, pos).split(" ");
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   289
	QString who = list[0].mid(1).split("!")[0];
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   290
	if (list[1] == "JOIN")
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   291
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   292
		if (who == mynick)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   293
		{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   294
			channel = text;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   295
			state = nsJoined;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   296
			emit EnteredGame();
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   297
			RawSendNet(QString("PRIVMSG %1 :Hello!").arg(channel));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   298
		}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   299
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   300
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   301
void HWNet::msgwho_cmd_target_textHandler(const QString & msg)
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   302
{
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   303
	int pos = msg.indexOf(" :");
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   304
	QString text = msg.mid(pos + 2);
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   305
	QStringList list = msg.mid(0, pos).split(" ");
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   306
	QString who = list[0].mid(1).split("!")[0];
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   307
	if (list[1] == "PRIVMSG")
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   308
	{
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   309
		if (list[2] == opnick)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   310
		{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   311
			hwp_opmsg(who, text);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   312
		} else
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   313
		if (list[2] == channel)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   314
		{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   315
			hwp_chanmsg(who, text);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   316
		}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   317
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   318
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   319
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   320
void HWNet::hwp_opmsg(const QString & who, const QString & msg)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   321
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   322
	if (state != nsJoined)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   323
		return ;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   324
	if (!msg.startsWith(MAGIC_CHAR))
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   325
		return ;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   326
	QStringList list = msg.split(MAGIC_CHAR, QString::SkipEmptyParts);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   327
	if (list[0] == "A")
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   328
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   329
		list.removeFirst();
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   330
		if (list.size() != 9)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   331
			return ;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   332
		if (teamsCount < 5)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   333
		{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   334
			teams[teamsCount].nick = who;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   335
			teams[teamsCount].hhs = list;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   336
			teamsCount++;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   337
			QString teamnames;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   338
			for(int i = 0; i < teamsCount; i++)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   339
			{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   340
				teamnames += MAGIC_CHAR;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   341
				teamnames += teams[i].hhs[0];
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   342
			}
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   343
			QString tmsg = QString(MAGIC_CHAR"=%2").arg(teamnames);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   344
			RawSendNet(QString("PRIVMSG %1 :").arg(channel) + tmsg);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   345
			hwp_chanmsg(mynick, tmsg);
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   346
		}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   347
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   348
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   349
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   350
void HWNet::ConfigAsked()
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   351
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   352
	configasks++;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   353
	if (configasks == playerscnt)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   354
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   355
		quint32 color = 65535;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   356
		for (int i = 0; i < teamsCount; i++)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   357
		{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   358
			QString msg;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   359
			msg = MAGIC_CHAR "T" MAGIC_CHAR + teams[i].nick + MAGIC_CHAR + teams[i].hhs.join(MAGIC_CHAR);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   360
			RawSendNet(QString("PRIVMSG %1 :%2").arg(channel, msg));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   361
			hwp_chanmsg(mynick, msg);
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   362
			QByteArray cache;
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   363
			#define ADD(a) { \
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   364
							QByteArray strmsg; \
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   365
							strmsg.append(a); \
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   366
							quint8 sz = strmsg.size(); \
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   367
							cache.append(QByteArray((char *)&sz, 1)); \
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   368
							cache.append(strmsg); \
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   369
							}
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   370
			ADD(QString("ecolor %1").arg(color));
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   371
			ADD("eadd hh0 0");
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   372
			ADD("eadd hh1 0");
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   373
			ADD("eadd hh2 0");
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   374
			ADD("eadd hh3 0");
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   375
			ADD("eadd hh4 0");
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   376
			#undef ADD
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   377
			QString _msg = MAGIC_CHAR MAGIC_CHAR + QString(cache.toBase64());
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   378
			hwp_chanmsg(mynick, _msg);
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   379
			RawSendNet(QString("PRIVMSG %1 :").arg(channel) + _msg);
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   380
			color <<= 8;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   381
		}
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   382
		SENDCFGSTRNET("!");
29
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   383
	}
9311259d5242 More work on net game, still far from complete
unc0rr
parents: 28
diff changeset
   384
}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   385
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   386
void HWNet::hwp_chanmsg(const QString & who, const QString & msg)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   387
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   388
	if ((state < nsJoined) || (state > nsGaming))
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   389
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   390
		return ;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   391
	}
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   392
	if (state == nsJoined)
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   393
	{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   394
		if (msg.startsWith(MAGIC_CHAR"Start!"MAGIC_CHAR) && (who == opnick))
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   395
		{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   396
			state = nsStarting;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   397
			RunGame(msg.mid(7));
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   398
			return ;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   399
		}
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   400
		if (msg.startsWith(MAGIC_CHAR"="MAGIC_CHAR) && (who == opnick))
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   401
		{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   402
			emit ChangeInTeams(msg.mid(3).split(MAGIC_CHAR));
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   403
		}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   404
	}
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   405
	if (state == nsStarting)
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   406
	{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   407
		if (msg == MAGIC_CHAR MAGIC_CHAR "AUM=")
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   408
		{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   409
			if (mynick == opnick) ConfigAsked();
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   410
			return ;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   411
		}
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   412
		if (msg == MAGIC_CHAR MAGIC_CHAR "ASE=")
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   413
		{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   414
			state = nsGaming;
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   415
			TimerFlusher = new QTimer();
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   416
			connect(TimerFlusher, SIGNAL(timeout()), this, SLOT(FlushNetBuf()));
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   417
			TimerFlusher->start(2000);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   418
		}
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   419
		if (msg.startsWith(MAGIC_CHAR"T"MAGIC_CHAR))
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   420
		{
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   421
			NetTeamAdded(msg.mid(3));
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   422
		}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   423
	}
36
a803a00a3272 - Anti-flood and anti-lag changes
unc0rr
parents: 32
diff changeset
   424
	if ((state < nsStarting) || (state > nsGaming))
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   425
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   426
		return;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   427
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   428
	if (msg.startsWith(MAGIC_CHAR MAGIC_CHAR)) // HWP message
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   429
	{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   430
		QByteArray em = QByteArray::fromBase64(msg.mid(2).toLocal8Bit());
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   431
		emit FromNet(em);
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   432
	} else // smth other
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   433
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   434
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   435
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   436
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   437
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   438
void HWNet::NetTeamAdded(const QString & msg)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   439
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   440
	QStringList list = msg.split(MAGIC_CHAR, QString::SkipEmptyParts);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   441
	if (list.size() != 10)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   442
		return ;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   443
	SENDCFGSTRLOC("eaddteam");
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   444
	if (list[0] == mynick)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   445
	{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   446
		emit LocalCFG(list[1]);
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   447
	} else
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   448
	{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   449
		SENDCFGSTRLOC("erdriven");
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   450
		SENDCFGSTRLOC(QString("ename team %1").arg(list[1]));
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   451
		for (int i = 0; i < 8; i++)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   452
		{
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   453
			SENDCFGSTRLOC(QString("ename hh%1 ").arg(i) + list[i + 2]);
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   454
		}
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 31
diff changeset
   455
	}
31
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   456
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   457
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   458
void HWNet::AddTeam(const HWTeam & team)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   459
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   460
	if (state != nsJoined)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   461
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   462
		return ;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   463
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   464
	RawSendNet(QString("PRIVMSG %1 :").arg(opnick) + MAGIC_CHAR "A" MAGIC_CHAR +
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   465
			team.TeamName + MAGIC_CHAR + team.HHName[0] + MAGIC_CHAR + team.HHName[1] + MAGIC_CHAR +
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   466
			team.HHName[2] + MAGIC_CHAR + team.HHName[3] + MAGIC_CHAR + team.HHName[4] + MAGIC_CHAR +
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   467
			team.HHName[5] + MAGIC_CHAR + team.HHName[6] + MAGIC_CHAR + team.HHName[7]);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   468
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   469
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   470
void HWNet::StartGame()
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   471
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   472
	if ((opnick != mynick) || (state != nsJoined))
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   473
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   474
		return ;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   475
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   476
	QStringList players;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   477
	for (int i = 0; i < teamsCount; i++)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   478
	{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   479
		if (!players.contains(teams[i].nick))
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   480
		{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   481
			players.append(teams[i].nick);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   482
		}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   483
	}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   484
	playerscnt = players.size();
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   485
	configasks = 0;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   486
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   487
	QString seed;
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   488
	seedgen.GenRNDStr(seed, 10);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   489
	QString msg = QString(MAGIC_CHAR"Start!"MAGIC_CHAR"%1").arg(seed);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   490
	RawSendNet(QString("PRIVMSG %1 :%2").arg(channel, msg));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   491
	hwp_chanmsg(mynick, msg);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   492
}
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   493
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   494
void HWNet::RunGame(const QString & seed)
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   495
{
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   496
	HWGame * game = new HWGame(gameResolution, gameFullscreen);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   497
	connect(game, SIGNAL(SendNet(const QByteArray &)), this, SLOT(SendNet(const QByteArray &)));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   498
	connect(this, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &)));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   499
	connect(this, SIGNAL(LocalCFG(const QString &)), game, SLOT(LocalCFG(const QString &)));
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   500
	game->StartNet(seed);
99888245a4e8 Now net game is near available, but exception occurs...
unc0rr
parents: 29
diff changeset
   501
}