author | S-D- |
Fri, 30 Aug 2019 14:15:34 +0300 | |
changeset 15406 | c35c5a9b878c |
parent 15099 | fb7a9b0119d3 |
permissions | -rw-r--r-- |
14936 | 1 |
#ifndef NET_SESSION_H |
2 |
#define NET_SESSION_H |
|
3 |
||
4 |
#include <QSharedPointer> |
|
5 |
#include <QSslSocket> |
|
6 |
#include <QStringList> |
|
7 |
#include <QUrl> |
|
8 |
||
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
9 |
class PlayersListModel; |
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
10 |
class RoomsListModel; |
14936 | 11 |
class NetSession : public QObject { |
12 |
Q_OBJECT |
|
13 |
||
15060 | 14 |
const int cMinServerVersion = 3; |
15 |
const int cProtocolVersion = 60; |
|
16 |
||
14936 | 17 |
// clang-format off |
18 |
Q_PROPERTY(QUrl url READ url WRITE setUrl NOTIFY urlChanged) |
|
19 |
Q_PROPERTY(QAbstractSocket::SocketState state READ state NOTIFY stateChanged) |
|
20 |
Q_PROPERTY(QString nickname READ nickname WRITE setNickname NOTIFY nicknameChanged) |
|
21 |
Q_PROPERTY(SessionState sessionState READ sessionState NOTIFY sessionStateChanged) |
|
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
22 |
Q_PROPERTY(QString room READ room NOTIFY roomChanged) |
15099 | 23 |
Q_PROPERTY(QString passwordHash READ passwordHash WRITE setPasswordHash NOTIFY passwordHashChanged) |
14936 | 24 |
// clang-format on |
25 |
||
26 |
public: |
|
15099 | 27 |
enum SessionState { NotConnected, Login, Authentication, Lobby, Room, Game }; |
14936 | 28 |
Q_ENUMS(SessionState) |
29 |
||
30 |
explicit NetSession(QObject *parent = nullptr); |
|
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
31 |
~NetSession() override; |
14936 | 32 |
|
33 |
QUrl url() const; |
|
34 |
QAbstractSocket::SocketState state() const; |
|
35 |
||
36 |
QString nickname() const; |
|
37 |
SessionState sessionState() const; |
|
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
38 |
QString room() const; |
15099 | 39 |
QString passwordHash() const; |
14936 | 40 |
|
41 |
public slots: |
|
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
42 |
void open(); |
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
43 |
void close(); |
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
44 |
|
14936 | 45 |
void setUrl(const QUrl &url); |
46 |
void setNickname(const QString &nickname); |
|
15099 | 47 |
void setPasswordHash(const QString &passwordHash); |
14936 | 48 |
|
49 |
signals: |
|
50 |
void urlChanged(const QUrl url); |
|
51 |
void stateChanged(QAbstractSocket::SocketState state); |
|
52 |
void nicknameChanged(const QString &nickname); |
|
53 |
void sessionStateChanged(SessionState sessionState); |
|
15060 | 54 |
void warning(const QString &message); |
55 |
void error(const QString &message); |
|
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
56 |
void roomChanged(const QString &room); |
15099 | 57 |
void passwordHashChanged(const QString &passwordHash); |
58 |
void passwordAsked(); |
|
14936 | 59 |
|
60 |
private slots: |
|
61 |
void onReadyRead(); |
|
62 |
void parseNetMessage(const QStringList &message); |
|
63 |
void handleConnected(const QStringList ¶meters); |
|
64 |
void handlePing(const QStringList ¶meters); |
|
65 |
void handleBye(const QStringList ¶meters); |
|
66 |
void handleUnknownCommand(const QStringList ¶meters); |
|
15060 | 67 |
void handleAddTeam(const QStringList ¶meters); |
68 |
void handleAskPassword(const QStringList ¶meters); |
|
69 |
void handleBanList(const QStringList ¶meters); |
|
70 |
void handleCfg(const QStringList ¶meters); |
|
71 |
void handleChat(const QStringList ¶meters); |
|
72 |
void handleClientFlags(const QStringList ¶meters); |
|
73 |
void handleEm(const QStringList ¶meters); |
|
74 |
void handleError(const QStringList ¶meters); |
|
75 |
void handleHhNum(const QStringList ¶meters); |
|
76 |
void handleInfo(const QStringList ¶meters); |
|
77 |
void handleJoined(const QStringList ¶meters); |
|
78 |
void handleJoining(const QStringList ¶meters); |
|
79 |
void handleKicked(const QStringList ¶meters); |
|
80 |
void handleLeft(const QStringList ¶meters); |
|
81 |
void handleLobbyJoined(const QStringList ¶meters); |
|
82 |
void handleLobbyLeft(const QStringList ¶meters); |
|
83 |
void handleNick(const QStringList ¶meters); |
|
84 |
void handleNotice(const QStringList ¶meters); |
|
85 |
void handlePong(const QStringList ¶meters); |
|
86 |
void handleProto(const QStringList ¶meters); |
|
87 |
void handleRedirect(const QStringList ¶meters); |
|
88 |
void handleRemoveTeam(const QStringList ¶meters); |
|
89 |
void handleReplayStart(const QStringList ¶meters); |
|
90 |
void handleRoomAbandoned(const QStringList ¶meters); |
|
91 |
void handleRoom(const QStringList ¶meters); |
|
92 |
void handleRooms(const QStringList ¶meters); |
|
93 |
void handleRoundFinished(const QStringList ¶meters); |
|
94 |
void handleRunGame(const QStringList ¶meters); |
|
95 |
void handleServerAuth(const QStringList ¶meters); |
|
96 |
void handleServerMessage(const QStringList ¶meters); |
|
97 |
void handleServerVars(const QStringList ¶meters); |
|
98 |
void handleTeamAccepted(const QStringList ¶meters); |
|
99 |
void handleTeamColor(const QStringList ¶meters); |
|
100 |
void handleWarning(const QStringList ¶meters); |
|
101 |
||
14936 | 102 |
void send(const QString &message); |
103 |
void send(const QString &message, const QString ¶m); |
|
104 |
void send(const QString &message, const QStringList ¶meters); |
|
105 |
void send(const QStringList &message); |
|
15099 | 106 |
|
107 |
void sendPassword(); |
|
108 |
||
14936 | 109 |
void setSessionState(SessionState sessionState); |
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
110 |
void setRoom(const QString &room); |
14936 | 111 |
|
112 |
private: |
|
113 |
QUrl m_url; |
|
114 |
QSharedPointer<QTcpSocket> m_socket; |
|
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
115 |
QSharedPointer<PlayersListModel> m_playersModel; |
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
116 |
QSharedPointer<RoomsListModel> m_roomsModel; |
14936 | 117 |
QString m_nickname; |
118 |
QStringList m_buffer; |
|
119 |
SessionState m_sessionState; |
|
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
120 |
QString m_serverAuthHash; |
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
121 |
QString m_room; |
15099 | 122 |
QString m_serverSalt; |
123 |
QString m_serverHash; |
|
124 |
QString m_clientSalt; |
|
125 |
QString m_passwordHash; |
|
15068
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
126 |
|
773beead236f
Add handling of some messages, reuse models from the old frontend
unc0rr
parents:
15060
diff
changeset
|
127 |
Q_DISABLE_COPY(NetSession) |
14936 | 128 |
}; |
129 |
||
130 |
#endif // NET_SESSION_H |