QTfrontend/newnetclient.cpp
author unc0rr
Sat, 14 Feb 2009 16:44:50 +0000
changeset 1793 3e8caf5fee58
parent 1784 dfe9bafb4590
child 1797 fedd8649fdd9
permissions -rw-r--r--
Fix initial room config
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 +
1661
08c6e3665025 Mention Josh on about page
unc0rr
parents: 1648
diff changeset
   107
	     team.Voicepack + delimeter +
1245
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   108
	     QString::number(team.difficulty);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   109
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   110
	for(int i = 0; i < 8; ++i)
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   111
	{
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   112
		cmd.append(delimeter);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   113
		cmd.append(team.HHName[i]);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   114
		cmd.append(delimeter);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   115
		cmd.append(team.HHHat[i]);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   116
	}
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   117
	RawSendNet(cmd);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   118
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   119
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   120
void HWNewNet::RemoveTeam(const HWTeam & team)
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   121
{
1329
69ddc231a911 - Only team owner can remove team from the list
unc0rr
parents: 1327
diff changeset
   122
	RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName);
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   123
}
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   124
1404
2b6b6809c2e4 - Fix a bug in READY message handling
unc0rr
parents: 1391
diff changeset
   125
void HWNewNet::ToggleReady()
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   126
{
1404
2b6b6809c2e4 - Fix a bug in READY message handling
unc0rr
parents: 1391
diff changeset
   127
  RawSendNet(QString("TOGGLE_READY"));
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   128
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   129
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   130
void HWNewNet::SendNet(const QByteArray & buf)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   131
{
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   132
  QString msg = QString(buf.toBase64());
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   133
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   134
  RawSendNet(QString("GAMEMSG%1%2").arg(delimeter).arg(msg));
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   135
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   136
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   137
void HWNewNet::RawSendNet(const QString & str)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   138
{
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   139
  RawSendNet(str.toUtf8());
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   140
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   141
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   142
void HWNewNet::RawSendNet(const QByteArray & buf)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   143
{
1742
cf97d1eecb12 Start fixing spectating bug (implement some routines)
unc0rr
parents: 1683
diff changeset
   144
	qDebug() << "Client: " << QString(buf).split("\n");
1369
f5b1b3fd70cc - Add brazilian translation
unc0rr
parents: 1360
diff changeset
   145
	NetSocket.write(buf);
f5b1b3fd70cc - Add brazilian translation
unc0rr
parents: 1360
diff changeset
   146
	NetSocket.write("\n\n", 2);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   147
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   148
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   149
void HWNewNet::ClientRead()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   150
{
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   151
	while (NetSocket.canReadLine()) {
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   152
		QString s = QString::fromUtf8(NetSocket.readLine().trimmed());
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   153
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   154
		if (s.size() == 0) {
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   155
			ParseCmd(cmdbuf);
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   156
			cmdbuf.clear();
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   157
		} else
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   158
			cmdbuf << s;
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   159
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   160
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   161
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   162
void HWNewNet::OnConnect()
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
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   166
void HWNewNet::OnDisconnect()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   167
{
338
d1e75dcd285f multiple teams now available per host (still alpha)
displacer
parents: 335
diff changeset
   168
  //emit ChangeInTeams(QStringList());
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
   169
  if(m_game_connected) emit Disconnected();
1354
a8dcdeb88a43 Various small insignificant improvements everywhere
unc0rr
parents: 1351
diff changeset
   170
  m_game_connected = false;
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   171
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   172
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   173
void HWNewNet::displayError(QAbstractSocket::SocketError socketError)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   174
{
1302
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   175
	switch (socketError) {
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   176
		case QAbstractSocket::RemoteHostClosedError:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   177
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   178
		case QAbstractSocket::HostNotFoundError:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   179
			QMessageBox::information(0, tr("Error"),
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   180
					tr("The host was not found. Please check the host name and port settings."));
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   181
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   182
		case QAbstractSocket::ConnectionRefusedError:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   183
			QMessageBox::information(0, tr("Error"),
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   184
					tr("Connection refused"));
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   185
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   186
		default:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   187
			QMessageBox::information(0, tr("Error"),
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   188
					NetSocket.errorString());
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   189
		}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   190
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   191
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   192
void HWNewNet::ParseCmd(const QStringList & lst)
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   193
{
1742
cf97d1eecb12 Start fixing spectating bug (implement some routines)
unc0rr
parents: 1683
diff changeset
   194
	qDebug() << "Server: " << lst;
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   195
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   196
	if(!lst.size())
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   197
	{
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   198
		qWarning("Net client: Bad message");
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   199
		return;
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   200
	}
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 319
diff changeset
   201
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   202
	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
   203
	{
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   204
		loginStep++;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   205
		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
   206
		{
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   207
			netClientState = 2;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   208
			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
   209
		}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   210
		return ;
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   211
	}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   212
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   213
	if (lst[0] == "ERROR") {
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   214
		if (lst.size() == 2)
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   215
			emit showMessage("Error: " + lst[1]);
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   216
		else
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   217
			emit showMessage("Unknown error");
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   218
		return;
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   219
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   220
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   221
	if (lst[0] == "WARNING") {
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   222
		if (lst.size() == 2)
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   223
			emit showMessage("Warning: " + lst[1]);
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   224
		else
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   225
			emit showMessage("Unknown warning");
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   226
		return;
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   227
	}
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   228
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   229
	if (lst[0] == "CONNECTED") {
1471
b5295ec49e94 Follow protocol more precisely in frontend
unc0rr
parents: 1462
diff changeset
   230
		RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick));
b5295ec49e94 Follow protocol more precisely in frontend
unc0rr
parents: 1462
diff changeset
   231
		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
   232
		netClientState = 1;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   233
		m_game_connected = true;
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   234
		emit Connected();
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   235
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   236
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   237
1462
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   238
	if (lst[0] == "PING") {
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   239
		RawSendNet(QString("PONG"));
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   240
		return;
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   241
	}
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   242
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   243
	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
   244
		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
   245
		tmp.removeFirst();
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   246
		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
   247
		return;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   248
	}
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   249
1377
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   250
	if (lst[0] == "SERVER_MESSAGE") {
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   251
		if(lst.size() < 2)
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   252
		{
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   253
			qWarning("Net: Empty SERVERMESSAGE message");
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   254
			return;
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   255
		}
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   256
		emit serverMessage(lst[1]);
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   257
		return;
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   258
	}
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   259
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   260
	if (lst[0] == "CHAT_STRING") {
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   261
		if(lst.size() < 3)
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   262
		{
1377
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   263
			qWarning("Net: Empty CHAT_STRING message");
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   264
			return;
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   265
		}
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   266
		if (netClientState == 2)
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   267
			emit chatStringLobby(formatChatMsg(lst[1], lst[2]));
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   268
		else
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   269
			emit chatStringFromNet(formatChatMsg(lst[1], lst[2]));
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   270
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   271
	}
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   272
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   273
	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
   274
		if(lst.size() < 5)
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   275
		{
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
   276
			qWarning("Net: Malformed INFO message");
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   277
			return;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   278
		}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   279
		QStringList tmp = lst;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   280
		tmp.removeFirst();
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   281
		if (netClientState == 2)
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1585
diff changeset
   282
			emit chatStringLobby(tmp.join("\n"));
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   283
		else
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1585
diff changeset
   284
			emit chatStringFromNet(tmp.join("\n"));
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   285
		return;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   286
	}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   287
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   288
	if (lst[0] == "READY") {
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   289
		if(lst.size() != 2)
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   290
		{
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   291
			qWarning("Net: Malformed READY message");
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   292
			return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   293
		}
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   294
		emit setReadyStatus(lst[1], true);
1648
32d99a3c7998 Draw ready status icon on ready button
unc0rr
parents: 1600
diff changeset
   295
		if (lst[1] == mynick)
32d99a3c7998 Draw ready status icon on ready button
unc0rr
parents: 1600
diff changeset
   296
			emit setMyReadyStatus(true);
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   297
		return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   298
	}
1591
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   299
	
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   300
	if (lst[0] == "NOT_READY") {
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   301
		if(lst.size() != 2)
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
			qWarning("Net: Malformed NOT_READY message");
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
		emit setReadyStatus(lst[1], false);
1648
32d99a3c7998 Draw ready status icon on ready button
unc0rr
parents: 1600
diff changeset
   307
		if (lst[1] == mynick)
32d99a3c7998 Draw ready status icon on ready button
unc0rr
parents: 1600
diff changeset
   308
			emit setMyReadyStatus(false);
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   309
		return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   310
	}
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   311
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   312
	if (lst[0] == "ADD_TEAM") {
1683
af34da5726aa Show team owner in tooltip
unc0rr
parents: 1671
diff changeset
   313
		if(lst.size() != 23)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   314
		{
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   315
			qWarning("Net: Bad ADDTEAM message");
1321
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
		}
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   318
		QStringList tmp = lst;
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   319
		tmp.removeFirst();
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   320
		emit AddNetTeam(tmp);
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   321
		return;
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   322
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   323
1338
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   324
	if (lst[0] == "REMOVE_TEAM") {
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   325
		if(lst.size() != 2)
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   326
		{
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   327
			qWarning("Net: Bad REMOVETEAM message");
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   328
			return;
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   329
		}
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   330
		m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1]));
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   331
		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
   332
		{
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   333
			QByteArray em;
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   334
			HWProto::addStringToBuffer(em, "F" + lst[1]);
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   335
			emit FromNet(em);
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   336
		}
1338
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   337
		return;
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   338
	}
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   339
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   340
	if(lst[0]=="ROOMABANDONED") {
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   341
		netClientState = 2;
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   342
		emit showMessage(HWNewNet::tr("Room destroyed"));
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   343
		emit LeftRoom();
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   344
		return;
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   345
	}
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   346
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   347
	if(lst[0]=="JOINED") {
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   348
		if(lst.size() < 2)
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   349
		{
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   350
			qWarning("Net: Bad JOINED message");
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   351
			return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   352
		}
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   353
		
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   354
		for(int i = 1; i < lst.size(); ++i)
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   355
		{
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   356
			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
   357
			{
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   358
				netClientState = 3;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   359
				emit EnteredGame();
1316
50514e45d0b5 - Add join and leave messages to chat box
unc0rr
parents: 1315
diff changeset
   360
				if (isChief)
50514e45d0b5 - Add join and leave messages to chat box
unc0rr
parents: 1315
diff changeset
   361
					ConfigAsked();
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   362
			}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   363
			emit nickAdded(lst[i]);
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   364
			emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i]));
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   365
		}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   366
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   367
	}
455
925891c52e40 hedgehogs num bugfix for netgame
displacer
parents: 453
diff changeset
   368
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   369
	if(lst[0]=="LOBBY:JOINED") {
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   370
		if(lst.size() < 2)
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   371
		{
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   372
			qWarning("Net: Bad JOINED message");
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   373
			return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   374
		}
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
		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
   377
		{
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   378
			emit nickAddedLobby(lst[i]);
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   379
			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
   380
		}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   381
		return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   382
	}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   383
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   384
	if(lst[0] == "LEFT") {
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   385
		if(lst.size() < 2)
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   386
		{
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   387
			qWarning("Net: Bad LEFT message");
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   388
			return;
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   389
		}
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   390
		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
   391
		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
   392
			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
   393
		else
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   394
			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
   395
		return;
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   396
	}
461
105af110b0e6 chatWidget with layout
displacer
parents: 455
diff changeset
   397
1591
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   398
	if(lst[0] == "ROOM") {
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   399
		if(lst.size() < 2)
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   400
		{
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   401
			qWarning("Net: Bad ROOM message");
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   402
			return;
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   403
		}
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   404
		RawSendNet(QString("LIST"));
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   405
		return;
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   406
	}
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   407
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   408
	if(lst[0] == "LOBBY:LEFT") {
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   409
		if(lst.size() < 2)
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   410
		{
1581
2dfa315b4bb2 Don't send LEFT message for clients without nick
unc0rr
parents: 1577
diff changeset
   411
			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
   412
			return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   413
		}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   414
		emit nickRemovedLobby(lst[1]);
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   415
		if (lst.size() < 3)
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   416
			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
   417
		else
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   418
			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
   419
		return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   420
	}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   421
1338
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   422
	if (lst[0] == "RUN_GAME") {
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   423
		netClientState = 5;
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   424
		RunGame();
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   425
		return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   426
	}
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 338
diff changeset
   427
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   428
	if (lst[0] == "TEAM_ACCEPTED") {
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   429
		if (lst.size() != 2)
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   430
		{
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   431
			qWarning("Net: Bad TEAM_ACCEPTED message");
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   432
			return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   433
		}
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   434
		m_pTeamSelWidget->changeTeamStatus(lst[1]);
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   435
		return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   436
	}
354
60e4af0a4375 network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents: 352
diff changeset
   437
1333
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   438
	if (lst[0] == "MAP") {
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   439
		if (lst.size() != 2)
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   440
		{
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   441
			qWarning("Net: Bad MAP message");
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   442
			return;
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   443
		}
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   444
		emit mapChanged(lst[1]);
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   445
		return;
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   446
	}
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   447
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   448
1319
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   449
	if (lst[0] == "CONFIG_PARAM") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   450
		if(lst.size() < 3)
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   451
		{
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   452
			qWarning("Net: Bad CONFIG_PARAM message");
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   453
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   454
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   455
		if (lst[1] == "SEED") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   456
			emit seedChanged(lst[2]);
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   457
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   458
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   459
		if (lst[1] == "THEME") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   460
			emit themeChanged(lst[2]);
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   461
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   462
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   463
		if (lst[1] == "HEALTH") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   464
			emit initHealthChanged(lst[2].toUInt());
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   465
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   466
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   467
		if (lst[1] == "TURNTIME") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   468
			emit turnTimeChanged(lst[2].toUInt());
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   469
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   470
		}
1782
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   471
		if (lst[1] == "SD_TURNS") {
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   472
			emit suddenDeathTurnsChanged(lst[2].toUInt());
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   473
			return;
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   474
		}
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   475
		if (lst[1] == "CASEFACTOR") {
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   476
			emit caseProbabilityChanged(lst[2].toUInt());
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   477
			return;
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   478
		}
1319
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   479
		if (lst[1] == "FORTSMODE") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   480
			emit fortsModeChanged(lst[2].toInt() != 0);
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   481
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   482
		}
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   483
		if (lst[1] == "DIVIDETEAMS") {
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   484
			emit teamsDivideChanged(lst[2].toInt() != 0);
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   485
			return;
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   486
		}
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   487
		if (lst[1] == "SOLIDLAND") {
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   488
			emit solidChanged(lst[2].toInt() != 0);
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   489
			return;
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   490
		}
1784
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   491
		if (lst[1] == "BORDER") {
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   492
			emit borderChanged(lst[2].toInt() != 0);
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   493
			return;
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   494
		}
1319
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   495
		if (lst[1] == "AMMO") {
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   496
			if(lst.size() < 4) return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   497
			emit ammoChanged(lst[3], lst[2]);
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   498
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   499
		}
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   500
		qWarning() << "Net: Unknown 'CONFIG_PARAM' message:" << lst;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   501
		return;
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
   502
	}
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   503
1327
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   504
	if (lst[0] == "HH_NUM") {
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   505
		if (lst.size() != 3)
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   506
		{
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   507
			qWarning("Net: Bad TEAM_ACCEPTED message");
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   508
			return;
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   509
		}
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   510
		HWTeam tmptm(lst[1]);
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   511
		tmptm.numHedgehogs = lst[2].toUInt();
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   512
		emit hhnumChanged(tmptm);
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   513
		return;
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   514
	}
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   515
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   516
	if (lst[0] == "TEAM_COLOR") {
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   517
		if (lst.size() != 3)
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   518
		{
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   519
			qWarning("Net: Bad TEAM_COLOR message");
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   520
			return;
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   521
		}
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   522
		HWTeam tmptm(lst[1]);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   523
		tmptm.teamColor = QColor(lst[2]);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   524
		emit teamColorChanged(tmptm);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   525
		return;
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   526
	}
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   527
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   528
	if (lst[0] == "GAMEMSG") {
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   529
		if(lst.size() < 2)
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   530
		{
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   531
			qWarning("Net: Bad GAMEMSG message");
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   532
			return;
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   533
		}
1558
3370b7ffeb5c - Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents: 1541
diff changeset
   534
		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
   535
		{
1559
71e1f67dcfe7 Now spectating works for those who joined after game start
unc0rr
parents: 1558
diff changeset
   536
			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
   537
			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
   538
		}
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   539
		return;
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   540
	}
573
e0cf483e68d6 - Highlight more undefined behavior of net protocol
unc0rr
parents: 486
diff changeset
   541
1512
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   542
	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
   543
		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
   544
		{
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   545
			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
   546
			return;
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   547
		}
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   548
		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
   549
		return;
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   550
	}
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   551
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   552
	qWarning() << "Net: Unknown message:" << lst;
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   553
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   554
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   555
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   556
void HWNewNet::ConfigAsked()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   557
{
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   558
	QString map = m_pGameCFGWidget->getCurrentMap();
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   559
	if (map.size())
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   560
		onMapChanged(map);
574
1cafd9eb1a21 - Update copyright header
unc0rr
parents: 573
diff changeset
   561
1793
3e8caf5fee58 Fix initial room config
unc0rr
parents: 1784
diff changeset
   562
	onSuddenDeathTurnsChanged(m_pGameCFGWidget->getSuddenDeathTurns());
3e8caf5fee58 Fix initial room config
unc0rr
parents: 1784
diff changeset
   563
	onCaseProbabilityChanged(m_pGameCFGWidget->getCaseProbability());
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   564
	onSeedChanged(m_pGameCFGWidget->getCurrentSeed());
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   565
	onThemeChanged(m_pGameCFGWidget->getCurrentTheme());
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   566
	onInitHealthChanged(m_pGameCFGWidget->getInitHealth());
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   567
	onTurnTimeChanged(m_pGameCFGWidget->getTurnTime());
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   568
	onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1);
1475
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1471
diff changeset
   569
	onTeamsDivideChanged(m_pGameCFGWidget->getGameFlags() & 0x10);
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   570
	onSolidChanged(m_pGameCFGWidget->getGameFlags() & 0x04);
1784
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   571
	onBorderChanged(m_pGameCFGWidget->getGameFlags() & 0x08);
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   572
	// always initialize with default ammo (also avoiding complicated cross-class dependencies)
1541
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   573
	QString name = m_pGameCFGWidget->WeaponsName->currentText();
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   574
	QString ammo = m_pGameCFGWidget->WeaponsName->itemData(
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   575
			m_pGameCFGWidget->WeaponsName->currentIndex()
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   576
			).toString();
61b3b32aede8 Finalize ammo store fix
unc0rr
parents: 1530
diff changeset
   577
	onWeaponsNameChanged(name, ammo);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   578
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   579
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   580
void HWNewNet::RunGame()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   581
{
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   582
	emit AskForRunGame();
431
79ac59673df3 - Two more land templates
unc0rr
parents: 407
diff changeset
   583
}
79ac59673df3 - Two more land templates
unc0rr
parents: 407
diff changeset
   584
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   585
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team)
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   586
{
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   587
	if (isChief)
1327
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   588
	RawSendNet(QString("HH_NUM%1%2%1%3")
1324
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   589
			.arg(delimeter)
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   590
			.arg(team.TeamName)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   591
			.arg(team.numHedgehogs));
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   592
}
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   593
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   594
void HWNewNet::onTeamColorChanged(const HWTeam& team)
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   595
{
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   596
	if (isChief)
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   597
	RawSendNet(QString("TEAM_COLOR%1%2%1%3")
1324
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   598
			.arg(delimeter)
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   599
			.arg(team.TeamName)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   600
			.arg(team.teamColor.name()));
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   601
}
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   602
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   603
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
   604
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   605
	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
   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::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
   609
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   610
	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
   611
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   612
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   613
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
   614
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   615
	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
   616
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   617
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   618
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
   619
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   620
	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
   621
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   622
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   623
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
   624
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   625
	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
   626
}
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   627
1782
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   628
void HWNewNet::onSuddenDeathTurnsChanged(int turns)
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   629
{
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   630
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1SD_TURNS%1%2").arg(delimeter).arg(turns));
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   631
}
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   632
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   633
void HWNewNet::onCaseProbabilityChanged(int prob)
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   634
{
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   635
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1CASEFACTOR%1%2").arg(delimeter).arg(prob));
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   636
}
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   637
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   638
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
   639
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   640
	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
   641
}
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   642
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   643
void HWNewNet::onTeamsDivideChanged(bool value)
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   644
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   645
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1DIVIDETEAMS%1%2").arg(delimeter).arg(value));
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   646
}
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   647
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   648
void HWNewNet::onSolidChanged(bool value)
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   649
{
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   650
	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
   651
}
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1418
diff changeset
   652
1784
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   653
void HWNewNet::onBorderChanged(bool value)
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   654
{
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   655
	if (isChief) RawSendNet(QString("CONFIG_PARAM%1BORDER%1%2").arg(delimeter).arg(value));
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   656
}
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1782
diff changeset
   657
703
424297e3165a weapon names transmitted over network
displacer
parents: 697
diff changeset
   658
void HWNewNet::onWeaponsNameChanged(const QString& name, const QString& ammo)
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
   659
{
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1526
diff changeset
   660
	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
   661
}
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
   662
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   663
void HWNewNet::chatLineToNet(const QString& str)
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   664
{
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   665
	if(str != "") {
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   666
		RawSendNet(QString("CHAT_STRING") + delimeter + str);
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   667
		emit(chatStringFromMe(formatChatMsg(mynick, str)));
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   668
	}
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   669
}
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   670
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   671
void HWNewNet::chatLineToLobby(const QString& str)
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   672
{
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   673
	if(str != "") {
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   674
		RawSendNet(QString("CHAT_STRING") + delimeter + str);
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   675
		emit(chatStringFromMeLobby(formatChatMsg(mynick, str)));
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   676
	}
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   677
}
1315
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   678
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   679
void HWNewNet::askRoomsList()
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   680
{
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   681
	if(netClientState != 2)
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   682
	{
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   683
		qWarning("Illegal try to get rooms list!");
1315
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   684
		return;
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   685
	}
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   686
	RawSendNet(QString("LIST"));
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   687
}
1339
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   688
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   689
bool HWNewNet::isRoomChief()
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   690
{
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   691
	return isChief;
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   692
}
1344
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   693
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   694
void HWNewNet::gameFinished()
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   695
{
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   696
	netClientState = 3;
1344
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   697
	RawSendNet(QString("ROUNDFINISHED"));
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   698
}
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   699
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   700
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg)
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   701
{
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   702
	if(msg.left(4) == "/me ")
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1585
diff changeset
   703
		return QString("* %1 %2").arg(nick).arg(msg.mid(4));
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   704
	else
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1585
diff changeset
   705
		return QString("%1: %2").arg(nick).arg(msg);
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   706
}
1391
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   707
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   708
void HWNewNet::kickPlayer(const QString & nick)
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   709
{
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   710
	RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick));
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   711
}
1410
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   712
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   713
void HWNewNet::infoPlayer(const QString & nick)
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   714
{
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   715
	RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick));
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   716
}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   717
1410
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   718
void HWNewNet::startGame()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   719
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   720
	RawSendNet(QString("START_GAME"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   721
}
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   722
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   723
void HWNewNet::toggleRestrictJoins()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   724
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   725
	RawSendNet(QString("TOGGLE_RESTRICT_JOINS"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   726
}
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   727
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   728
void HWNewNet::toggleRestrictTeamAdds()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   729
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   730
	RawSendNet(QString("TOGGLE_RESTRICT_TEAMS"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   731
}
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   732
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   733
void HWNewNet::partRoom()
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   734
{
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   735
	netClientState = 2;
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   736
	RawSendNet(QString("PART"));
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   737
}
1671
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   738
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   739
bool HWNewNet::isInRoom()
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   740
{
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   741
	return netClientState > 2;
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   742
}