QTfrontend/newnetclient.cpp
author unc0rr
Thu, 08 Jan 2009 15:34:51 +0000
changeset 1600 305e13c5f327
parent 1592 5ee77ee470a6
child 1648 32d99a3c7998
permissions -rw-r--r--
Go page back when room is abandoned by its admin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 884
diff changeset
     2
 * Hedgewars, a free turn based strategy game
883
07a568ba44e0 Update copyright info in source files headers
unc0rr
parents: 747
diff changeset
     3
 * Copyright (c) 2006-2008 Ulyanov Igor <iulyanov@gmail.com>
1569
4456a0dfc647 - Update some copyrights
unc0rr
parents: 1568
diff changeset
     4
 * Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com>
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
     5
 *
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
     9
 *
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    13
 * GNU General Public License for more details.
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    14
 *
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    16
 * along with this program; if not, write to the Free Software
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    18
 */
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    19
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    20
#include <QMessageBox>
1189
f66cdbbfc4b6 Fix compile under Ubuntu (why it compiles everywhere else?)
unc0rr
parents: 1083
diff changeset
    21
#include <QDebug>
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    22
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
    23
#include "hwconsts.h"
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    24
#include "newnetclient.h"
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    25
#include "proto.h"
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    26
#include "gameuiconfig.h"
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    27
#include "game.h"
334
85eacbd9827f protocol changes
displacer
parents: 332
diff changeset
    28
#include "gamecfgwidget.h"
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
    29
#include "teamselect.h"
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    30
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    31
char delimeter='\n';
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    32
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 338
diff changeset
    33
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) :
334
85eacbd9827f protocol changes
displacer
parents: 332
diff changeset
    34
  config(config),
85eacbd9827f protocol changes
displacer
parents: 332
diff changeset
    35
  m_pGameCFGWidget(pGameCFGWidget),
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 338
diff changeset
    36
  m_pTeamSelWidget(pTeamSelWidget),
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    37
  isChief(false),
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    38
  m_game_connected(false),
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    39
  loginStep(0),
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    40
  netClientState(0)
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    41
{
1418
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    42
	connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead()));
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    43
	connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect()));
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    44
	connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect()));
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    45
	connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this,
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    46
			SLOT(displayError(QAbstractSocket::SocketError)));
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    47
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    48
1526
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    49
HWNewNet::~HWNewNet()
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    50
{
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    51
	if (m_game_connected)
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    52
		RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit"));
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    53
	NetSocket.flush();
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    54
}
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    55
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    56
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    57
{
1418
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    58
	mynick = nick;
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    59
	NetSocket.connectToHost(hostName, port);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    60
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    61
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    62
void HWNewNet::Disconnect()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    63
{
1354
a8dcdeb88a43 Various small insignificant improvements everywhere
unc0rr
parents: 1351
diff changeset
    64
	if (m_game_connected)
1526
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    65
		RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit"));
1354
a8dcdeb88a43 Various small insignificant improvements everywhere
unc0rr
parents: 1351
diff changeset
    66
	m_game_connected = false;
a8dcdeb88a43 Various small insignificant improvements everywhere
unc0rr
parents: 1351
diff changeset
    67
	NetSocket.disconnectFromHost();
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    68
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    69
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    70
void HWNewNet::CreateRoom(const QString & room)
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    71
{
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    72
	if(netClientState != 2)
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    73
	{
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
    74
		qWarning("Illegal try to create room!");
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    75
		return;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    76
	}
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    77
	
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    78
	RawSendNet(QString("CREATE%1%2").arg(delimeter).arg(room));
1336
4e88eccbe7f6 Fix team colors mismatch on some conditions (just synchronize them when team is added)
unc0rr
parents: 1333
diff changeset
    79
	m_pGameCFGWidget->setEnabled(true);
1475
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1471
diff changeset
    80
	m_pTeamSelWidget->setInteractivity(true);
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    81
	isChief = true;
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    82
}
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    83
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    84
void HWNewNet::JoinRoom(const QString & room)
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    85
{
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    86
	if(netClientState != 2)
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    87
	{
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
    88
		qWarning("Illegal try to join room!");
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    89
		return;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    90
	}
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    91
	
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    92
	loginStep++;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    93
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    94
	RawSendNet(QString("JOIN%1%2").arg(delimeter).arg(room));
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    95
	m_pGameCFGWidget->setEnabled(false);
1475
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1471
diff changeset
    96
	m_pTeamSelWidget->setInteractivity(false);
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    97
	isChief = false;
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    98
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    99
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   100
void HWNewNet::AddTeam(const HWTeam & team)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   101
{
1327
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   102
	QString cmd = QString("ADD_TEAM") + delimeter +
382
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 373
diff changeset
   103
	     team.TeamName + delimeter +
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 373
diff changeset
   104
	     team.teamColor.name() + delimeter +
443
eec37eb7f5db fort, grave and difficulty information for net team
displacer
parents: 431
diff changeset
   105
	     team.Grave + delimeter +
eec37eb7f5db fort, grave and difficulty information for net team
displacer
parents: 431
diff changeset
   106
	     team.Fort + delimeter +
1245
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   107
	     QString::number(team.difficulty);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   108
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   109
	for(int i = 0; i < 8; ++i)
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   110
	{
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   111
		cmd.append(delimeter);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   112
		cmd.append(team.HHName[i]);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   113
		cmd.append(delimeter);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   114
		cmd.append(team.HHHat[i]);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   115
	}
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   116
	RawSendNet(cmd);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   117
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   118
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   119
void HWNewNet::RemoveTeam(const HWTeam & team)
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   120
{
1329
69ddc231a911 - Only team owner can remove team from the list
unc0rr
parents: 1327
diff changeset
   121
	RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName);
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   122
}
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   123
1404
2b6b6809c2e4 - Fix a bug in READY message handling
unc0rr
parents: 1391
diff changeset
   124
void HWNewNet::ToggleReady()
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   125
{
1404
2b6b6809c2e4 - Fix a bug in READY message handling
unc0rr
parents: 1391
diff changeset
   126
  RawSendNet(QString("TOGGLE_READY"));
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   127
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   128
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   129
void HWNewNet::SendNet(const QByteArray & buf)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   130
{
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   131
  QString msg = QString(buf.toBase64());
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   132
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   133
  RawSendNet(QString("GAMEMSG%1%2").arg(delimeter).arg(msg));
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   134
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   135
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   136
void HWNewNet::RawSendNet(const QString & str)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   137
{
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   138
  RawSendNet(str.toUtf8());
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   139
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   140
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   141
void HWNewNet::RawSendNet(const QByteArray & buf)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   142
{
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   143
	qDebug() << "Client: " << QString(buf).split("\n");
1369
f5b1b3fd70cc - Add brazilian translation
unc0rr
parents: 1360
diff changeset
   144
	NetSocket.write(buf);
f5b1b3fd70cc - Add brazilian translation
unc0rr
parents: 1360
diff changeset
   145
	NetSocket.write("\n\n", 2);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   146
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   147
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   148
void HWNewNet::ClientRead()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   149
{
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   150
	while (NetSocket.canReadLine()) {
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   151
		QString s = QString::fromUtf8(NetSocket.readLine().trimmed());
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   152
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   153
		if (s.size() == 0) {
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   154
			ParseCmd(cmdbuf);
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   155
			cmdbuf.clear();
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   156
		} else
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   157
			cmdbuf << s;
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   158
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   159
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   160
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   161
void HWNewNet::OnConnect()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   162
{
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   163
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   164
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   165
void HWNewNet::OnDisconnect()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   166
{
338
d1e75dcd285f multiple teams now available per host (still alpha)
displacer
parents: 335
diff changeset
   167
  //emit ChangeInTeams(QStringList());
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
   168
  if(m_game_connected) emit Disconnected();
1354
a8dcdeb88a43 Various small insignificant improvements everywhere
unc0rr
parents: 1351
diff changeset
   169
  m_game_connected = false;
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   170
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   171
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   172
void HWNewNet::displayError(QAbstractSocket::SocketError socketError)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   173
{
1302
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   174
	switch (socketError) {
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   175
		case QAbstractSocket::RemoteHostClosedError:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   176
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   177
		case QAbstractSocket::HostNotFoundError:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   178
			QMessageBox::information(0, tr("Error"),
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   179
					tr("The host was not found. Please check the host name and port settings."));
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   180
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   181
		case QAbstractSocket::ConnectionRefusedError:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   182
			QMessageBox::information(0, tr("Error"),
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   183
					tr("Connection refused"));
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   184
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   185
		default:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   186
			QMessageBox::information(0, tr("Error"),
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   187
					NetSocket.errorString());
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   188
		}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   189
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   190
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   191
void HWNewNet::ParseCmd(const QStringList & lst)
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   192
{
1591
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   193
	qDebug() << "Server: " << lst;
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   194
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   195
	if(!lst.size())
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   196
	{
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   197
		qWarning("Net client: Bad message");
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   198
		return;
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   199
	}
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 319
diff changeset
   200
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   201
	if ((lst[0] == "NICK") || (lst[0] == "PROTO"))
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   202
	{
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   203
		loginStep++;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   204
		if (loginStep == 2)
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   205
		{
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   206
			netClientState = 2;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   207
			RawSendNet(QString("LIST"));
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   208
		}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   209
		return ;
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   210
	}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   211
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   212
	if (lst[0] == "ERROR") {
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   213
		if (lst.size() == 2)
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   214
			emit showMessage("Error: " + lst[1]);
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   215
		else
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   216
			emit showMessage("Unknown error");
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   217
		return;
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   218
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   219
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   220
	if (lst[0] == "WARNING") {
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   221
		if (lst.size() == 2)
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   222
			emit showMessage("Warning: " + lst[1]);
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   223
		else
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   224
			emit showMessage("Unknown warning");
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   225
		return;
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   226
	}
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   227
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   228
	if (lst[0] == "CONNECTED") {
1471
b5295ec49e94 Follow protocol more precisely in frontend
unc0rr
parents: 1462
diff changeset
   229
		RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick));
b5295ec49e94 Follow protocol more precisely in frontend
unc0rr
parents: 1462
diff changeset
   230
		RawSendNet(QString("PROTO%1%2").arg(delimeter).arg(*cProtoVer));
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   231
		netClientState = 1;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   232
		m_game_connected = true;
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   233
		emit Connected();
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   234
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   235
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   236
1462
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   237
	if (lst[0] == "PING") {
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   238
		RawSendNet(QString("PONG"));
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   239
		return;
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   240
	}
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   241
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   242
	if (lst[0] == "ROOMS") {
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   243
		QStringList tmp = lst;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   244
		tmp.removeFirst();
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   245
		emit roomsList(tmp);
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   246
		return;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   247
	}
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   248
1377
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   249
	if (lst[0] == "SERVER_MESSAGE") {
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   250
		if(lst.size() < 2)
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   251
		{
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   252
			qWarning("Net: Empty SERVERMESSAGE message");
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   253
			return;
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   254
		}
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   255
		emit serverMessage(lst[1]);
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   256
		return;
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   257
	}
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   258
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   259
	if (lst[0] == "CHAT_STRING") {
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   260
		if(lst.size() < 3)
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   261
		{
1377
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   262
			qWarning("Net: Empty CHAT_STRING message");
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   263
			return;
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   264
		}
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   265
		if (netClientState == 2)
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   266
			emit chatStringLobby(formatChatMsg(lst[1], lst[2]));
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   267
		else
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   268
			emit chatStringFromNet(formatChatMsg(lst[1], lst[2]));
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   269
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   270
	}
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   271
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   272
	if (lst[0] == "INFO") {
1584
90f6a5abad17 Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents: 1581
diff changeset
   273
		if(lst.size() < 5)
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   274
		{
1584
90f6a5abad17 Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents: 1581
diff changeset
   275
			qWarning("Net: Malformed INFO message");
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   276
			return;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   277
		}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   278
		QStringList tmp = lst;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   279
		tmp.removeFirst();
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   280
		if (netClientState == 2)
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1585
diff changeset
   281
			emit chatStringLobby(tmp.join("\n"));
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   282
		else
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1585
diff changeset
   283
			emit chatStringFromNet(tmp.join("\n"));
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   284
		return;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   285
	}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   286
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   287
	if (lst[0] == "READY") {
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   288
		if(lst.size() != 2)
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   289
		{
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   290
			qWarning("Net: Malformed READY message");
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   291
			return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   292
		}
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   293
		emit setReadyStatus(lst[1], true);
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   294
		return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   295
	}
1591
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   296
	
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   297
	if (lst[0] == "NOT_READY") {
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   298
		if(lst.size() != 2)
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   299
		{
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   300
			qWarning("Net: Malformed NOT_READY message");
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   301
			return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   302
		}
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   303
		emit setReadyStatus(lst[1], false);
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   304
		return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   305
	}
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   306
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   307
	if (lst[0] == "ADD_TEAM") {
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   308
		if(lst.size() != 21)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   309
		{
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   310
			qWarning("Net: Bad ADDTEAM message");
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   311
			return;
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   312
		}
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   313
		QStringList tmp = lst;
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   314
		tmp.removeFirst();
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   315
		emit AddNetTeam(tmp);
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   316
		return;
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   317
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   318
1338
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   319
	if (lst[0] == "REMOVE_TEAM") {
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   320
		if(lst.size() != 2)
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   321
		{
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   322
			qWarning("Net: Bad REMOVETEAM message");
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   323
			return;
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   324
		}
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   325
		m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1]));
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   326
		if (netClientState == 5) // we're in game, need to tell the engine about this
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   327
		{
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   328
			QByteArray em;
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   329
			HWProto::addStringToBuffer(em, "F" + lst[1]);
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   330
			emit FromNet(em);
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   331
		}
1338
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   332
		return;
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   333
	}
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   334
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   335
	if(lst[0]=="ROOMABANDONED") {
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   336
		netClientState = 2;
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   337
		emit showMessage(HWNewNet::tr("Room destroyed"));
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   338
		emit LeftRoom();
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   339
		return;
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   340
	}
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   341
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   342
	if(lst[0]=="JOINED") {
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   343
		if(lst.size() < 2)
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   344
		{
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   345
			qWarning("Net: Bad JOINED message");
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   346
			return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   347
		}
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   348
		
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   349
		for(int i = 1; i < lst.size(); ++i)
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   350
		{
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   351
			if (lst[i] == mynick)
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   352
			{
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   353
				netClientState = 3;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   354
				emit EnteredGame();
1316
50514e45d0b5 - Add join and leave messages to chat box
unc0rr
parents: 1315
diff changeset
   355
				if (isChief)
50514e45d0b5 - Add join and leave messages to chat box
unc0rr
parents: 1315
diff changeset
   356
					ConfigAsked();
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   357
			}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   358
			emit nickAdded(lst[i]);
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   359
			emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i]));
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   360
		}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   361
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   362
	}
455
925891c52e40 hedgehogs num bugfix for netgame
displacer
parents: 453
diff changeset
   363
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   364
	if(lst[0]=="LOBBY:JOINED") {
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   365
		if(lst.size() < 2)
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   366
		{
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   367
			qWarning("Net: Bad JOINED message");
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   368
			return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   369
		}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   370
		
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   371
		for(int i = 1; i < lst.size(); ++i)
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   372
		{
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   373
			emit nickAddedLobby(lst[i]);
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   374
			emit chatStringLobby(QString(tr("*** %1 joined")).arg(lst[i]));
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   375
		}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   376
		return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   377
	}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   378
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   379
	if(lst[0] == "LEFT") {
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   380
		if(lst.size() < 2)
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   381
		{
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   382
			qWarning("Net: Bad LEFT message");
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   383
			return;
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   384
		}
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   385
		emit nickRemoved(lst[1]);
1512
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   386
		if (lst.size() < 3)
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   387
			emit chatStringFromNet(QString(tr("*** %1 left")).arg(lst[1]));
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   388
		else
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   389
			emit chatStringFromNet(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2]));
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   390
		return;
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   391
	}
461
105af110b0e6 chatWidget with layout
displacer
parents: 455
diff changeset
   392
1591
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   393
	if(lst[0] == "ROOM") {
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   394
		if(lst.size() < 2)
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   395
		{
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   396
			qWarning("Net: Bad ROOM message");
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   397
			return;
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   398
		}
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   399
		RawSendNet(QString("LIST"));
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   400
		return;
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   401
	}
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   402
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   403
	if(lst[0] == "LOBBY:LEFT") {
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   404
		if(lst.size() < 2)
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   405
		{
1581
2dfa315b4bb2 Don't send LEFT message for clients without nick
unc0rr
parents: 1577
diff changeset
   406
			qWarning("Net: Bad LOBBY:LEFT message");
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   407
			return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   408
		}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   409
		emit nickRemovedLobby(lst[1]);
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   410
		if (lst.size() < 3)
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   411
			emit chatStringLobby(QString(tr("*** %1 left")).arg(lst[1]));
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   412
		else
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   413
			emit chatStringLobby(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2]));
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   414
		return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   415
	}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   416
1338
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   417
	if (lst[0] == "RUN_GAME") {
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   418
		netClientState = 5;
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   419
		RunGame();
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   420
		return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   421
	}
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 338
diff changeset
   422
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   423
	if (lst[0] == "TEAM_ACCEPTED") {
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   424
		if (lst.size() != 2)
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   425
		{
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   426
			qWarning("Net: Bad TEAM_ACCEPTED message");
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   427
			return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   428
		}
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   429
		m_pTeamSelWidget->changeTeamStatus(lst[1]);
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   430
		return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   431
	}
354
60e4af0a4375 network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents: 352
diff changeset
   432
1333
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   433
	if (lst[0] == "MAP") {
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   434
		if (lst.size() != 2)
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   435
		{
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   436
			qWarning("Net: Bad MAP message");
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   437
			return;
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   438
		}
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   439
		emit mapChanged(lst[1]);
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   440
		return;
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   441
	}
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   442
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   443
1319
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   444
	if (lst[0] == "CONFIG_PARAM") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   445
		if(lst.size() < 3)
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   446
		{
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   447
			qWarning("Net: Bad CONFIG_PARAM message");
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   448
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   449
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   450
		if (lst[1] == "SEED") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   451
			emit seedChanged(lst[2]);
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   452
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   453
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   454
		if (lst[1] == "THEME") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   455
			emit themeChanged(lst[2]);
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   456
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   457
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   458
		if (lst[1] == "HEALTH") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   459
			emit initHealthChanged(lst[2].toUInt());
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   460
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   461
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   462
		if (lst[1] == "TURNTIME") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   463
			emit turnTimeChanged(lst[2].toUInt());
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   464
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   465
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   466
		if (lst[1] == "FORTSMODE") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   467
			emit fortsModeChanged(lst[2].toInt() != 0);
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   468
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   469
		}
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   470
		if (lst[1] == "DIVIDETEAMS") {
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   471
			emit teamsDivideChanged(lst[2].toInt() != 0);
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   472
			return;
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   473
		}
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   474
		if (lst[1] == "SOLIDLAND") {
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   475
			emit solidChanged(lst[2].toInt() != 0);
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   476
			return;
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   477
		}
1319
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   478
		if (lst[1] == "AMMO") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   479
			if(lst.size() < 4) return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   480
			emit ammoChanged(lst[3], lst[2]);
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   481
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   482
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   483
		qWarning() << "Net: Unknown 'CONFIG_PARAM' message:" << lst;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   484
		return;
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
   485
	}
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   486
1327
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   487
	if (lst[0] == "HH_NUM") {
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   488
		if (lst.size() != 3)
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   489
		{
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   490
			qWarning("Net: Bad TEAM_ACCEPTED message");
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   491
			return;
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   492
		}
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   493
		HWTeam tmptm(lst[1]);
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   494
		tmptm.numHedgehogs = lst[2].toUInt();
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   495
		emit hhnumChanged(tmptm);
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   496
		return;
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   497
	}
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   498
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   499
	if (lst[0] == "TEAM_COLOR") {
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   500
		if (lst.size() != 3)
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   501
		{
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   502
			qWarning("Net: Bad TEAM_COLOR message");
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   503
			return;
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   504
		}
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   505
		HWTeam tmptm(lst[1]);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   506
		tmptm.teamColor = QColor(lst[2]);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   507
		emit teamColorChanged(tmptm);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   508
		return;
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   509
	}
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   510
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   511
	if (lst[0] == "GAMEMSG") {
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   512
		if(lst.size() < 2)
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   513
		{
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   514
			qWarning("Net: Bad GAMEMSG message");
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   515
			return;
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   516
		}
1558
3370b7ffeb5c - Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents: 1541
diff changeset
   517
		for(int i = 1; i < lst.size(); ++i)
3370b7ffeb5c - Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents: 1541
diff changeset
   518
		{
1559
71e1f67dcfe7 Now spectating works for those who joined after game start
unc0rr
parents: 1558
diff changeset
   519
			QByteArray em = QByteArray::fromBase64(lst[i].toAscii());
1558
3370b7ffeb5c - Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents: 1541
diff changeset
   520
			emit FromNet(em);
3370b7ffeb5c - Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents: 1541
diff changeset
   521
		}
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   522
		return;
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   523
	}
573
e0cf483e68d6 - Highlight more undefined behavior of net protocol
unc0rr
parents: 486
diff changeset
   524
1512
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   525
	if (lst[0] == "BYE") {
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   526
		if (lst.size() < 2)
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   527
		{
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   528
			qWarning("Net: Bad BYE message");
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   529
			return;
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   530
		}
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   531
		emit showMessage(HWNewNet::tr("Quit reason: ") + lst[1]);
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   532
		return;
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   533
	}
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   534
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   535
	qWarning() << "Net: Unknown message:" << lst;
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   536
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   537
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   538
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   539
void HWNewNet::ConfigAsked()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   540
{
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   541
	QString map = m_pGameCFGWidget->getCurrentMap();
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   542
	if (map.size())
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   543
		onMapChanged(map);
574
1cafd9eb1a21 - Update copyright header
unc0rr
parents: 573
diff changeset
   544
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   545
	onSeedChanged(m_pGameCFGWidget->getCurrentSeed());
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   546
	onThemeChanged(m_pGameCFGWidget->getCurrentTheme());
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   547
	onInitHealthChanged(m_pGameCFGWidget->getInitHealth());
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   548
	onTurnTimeChanged(m_pGameCFGWidget->getTurnTime());
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   549
	onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1);
1475
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1471
diff changeset
   550
	onTeamsDivideChanged(m_pGameCFGWidget->getGameFlags() & 0x10);
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   551
	onSolidChanged(m_pGameCFGWidget->getGameFlags() & 0x04);
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   552
	// always initialize with default ammo (also avoiding complicated cross-class dependencies)
1541
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   553
	QString name = m_pGameCFGWidget->WeaponsName->currentText();
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   554
	QString ammo = m_pGameCFGWidget->WeaponsName->itemData(
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   555
			m_pGameCFGWidget->WeaponsName->currentIndex()
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   556
			).toString();
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   557
	onWeaponsNameChanged(name, ammo);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   558
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   559
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   560
void HWNewNet::RunGame()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   561
{
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   562
	emit AskForRunGame();
431
79ac59673df3 - Two more land templates
unc0rr
parents: 407
diff changeset
   563
}
79ac59673df3 - Two more land templates
unc0rr
parents: 407
diff changeset
   564
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   565
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team)
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   566
{
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   567
	if (isChief)
1327
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   568
	RawSendNet(QString("HH_NUM%1%2%1%3")
1324
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   569
			.arg(delimeter)
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   570
			.arg(team.TeamName)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   571
			.arg(team.numHedgehogs));
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   572
}
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   573
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   574
void HWNewNet::onTeamColorChanged(const HWTeam& team)
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   575
{
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   576
	if (isChief)
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   577
	RawSendNet(QString("TEAM_COLOR%1%2%1%3")
1324
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   578
			.arg(delimeter)
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   579
			.arg(team.TeamName)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   580
			.arg(team.teamColor.name()));
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   581
}
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   582
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   583
void HWNewNet::onSeedChanged(const QString & seed)
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   584
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   585
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1SEED%1%2").arg(delimeter).arg(seed));
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   586
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   587
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   588
void HWNewNet::onMapChanged(const QString & map)
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   589
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   590
	if (isChief) RawSendNet(QString("MAP%1%2").arg(delimeter).arg(map));
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   591
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   592
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   593
void HWNewNet::onThemeChanged(const QString & theme)
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   594
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   595
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1THEME%1%2").arg(delimeter).arg(theme));
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   596
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   597
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   598
void HWNewNet::onInitHealthChanged(int health)
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   599
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   600
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1HEALTH%1%2").arg(delimeter).arg(health));
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   601
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   602
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   603
void HWNewNet::onTurnTimeChanged(int time)
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   604
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   605
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1TURNTIME%1%2").arg(delimeter).arg(time));
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   606
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   607
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   608
void HWNewNet::onFortsModeChanged(bool value)
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   609
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   610
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1FORTSMODE%1%2").arg(delimeter).arg(value));
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   611
}
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   612
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   613
void HWNewNet::onTeamsDivideChanged(bool value)
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   614
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   615
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1DIVIDETEAMS%1%2").arg(delimeter).arg(value));
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   616
}
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   617
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   618
void HWNewNet::onSolidChanged(bool value)
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   619
{
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   620
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1SOLIDLAND%1%2").arg(delimeter).arg(value));
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   621
}
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   622
703
424297e3165a weapon names transmitted over network
displacer
parents: 697
diff changeset
   623
void HWNewNet::onWeaponsNameChanged(const QString& name, const QString& ammo)
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
   624
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   625
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1AMMO%1%2%1%3").arg(delimeter).arg(ammo).arg(name));
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
   626
}
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
   627
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   628
void HWNewNet::chatLineToNet(const QString& str)
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   629
{
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   630
	if(str != "") {
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   631
		RawSendNet(QString("CHAT_STRING") + delimeter + str);
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   632
		emit(chatStringFromMe(formatChatMsg(mynick, str)));
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   633
	}
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   634
}
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   635
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   636
void HWNewNet::chatLineToLobby(const QString& str)
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   637
{
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   638
	if(str != "") {
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   639
		RawSendNet(QString("CHAT_STRING") + delimeter + str);
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   640
		emit(chatStringFromMeLobby(formatChatMsg(mynick, str)));
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   641
	}
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   642
}
1315
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   643
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   644
void HWNewNet::askRoomsList()
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   645
{
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   646
	if(netClientState != 2)
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   647
	{
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   648
		qWarning("Illegal try to get rooms list!");
1315
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   649
		return;
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   650
	}
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   651
	RawSendNet(QString("LIST"));
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   652
}
1339
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   653
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   654
bool HWNewNet::isRoomChief()
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   655
{
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   656
	return isChief;
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   657
}
1344
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   658
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   659
void HWNewNet::gameFinished()
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   660
{
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   661
	netClientState = 3;
1344
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   662
	RawSendNet(QString("ROUNDFINISHED"));
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   663
}
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   664
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   665
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg)
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   666
{
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   667
	if(msg.left(4) == "/me ")
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1585
diff changeset
   668
		return QString("* %1 %2").arg(nick).arg(msg.mid(4));
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   669
	else
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1585
diff changeset
   670
		return QString("%1: %2").arg(nick).arg(msg);
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   671
}
1391
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   672
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   673
void HWNewNet::kickPlayer(const QString & nick)
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   674
{
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   675
	RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick));
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   676
}
1410
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   677
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   678
void HWNewNet::infoPlayer(const QString & nick)
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   679
{
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   680
	RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick));
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   681
}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   682
1410
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   683
void HWNewNet::startGame()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   684
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   685
	RawSendNet(QString("START_GAME"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   686
}
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   687
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   688
void HWNewNet::toggleRestrictJoins()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   689
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   690
	RawSendNet(QString("TOGGLE_RESTRICT_JOINS"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   691
}
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   692
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   693
void HWNewNet::toggleRestrictTeamAdds()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   694
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   695
	RawSendNet(QString("TOGGLE_RESTRICT_TEAMS"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   696
}
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   697
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   698
void HWNewNet::partRoom()
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   699
{
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   700
	netClientState = 2;
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   701
	RawSendNet(QString("PART"));
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   702
}