QTfrontend/newnetclient.cpp
author unc0rr
Fri, 16 Oct 2009 11:57:10 +0000
changeset 2478 cf2557f46237
parent 2442 228757f6c54d
child 2543 bf1da5037433
permissions -rw-r--r--
Fix player info response
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
1189
f66cdbbfc4b6 Fix compile under Ubuntu (why it compiles everywhere else?)
unc0rr
parents: 1083
diff changeset
    20
#include <QDebug>
1844
81abed9d4c11 Ask user password and send it to server
unc0rr
parents: 1842
diff changeset
    21
#include <QInputDialog>
1905
b1ec8db513f2 - Use QCryptographicHash for md5
unc0rr
parents: 1899
diff changeset
    22
#include <QCryptographicHash>
1844
81abed9d4c11 Ask user password and send it to server
unc0rr
parents: 1842
diff changeset
    23
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
    24
#include "hwconsts.h"
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    25
#include "newnetclient.h"
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    26
#include "proto.h"
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    27
#include "gameuiconfig.h"
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    28
#include "game.h"
334
85eacbd9827f protocol changes
displacer
parents: 332
diff changeset
    29
#include "gamecfgwidget.h"
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
    30
#include "teamselect.h"
1878
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents: 1875
diff changeset
    31
#include "misc.h"
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    32
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    33
char delimeter='\n';
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    34
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 338
diff changeset
    35
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) :
334
85eacbd9827f protocol changes
displacer
parents: 332
diff changeset
    36
  config(config),
85eacbd9827f protocol changes
displacer
parents: 332
diff changeset
    37
  m_pGameCFGWidget(pGameCFGWidget),
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 338
diff changeset
    38
  m_pTeamSelWidget(pTeamSelWidget),
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    39
  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
    40
  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
    41
  loginStep(0),
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    42
  netClientState(0)
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    43
{
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1879
diff changeset
    44
// socket stuff
1418
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    45
	connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead()));
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    46
	connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect()));
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    47
	connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect()));
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    48
	connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this,
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    49
			SLOT(displayError(QAbstractSocket::SocketError)));
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1879
diff changeset
    50
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1879
diff changeset
    51
// config stuff
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1879
diff changeset
    52
	connect(this, SIGNAL(paramChanged(const QString &, const QStringList &)), pGameCFGWidget, SLOT(setParam(const QString &, const QStringList &)));
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1879
diff changeset
    53
	connect(pGameCFGWidget, SIGNAL(paramChanged(const QString &, const QStringList &)), this, SLOT(onParamChanged(const QString &, const QStringList &)));
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1879
diff changeset
    54
	connect(this, SIGNAL(configAsked()), pGameCFGWidget, SLOT(fullNetConfig()));
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    55
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    56
1526
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    57
HWNewNet::~HWNewNet()
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    58
{
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    59
	if (m_game_connected)
1800
f1df2eb32a16 "connecting" page
unc0rr
parents: 1797
diff changeset
    60
	{
1526
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    61
		RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit"));
1800
f1df2eb32a16 "connecting" page
unc0rr
parents: 1797
diff changeset
    62
		emit Disconnected();
f1df2eb32a16 "connecting" page
unc0rr
parents: 1797
diff changeset
    63
	}
1526
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    64
	NetSocket.flush();
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    65
}
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    66
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    67
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    68
{
2334
3cf9290a518e Ask user for a nickname on first run, suggest login name
unc0rr
parents: 2155
diff changeset
    69
	mynick = nick.isEmpty() ? QLineEdit::tr("unnamed") : nick;
1418
69df8f2a7cba Delay for 250 msec before connect to local server
unc0rr
parents: 1415
diff changeset
    70
	NetSocket.connectToHost(hostName, port);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    71
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    72
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    73
void HWNewNet::Disconnect()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    74
{
1354
a8dcdeb88a43 Various small insignificant improvements everywhere
unc0rr
parents: 1351
diff changeset
    75
	if (m_game_connected)
1526
18e412dd7d50 Send QUIT message to server when netclient object is destroyed
unc0rr
parents: 1512
diff changeset
    76
		RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit"));
1354
a8dcdeb88a43 Various small insignificant improvements everywhere
unc0rr
parents: 1351
diff changeset
    77
	m_game_connected = false;
2377
f3fab2b09e0c And in frontend
nemo
parents: 2356
diff changeset
    78
1354
a8dcdeb88a43 Various small insignificant improvements everywhere
unc0rr
parents: 1351
diff changeset
    79
	NetSocket.disconnectFromHost();
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    80
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    81
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    82
void HWNewNet::CreateRoom(const QString & room)
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
    83
{
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    84
	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
    85
	{
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
    86
		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
    87
		return;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    88
	}
2377
f3fab2b09e0c And in frontend
nemo
parents: 2356
diff changeset
    89
1905
b1ec8db513f2 - Use QCryptographicHash for md5
unc0rr
parents: 1899
diff changeset
    90
	RawSendNet(QString("CREATE_ROOM%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
    91
	isChief = true;
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    92
}
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    93
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    94
void HWNewNet::JoinRoom(const QString & room)
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
    95
{
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
    96
	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
    97
	{
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
    98
		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
    99
		return;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   100
	}
2377
f3fab2b09e0c And in frontend
nemo
parents: 2356
diff changeset
   101
1905
b1ec8db513f2 - Use QCryptographicHash for md5
unc0rr
parents: 1899
diff changeset
   102
	RawSendNet(QString("JOIN_ROOM%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
   103
	isChief = false;
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   104
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   105
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   106
void HWNewNet::AddTeam(const HWTeam & team)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   107
{
1327
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   108
	QString cmd = QString("ADD_TEAM") + delimeter +
382
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 373
diff changeset
   109
	     team.TeamName + delimeter +
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 373
diff changeset
   110
	     team.teamColor.name() + delimeter +
443
eec37eb7f5db fort, grave and difficulty information for net team
displacer
parents: 431
diff changeset
   111
	     team.Grave + delimeter +
eec37eb7f5db fort, grave and difficulty information for net team
displacer
parents: 431
diff changeset
   112
	     team.Fort + delimeter +
1661
08c6e3665025 Mention Josh on about page
unc0rr
parents: 1648
diff changeset
   113
	     team.Voicepack + delimeter +
1245
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   114
	     QString::number(team.difficulty);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   115
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   116
	for(int i = 0; i < 8; ++i)
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   117
	{
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   118
		cmd.append(delimeter);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   119
		cmd.append(team.HHName[i]);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   120
		cmd.append(delimeter);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   121
		cmd.append(team.HHHat[i]);
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   122
	}
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1189
diff changeset
   123
	RawSendNet(cmd);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   124
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   125
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   126
void HWNewNet::RemoveTeam(const HWTeam & team)
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   127
{
1329
69ddc231a911 - Only team owner can remove team from the list
unc0rr
parents: 1327
diff changeset
   128
	RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName);
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   129
}
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   130
1404
2b6b6809c2e4 - Fix a bug in READY message handling
unc0rr
parents: 1391
diff changeset
   131
void HWNewNet::ToggleReady()
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   132
{
1404
2b6b6809c2e4 - Fix a bug in READY message handling
unc0rr
parents: 1391
diff changeset
   133
  RawSendNet(QString("TOGGLE_READY"));
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   134
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   135
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   136
void HWNewNet::SendNet(const QByteArray & buf)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   137
{
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   138
  QString msg = QString(buf.toBase64());
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   139
1866
36aa0ca6e8af Cut the length of most used net packet
unc0rr
parents: 1860
diff changeset
   140
  RawSendNet(QString("EM%1%2").arg(delimeter).arg(msg));
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   141
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   142
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   143
void HWNewNet::RawSendNet(const QString & str)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   144
{
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   145
  RawSendNet(str.toUtf8());
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   146
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   147
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   148
void HWNewNet::RawSendNet(const QByteArray & buf)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   149
{
2344
63b3da03ce46 Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents: 2340
diff changeset
   150
	qDebug() << "Client: " << QString(buf).split("\n");
1369
f5b1b3fd70cc - Add brazilian translation
unc0rr
parents: 1360
diff changeset
   151
	NetSocket.write(buf);
f5b1b3fd70cc - Add brazilian translation
unc0rr
parents: 1360
diff changeset
   152
	NetSocket.write("\n\n", 2);
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   153
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   154
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   155
void HWNewNet::ClientRead()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   156
{
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   157
	while (NetSocket.canReadLine()) {
2149
2eda77999bec Fix a bug in frontend leading to incorrect behaviour when dealing with names starting/ending with whitespace
unc0rr
parents: 2138
diff changeset
   158
		QString s = QString::fromUtf8(NetSocket.readLine());
2eda77999bec Fix a bug in frontend leading to incorrect behaviour when dealing with names starting/ending with whitespace
unc0rr
parents: 2138
diff changeset
   159
		if (s.endsWith('\n')) s.chop(1);
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   160
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   161
		if (s.size() == 0) {
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   162
			ParseCmd(cmdbuf);
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   163
			cmdbuf.clear();
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   164
		} else
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   165
			cmdbuf << s;
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   166
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   167
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   168
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   169
void HWNewNet::OnConnect()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   170
{
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   171
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   172
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   173
void HWNewNet::OnDisconnect()
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   174
{
1875
189370d394db - Send initial room config
unc0rr
parents: 1873
diff changeset
   175
	if(m_game_connected) emit Disconnected();
189370d394db - Send initial room config
unc0rr
parents: 1873
diff changeset
   176
	m_game_connected = false;
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   177
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   178
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   179
void HWNewNet::displayError(QAbstractSocket::SocketError socketError)
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   180
{
1800
f1df2eb32a16 "connecting" page
unc0rr
parents: 1797
diff changeset
   181
	emit Disconnected();
2377
f3fab2b09e0c And in frontend
nemo
parents: 2356
diff changeset
   182
1302
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   183
	switch (socketError) {
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   184
		case QAbstractSocket::RemoteHostClosedError:
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   185
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   186
		case QAbstractSocket::HostNotFoundError:
1800
f1df2eb32a16 "connecting" page
unc0rr
parents: 1797
diff changeset
   187
			emit showMessage(tr("The host was not found. Please check the host name and port settings."));
1302
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   188
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   189
		case QAbstractSocket::ConnectionRefusedError:
1800
f1df2eb32a16 "connecting" page
unc0rr
parents: 1797
diff changeset
   190
			emit showMessage(tr("Connection refused"));
1302
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   191
			break;
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   192
		default:
1800
f1df2eb32a16 "connecting" page
unc0rr
parents: 1797
diff changeset
   193
			emit showMessage(NetSocket.errorString());
1302
4290ba4a14ca Remove deprecated stuff
unc0rr
parents: 1245
diff changeset
   194
		}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   195
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   196
1082
596b1dcdc1df - Modify network protocol to use new delimiter
unc0rr
parents: 1081
diff changeset
   197
void HWNewNet::ParseCmd(const QStringList & lst)
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   198
{
2344
63b3da03ce46 Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents: 2340
diff changeset
   199
	qDebug() << "Server: " << lst;
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   200
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   201
	if(!lst.size())
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   202
	{
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   203
		qWarning("Net client: Bad message");
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   204
		return;
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   205
	}
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 319
diff changeset
   206
1838
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   207
	if (lst[0] == "NICK")
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   208
	{
1838
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   209
		mynick = lst[1];
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
2108
a689375bbfee Silence frontend debug output
unc0rr
parents: 1990
diff changeset
   213
	if (lst[0] == "PROTO")
a689375bbfee Silence frontend debug output
unc0rr
parents: 1990
diff changeset
   214
		return ;
a689375bbfee Silence frontend debug output
unc0rr
parents: 1990
diff changeset
   215
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   216
	if (lst[0] == "ERROR") {
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   217
		if (lst.size() == 2)
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   218
			emit showMessage("Error: " + lst[1]);
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   219
		else
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   220
			emit showMessage("Unknown error");
1305
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   221
		return;
453882eb4467 - Fix build of server (has some bugs now)
unc0rr
parents: 1302
diff changeset
   222
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   223
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   224
	if (lst[0] == "WARNING") {
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   225
		if (lst.size() == 2)
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   226
			emit showMessage("Warning: " + lst[1]);
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   227
		else
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   228
			emit showMessage("Unknown warning");
1307
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   229
		return;
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   230
	}
ce26e16d18ab - Now actually fix
unc0rr
parents: 1305
diff changeset
   231
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   232
	if (lst[0] == "CONNECTED") {
1471
b5295ec49e94 Follow protocol more precisely in frontend
unc0rr
parents: 1462
diff changeset
   233
		RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick));
b5295ec49e94 Follow protocol more precisely in frontend
unc0rr
parents: 1462
diff changeset
   234
		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
   235
		netClientState = 1;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   236
		m_game_connected = true;
1856
e71dbf958c87 Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents: 1844
diff changeset
   237
		emit adminAccess(false);
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   238
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   239
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   240
1462
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   241
	if (lst[0] == "PING") {
1929
7e6cc8da1c58 - Fix bug with kicking players
unc0rr
parents: 1925
diff changeset
   242
		if (lst.size() > 1)
7e6cc8da1c58 - Fix bug with kicking players
unc0rr
parents: 1925
diff changeset
   243
			RawSendNet(QString("PONG%1%2").arg(delimeter).arg(lst[1]));
7e6cc8da1c58 - Fix bug with kicking players
unc0rr
parents: 1925
diff changeset
   244
		else
7e6cc8da1c58 - Fix bug with kicking players
unc0rr
parents: 1925
diff changeset
   245
			RawSendNet(QString("PONG"));
1462
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   246
		return;
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   247
	}
d3323637da1f Client sends PONG to server's PING
unc0rr
parents: 1427
diff changeset
   248
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   249
	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
   250
		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
   251
		tmp.removeFirst();
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   252
		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
   253
		return;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   254
	}
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   255
1377
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   256
	if (lst[0] == "SERVER_MESSAGE") {
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   257
		if(lst.size() < 2)
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   258
		{
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   259
			qWarning("Net: Empty SERVERMESSAGE message");
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   260
			return;
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   261
		}
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   262
		emit serverMessage(lst[1]);
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   263
		return;
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   264
	}
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   265
1815
3d62cf9c350e Save some more bytes in protocol
unc0rr
parents: 1814
diff changeset
   266
	if (lst[0] == "CHAT") {
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   267
		if(lst.size() < 3)
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   268
		{
1815
3d62cf9c350e Save some more bytes in protocol
unc0rr
parents: 1814
diff changeset
   269
			qWarning("Net: Empty CHAT message");
1377
a9e768739345 - Customize QTextBrowser look
unc0rr
parents: 1369
diff changeset
   270
			return;
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   271
		}
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   272
		if (netClientState == 2)
2405
3b8607ac32c6 Fix /me chat command in demos
unc0rr
parents: 2403
diff changeset
   273
			emit chatStringLobby(HWProto::formatChatMsg(lst[1], lst[2]));
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   274
		else
2405
3b8607ac32c6 Fix /me chat command in demos
unc0rr
parents: 2403
diff changeset
   275
			emit chatStringFromNet(HWProto::formatChatMsg(lst[1], lst[2]));
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   276
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   277
	}
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   278
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   279
	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
   280
		if(lst.size() < 5)
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   281
		{
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
   282
			qWarning("Net: Malformed INFO message");
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   283
			return;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   284
		}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   285
		QStringList tmp = lst;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   286
		tmp.removeFirst();
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   287
		if (netClientState == 2)
2478
cf2557f46237 Fix player info response
unc0rr
parents: 2442
diff changeset
   288
			emit chatStringLobby(tmp.join("\n").prepend('\x01'));
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   289
		else
2478
cf2557f46237 Fix player info response
unc0rr
parents: 2442
diff changeset
   290
			emit chatStringFromNet(tmp.join("\n").prepend('\x01'));
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   291
		return;
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   292
	}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   293
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   294
	if (lst[0] == "READY") {
1829
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   295
		if(lst.size() < 2)
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   296
		{
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   297
			qWarning("Net: Malformed READY message");
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   298
			return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   299
		}
1829
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   300
		for(int i = 1; i < lst.size(); ++i)
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   301
		{
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   302
			if (lst[i] == mynick)
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   303
				emit setMyReadyStatus(true);
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   304
			emit setReadyStatus(lst[i], true);
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   305
		}
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   306
		return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   307
	}
2377
f3fab2b09e0c And in frontend
nemo
parents: 2356
diff changeset
   308
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   309
	if (lst[0] == "NOT_READY") {
1829
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   310
		if(lst.size() < 2)
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   311
		{
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   312
			qWarning("Net: Malformed NOT_READY message");
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   313
			return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   314
		}
1829
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   315
		for(int i = 1; i < lst.size(); ++i)
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   316
		{
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   317
			if (lst[i] == mynick)
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   318
				emit setMyReadyStatus(false);
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   319
			emit setReadyStatus(lst[i], false);
0cd14c9b1fe0 Accept new NOT_READY command format
unc0rr
parents: 1817
diff changeset
   320
		}
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   321
		return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   322
	}
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1404
diff changeset
   323
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   324
	if (lst[0] == "ADD_TEAM") {
1683
af34da5726aa Show team owner in tooltip
unc0rr
parents: 1671
diff changeset
   325
		if(lst.size() != 23)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   326
		{
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   327
			qWarning("Net: Bad ADDTEAM message");
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   328
			return;
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   329
		}
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   330
		QStringList tmp = lst;
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   331
		tmp.removeFirst();
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   332
		emit AddNetTeam(tmp);
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   333
		return;
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   334
	}
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   335
1338
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   336
	if (lst[0] == "REMOVE_TEAM") {
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   337
		if(lst.size() != 2)
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   338
		{
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   339
			qWarning("Net: Bad REMOVETEAM message");
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   340
			return;
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   341
		}
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   342
		m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1]));
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   343
		return;
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   344
	}
347
6521e1b2cd40 more correct remove net teams
displacer
parents: 341
diff changeset
   345
1838
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   346
	if(lst[0] == "ROOMABANDONED") {
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   347
		netClientState = 2;
1600
305e13c5f327 Go page back when room is abandoned by its admin
unc0rr
parents: 1592
diff changeset
   348
		emit showMessage(HWNewNet::tr("Room destroyed"));
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   349
		emit LeftRoom();
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   350
		return;
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   351
	}
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   352
1879
bb114339eb4e Implement kick from room
unc0rr
parents: 1878
diff changeset
   353
	if(lst[0] == "KICKED") {
bb114339eb4e Implement kick from room
unc0rr
parents: 1878
diff changeset
   354
		netClientState = 2;
bb114339eb4e Implement kick from room
unc0rr
parents: 1878
diff changeset
   355
		emit showMessage(HWNewNet::tr("You got kicked"));
bb114339eb4e Implement kick from room
unc0rr
parents: 1878
diff changeset
   356
		emit LeftRoom();
bb114339eb4e Implement kick from room
unc0rr
parents: 1878
diff changeset
   357
		return;
bb114339eb4e Implement kick from room
unc0rr
parents: 1878
diff changeset
   358
	}
bb114339eb4e Implement kick from room
unc0rr
parents: 1878
diff changeset
   359
1838
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   360
	if(lst[0] == "JOINED") {
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   361
		if(lst.size() < 2)
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   362
		{
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   363
			qWarning("Net: Bad JOINED message");
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   364
			return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   365
		}
2377
f3fab2b09e0c And in frontend
nemo
parents: 2356
diff changeset
   366
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   367
		for(int i = 1; i < lst.size(); ++i)
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   368
		{
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   369
			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
   370
			{
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   371
				netClientState = 3;
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   372
				emit EnteredGame();
1860
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1856
diff changeset
   373
				emit roomMaster(isChief);
1316
50514e45d0b5 - Add join and leave messages to chat box
unc0rr
parents: 1315
diff changeset
   374
				if (isChief)
1875
189370d394db - Send initial room config
unc0rr
parents: 1873
diff changeset
   375
					emit configAsked();
1313
f4c54e9e1b8c - Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents: 1311
diff changeset
   376
			}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   377
			emit nickAdded(lst[i]);
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2377
diff changeset
   378
			emit chatStringFromNet(tr("%1 *** %2 has joined the room").arg('\x03').arg(lst[i]));
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1310
diff changeset
   379
		}
1308
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   380
		return;
d5dcd6cfa5e2 Fix another server failure (when second client in room disconnects)
unc0rr
parents: 1307
diff changeset
   381
	}
455
925891c52e40 hedgehogs num bugfix for netgame
displacer
parents: 453
diff changeset
   382
1838
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   383
	if(lst[0] == "LOBBY:JOINED") {
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   384
		if(lst.size() < 2)
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   385
		{
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   386
			qWarning("Net: Bad JOINED message");
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   387
			return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   388
		}
2377
f3fab2b09e0c And in frontend
nemo
parents: 2356
diff changeset
   389
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   390
		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
   391
		{
1838
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   392
			if (lst[i] == mynick)
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   393
			{
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   394
				netClientState = 2;
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   395
				RawSendNet(QString("LIST"));
1842
96a4757dfeb8 Move from 'connecting' page to lobby only when account checked
unc0rr
parents: 1841
diff changeset
   396
				emit Connected();
1838
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   397
			}
00a5fc50aa43 Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents: 1829
diff changeset
   398
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   399
			emit nickAddedLobby(lst[i]);
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2377
diff changeset
   400
			emit chatStringLobby(tr("%1 *** %2 has joined").arg('\x03').arg(lst[i]));
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   401
		}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   402
		return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   403
	}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   404
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   405
	if(lst[0] == "LEFT") {
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   406
		if(lst.size() < 2)
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   407
		{
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   408
			qWarning("Net: Bad LEFT message");
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   409
			return;
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   410
		}
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   411
		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
   412
		if (lst.size() < 3)
2442
228757f6c54d - Update some strings
unc0rr
parents: 2405
diff changeset
   413
			emit chatStringFromNet(tr("%1 *** %2 has left").arg('\x03').arg(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
   414
		else
2442
228757f6c54d - Update some strings
unc0rr
parents: 2405
diff changeset
   415
			emit chatStringFromNet(tr("%1 *** %2 has left (%3)").arg('\x03').arg(lst[1], lst[2]));
1310
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   416
		return;
4616e15d566f Get rid of "internet" network game mode
unc0rr
parents: 1308
diff changeset
   417
	}
461
105af110b0e6 chatWidget with layout
displacer
parents: 455
diff changeset
   418
1591
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   419
	if(lst[0] == "ROOM") {
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   420
		if(lst.size() < 2)
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   421
		{
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   422
			qWarning("Net: Bad ROOM message");
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   423
			return;
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   424
		}
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   425
		RawSendNet(QString("LIST"));
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   426
		return;
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   427
	}
1db9b654f880 Notify lobby when a room is created or deleted
unc0rr
parents: 1587
diff changeset
   428
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   429
	if(lst[0] == "LOBBY:LEFT") {
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   430
		if(lst.size() < 2)
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   431
		{
1581
2dfa315b4bb2 Don't send LEFT message for clients without nick
unc0rr
parents: 1577
diff changeset
   432
			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
   433
			return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   434
		}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   435
		emit nickRemovedLobby(lst[1]);
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   436
		if (lst.size() < 3)
2442
228757f6c54d - Update some strings
unc0rr
parents: 2405
diff changeset
   437
			emit chatStringLobby(tr("%1 *** %2 has left").arg('\x03').arg(lst[1]));
1566
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   438
		else
2442
228757f6c54d - Update some strings
unc0rr
parents: 2405
diff changeset
   439
			emit chatStringLobby(tr("%1 *** %2 has left (%3)").arg('\x03').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
   440
		return;
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   441
	}
6b63c75fdc68 Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents: 1560
diff changeset
   442
1338
758c39a3dcfe Stub to run network game
unc0rr
parents: 1336
diff changeset
   443
	if (lst[0] == "RUN_GAME") {
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   444
		netClientState = 5;
2345
daf1785f2337 - Frontend: reorganize code controlling widgets state, fix problems getting room admin status
unc0rr
parents: 2344
diff changeset
   445
		emit AskForRunGame();
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   446
		return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   447
	}
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 338
diff changeset
   448
1841
fba7210b438b Retrieve client password from web database and ask for it
unc0rr
parents: 1838
diff changeset
   449
	if (lst[0] == "ASKPASSWORD") {
2138
b246ad6484f5 Remember password
nemo
parents: 2108
diff changeset
   450
        int passLength = config->value("net/passwordlength", 0).toInt();
2335
0a61a3c2efc4 Change password dialog to be more informative
unc0rr
parents: 2334
diff changeset
   451
        QString hash = config->value("net/passwordhash", "").toString();
0a61a3c2efc4 Change password dialog to be more informative
unc0rr
parents: 2334
diff changeset
   452
		QString password = QInputDialog::getText(0, tr("Password"), tr("Your nickname %1 is\nregistered on Hedgewars.org\nPlease provide your password\nor pick another nickname:").arg(mynick), QLineEdit::Password, passLength==0?NULL:QString(passLength,'\0'));
1844
81abed9d4c11 Ask user password and send it to server
unc0rr
parents: 1842
diff changeset
   453
2138
b246ad6484f5 Remember password
nemo
parents: 2108
diff changeset
   454
        if (!passLength || password!=QString(passLength, '\0')) {
b246ad6484f5 Remember password
nemo
parents: 2108
diff changeset
   455
            hash = QCryptographicHash::hash(password.toLatin1(), QCryptographicHash::Md5).toHex();
b246ad6484f5 Remember password
nemo
parents: 2108
diff changeset
   456
            config->setValue("net/passwordhash", hash);
b246ad6484f5 Remember password
nemo
parents: 2108
diff changeset
   457
            config->setValue("net/passwordlength", password.size());
b246ad6484f5 Remember password
nemo
parents: 2108
diff changeset
   458
        }
1878
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents: 1875
diff changeset
   459
b3b277d2b891 own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents: 1875
diff changeset
   460
		RawSendNet(QString("PASSWORD%1%2").arg(delimeter).arg(hash));
1841
fba7210b438b Retrieve client password from web database and ask for it
unc0rr
parents: 1838
diff changeset
   461
		return;
fba7210b438b Retrieve client password from web database and ask for it
unc0rr
parents: 1838
diff changeset
   462
	}
fba7210b438b Retrieve client password from web database and ask for it
unc0rr
parents: 1838
diff changeset
   463
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   464
	if (lst[0] == "TEAM_ACCEPTED") {
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   465
		if (lst.size() != 2)
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   466
		{
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   467
			qWarning("Net: Bad TEAM_ACCEPTED message");
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   468
			return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   469
		}
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   470
		m_pTeamSelWidget->changeTeamStatus(lst[1]);
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   471
		return;
c8994d47f41d Adding teams now works
unc0rr
parents: 1324
diff changeset
   472
	}
354
60e4af0a4375 network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents: 352
diff changeset
   473
1333
b0b0510eb82d - Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents: 1330
diff changeset
   474
1814
e5391d901cff - Remove client teams on exit
unc0rr
parents: 1802
diff changeset
   475
	if (lst[0] == "CFG") {
1319
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   476
		if(lst.size() < 3)
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   477
		{
1817
c697dd093bc5 Oops, forgot a bunch of CONFIG_PARAM
unc0rr
parents: 1816
diff changeset
   478
			qWarning("Net: Bad CFG message");
1319
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   479
			return;
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   480
		}
1873
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   481
		QStringList tmp = lst;
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   482
		tmp.removeFirst();
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   483
		tmp.removeFirst();
1899
5763f46d7486 Sync schemes config over net should work now (untested)
unc0rr
parents: 1898
diff changeset
   484
		if (lst[1] == "SCHEME")
5763f46d7486 Sync schemes config over net should work now (untested)
unc0rr
parents: 1898
diff changeset
   485
			emit netSchemeConfig(tmp);
5763f46d7486 Sync schemes config over net should work now (untested)
unc0rr
parents: 1898
diff changeset
   486
		else
5763f46d7486 Sync schemes config over net should work now (untested)
unc0rr
parents: 1898
diff changeset
   487
			emit paramChanged(lst[1], tmp);
1319
fedaae857a50 Reformat some code =P
unc0rr
parents: 1318
diff changeset
   488
		return;
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 660
diff changeset
   489
	}
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   490
1327
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   491
	if (lst[0] == "HH_NUM") {
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   492
		if (lst.size() != 3)
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   493
		{
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   494
			qWarning("Net: Bad TEAM_ACCEPTED message");
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   495
			return;
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   496
		}
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   497
		HWTeam tmptm(lst[1]);
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   498
		tmptm.numHedgehogs = lst[2].toUInt();
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   499
		emit hhnumChanged(tmptm);
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   500
		return;
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   501
	}
329
4c3aad46baa5 Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents: 322
diff changeset
   502
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   503
	if (lst[0] == "TEAM_COLOR") {
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   504
		if (lst.size() != 3)
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   505
		{
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   506
			qWarning("Net: Bad TEAM_COLOR message");
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   507
			return;
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   508
		}
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   509
		HWTeam tmptm(lst[1]);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   510
		tmptm.teamColor = QColor(lst[2]);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   511
		emit teamColorChanged(tmptm);
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   512
		return;
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   513
	}
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   514
1866
36aa0ca6e8af Cut the length of most used net packet
unc0rr
parents: 1860
diff changeset
   515
	if (lst[0] == "EM") {
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   516
		if(lst.size() < 2)
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   517
		{
1866
36aa0ca6e8af Cut the length of most used net packet
unc0rr
parents: 1860
diff changeset
   518
			qWarning("Net: Bad EM message");
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   519
			return;
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   520
		}
1558
3370b7ffeb5c - Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents: 1541
diff changeset
   521
		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
   522
		{
1559
71e1f67dcfe7 Now spectating works for those who joined after game start
unc0rr
parents: 1558
diff changeset
   523
			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
   524
			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
   525
		}
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   526
		return;
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   527
	}
573
e0cf483e68d6 - Highlight more undefined behavior of net protocol
unc0rr
parents: 486
diff changeset
   528
1512
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   529
	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
   530
		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
   531
		{
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   532
			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
   533
			return;
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   534
		}
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   535
		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
   536
		return;
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   537
	}
43742041c211 - Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents: 1475
diff changeset
   538
1856
e71dbf958c87 Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents: 1844
diff changeset
   539
e71dbf958c87 Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents: 1844
diff changeset
   540
	if (lst[0] == "ADMIN_ACCESS") {
e71dbf958c87 Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents: 1844
diff changeset
   541
		emit adminAccess(true);
e71dbf958c87 Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents: 1844
diff changeset
   542
		return;
e71dbf958c87 Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents: 1844
diff changeset
   543
	}
e71dbf958c87 Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents: 1844
diff changeset
   544
2340
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   545
	if (lst[0] == "ROOM_CONTROL_ACCESS") {
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   546
		if (lst.size() < 2)
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   547
		{
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   548
			qWarning("Net: Bad BYE message");
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   549
			return;
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   550
		}
2344
63b3da03ce46 Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents: 2340
diff changeset
   551
		bool b = lst[1] != "0";
2340
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   552
		m_pGameCFGWidget->setEnabled(b);
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   553
		m_pTeamSelWidget->setInteractivity(b);
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   554
		isChief = b;
2345
daf1785f2337 - Frontend: reorganize code controlling widgets state, fix problems getting room admin status
unc0rr
parents: 2344
diff changeset
   555
		emit roomMaster(isChief);
2344
63b3da03ce46 Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents: 2340
diff changeset
   556
63b3da03ce46 Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents: 2340
diff changeset
   557
		return;
2340
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   558
	}
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   559
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1344
diff changeset
   560
	qWarning() << "Net: Unknown message:" << lst;
315
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   561
}
73003488240b client/server net pre-alpha
displacer
parents:
diff changeset
   562
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   563
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team)
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   564
{
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   565
	if (isChief)
1327
9d43a6e6b9ca Can choose hedgehogs number now
unc0rr
parents: 1325
diff changeset
   566
	RawSendNet(QString("HH_NUM%1%2%1%3")
1324
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   567
			.arg(delimeter)
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   568
			.arg(team.TeamName)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   569
			.arg(team.numHedgehogs));
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   570
}
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 349
diff changeset
   571
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   572
void HWNewNet::onTeamColorChanged(const HWTeam& team)
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   573
{
1330
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   574
	if (isChief)
12c13ffb426f - Allow team color changing
unc0rr
parents: 1329
diff changeset
   575
	RawSendNet(QString("TEAM_COLOR%1%2%1%3")
1324
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   576
			.arg(delimeter)
4b48ae1f0f53 Get rid of team id in client code
unc0rr
parents: 1322
diff changeset
   577
			.arg(team.TeamName)
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   578
			.arg(team.teamColor.name()));
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   579
}
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   580
1873
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   581
void HWNewNet::onParamChanged(const QString & param, const QStringList & value)
1782
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1742
diff changeset
   582
{
1873
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   583
	if (isChief)
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   584
		RawSendNet(
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   585
				QString("CFG%1%2%1%3")
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   586
					.arg(delimeter)
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   587
					.arg(param)
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   588
					.arg(value.join(QString(delimeter)))
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1866
diff changeset
   589
				);
1797
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1793
diff changeset
   590
}
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1793
diff changeset
   591
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   592
void HWNewNet::chatLineToNet(const QString& str)
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   593
{
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   594
	if(str != "") {
1815
3d62cf9c350e Save some more bytes in protocol
unc0rr
parents: 1814
diff changeset
   595
		RawSendNet(QString("CHAT") + delimeter + str);
2405
3b8607ac32c6 Fix /me chat command in demos
unc0rr
parents: 2403
diff changeset
   596
		emit(chatStringFromMe(HWProto::formatChatMsg(mynick, str)));
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   597
	}
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   598
}
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   599
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   600
void HWNewNet::chatLineToLobby(const QString& str)
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   601
{
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   602
	if(str != "") {
1815
3d62cf9c350e Save some more bytes in protocol
unc0rr
parents: 1814
diff changeset
   603
		RawSendNet(QString("CHAT") + delimeter + str);
2405
3b8607ac32c6 Fix /me chat command in demos
unc0rr
parents: 2403
diff changeset
   604
		emit(chatStringFromMeLobby(HWProto::formatChatMsg(mynick, str)));
1568
15a446307993 Lobby chat should work now
unc0rr
parents: 1566
diff changeset
   605
	}
453
4b1236759402 simple net cha added
displacer
parents: 448
diff changeset
   606
}
1315
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   607
2403
6c5d504af2ba - Proper /team command implementation
unc0rr
parents: 2396
diff changeset
   608
void HWNewNet::SendTeamMessage(const QString& str)
6c5d504af2ba - Proper /team command implementation
unc0rr
parents: 2396
diff changeset
   609
{
6c5d504af2ba - Proper /team command implementation
unc0rr
parents: 2396
diff changeset
   610
	RawSendNet(QString("TEAMCHAT") + delimeter + str);
6c5d504af2ba - Proper /team command implementation
unc0rr
parents: 2396
diff changeset
   611
}
6c5d504af2ba - Proper /team command implementation
unc0rr
parents: 2396
diff changeset
   612
1315
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   613
void HWNewNet::askRoomsList()
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   614
{
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   615
	if(netClientState != 2)
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   616
	{
1321
d7dc4e86201e - Add protocol description (just started)
unc0rr
parents: 1320
diff changeset
   617
		qWarning("Illegal try to get rooms list!");
1315
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   618
		return;
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   619
	}
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   620
	RawSendNet(QString("LIST"));
c2f09811bb8c Implement rooms list refresh
unc0rr
parents: 1313
diff changeset
   621
}
1339
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   622
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   623
bool HWNewNet::isRoomChief()
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   624
{
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   625
	return isChief;
8a11157c6c81 Fix the bug
unc0rr
parents: 1338
diff changeset
   626
}
1344
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   627
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   628
void HWNewNet::gameFinished()
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   629
{
2340
3b35fd5f67c7 Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents: 2335
diff changeset
   630
	if (netClientState == 5) netClientState = 3;
1344
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   631
	RawSendNet(QString("ROUNDFINISHED"));
4004e597f1bf Clients send roundfinished message to server when the round is over
unc0rr
parents: 1339
diff changeset
   632
}
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1377
diff changeset
   633
1860
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1856
diff changeset
   634
void HWNewNet::banPlayer(const QString & nick)
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1856
diff changeset
   635
{
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1856
diff changeset
   636
	RawSendNet(QString("BAN%1%2").arg(delimeter).arg(nick));
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1856
diff changeset
   637
}
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1856
diff changeset
   638
1391
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   639
void HWNewNet::kickPlayer(const QString & nick)
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   640
{
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   641
	RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick));
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   642
}
1410
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   643
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   644
void HWNewNet::infoPlayer(const QString & nick)
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   645
{
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   646
	RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick));
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   647
}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1576
diff changeset
   648
1410
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   649
void HWNewNet::startGame()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   650
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   651
	RawSendNet(QString("START_GAME"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   652
}
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   653
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   654
void HWNewNet::toggleRestrictJoins()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   655
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   656
	RawSendNet(QString("TOGGLE_RESTRICT_JOINS"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   657
}
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   658
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   659
void HWNewNet::toggleRestrictTeamAdds()
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   660
{
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   661
	RawSendNet(QString("TOGGLE_RESTRICT_TEAMS"));
eece43296890 Send appropriate messages to server on control menu actions
unc0rr
parents: 1405
diff changeset
   662
}
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   663
2155
d897222d3339 Implement ability for server admin to clear accounts cache
unc0rr
parents: 2149
diff changeset
   664
void HWNewNet::clearAccountsCache()
d897222d3339 Implement ability for server admin to clear accounts cache
unc0rr
parents: 2149
diff changeset
   665
{
d897222d3339 Implement ability for server admin to clear accounts cache
unc0rr
parents: 2149
diff changeset
   666
	RawSendNet(QString("CLEAR_ACCOUNTS_CACHE"));
d897222d3339 Implement ability for server admin to clear accounts cache
unc0rr
parents: 2149
diff changeset
   667
}
d897222d3339 Implement ability for server admin to clear accounts cache
unc0rr
parents: 2149
diff changeset
   668
1592
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   669
void HWNewNet::partRoom()
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   670
{
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   671
	netClientState = 2;
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   672
	RawSendNet(QString("PART"));
5ee77ee470a6 Start converting network protocol to no-disconnecting religion
unc0rr
parents: 1591
diff changeset
   673
}
1671
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   674
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   675
bool HWNewNet::isInRoom()
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   676
{
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   677
	return netClientState > 2;
bb12cb688f75 Implement isInRoom in client
unc0rr
parents: 1668
diff changeset
   678
}
1925
ec923e56c444 Allow admin to set server's motd
unc0rr
parents: 1905
diff changeset
   679
ec923e56c444 Allow admin to set server's motd
unc0rr
parents: 1905
diff changeset
   680
void HWNewNet::newServerMessage(const QString & msg)
ec923e56c444 Allow admin to set server's motd
unc0rr
parents: 1905
diff changeset
   681
{
ec923e56c444 Allow admin to set server's motd
unc0rr
parents: 1905
diff changeset
   682
	RawSendNet(QString("SET_SERVER_MESSAGE%1%2").arg(delimeter).arg(msg));
ec923e56c444 Allow admin to set server's motd
unc0rr
parents: 1905
diff changeset
   683
}