author | alfadur |
Mon, 07 Oct 2019 23:53:47 +0300 | |
changeset 15444 | c03b2e263488 |
parent 15124 | 824472aa4d97 |
child 15532 | f1205f33bf5b |
permissions | -rw-r--r-- |
15074 | 1 |
use crate::core::types::{GameCfg, HedgehogInfo, ServerVar, TeamInfo, VoteType}; |
14457 | 2 |
use std::{convert::From, iter::once, ops}; |
12130 | 3 |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
4 |
#[derive(PartialEq, Eq, Clone, Debug)] |
15075 | 5 |
pub enum HwProtocolMessage { |
14697 | 6 |
// common messages |
12130 | 7 |
Ping, |
8 |
Pong, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
9 |
Quit(Option<String>), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
10 |
Global(String), |
14785
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
11 |
Watch(u32), |
12130 | 12 |
ToggleServerRegisteredOnly, |
13 |
SuperPower, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
14 |
Info(String), |
14697 | 15 |
// anteroom messages |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
16 |
Nick(String), |
13520 | 17 |
Proto(u16), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
18 |
Password(String, String), |
13798 | 19 |
Checker(u16, String, String), |
14697 | 20 |
// lobby messages |
12130 | 21 |
List, |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
22 |
Chat(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
23 |
CreateRoom(String, Option<String>), |
13416 | 24 |
JoinRoom(String, Option<String>), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
25 |
Follow(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
26 |
Rnd(Vec<String>), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
27 |
Kick(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
28 |
Ban(String, String, u32), |
15124 | 29 |
BanIp(String, String, u32), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
30 |
BanNick(String, String, u32), |
12130 | 31 |
BanList, |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
32 |
Unban(String), |
12130 | 33 |
SetServerVar(ServerVar), |
34 |
GetServerVar, |
|
35 |
RestartServer, |
|
36 |
Stats, |
|
14697 | 37 |
// room messages |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
38 |
Part(Option<String>), |
12130 | 39 |
Cfg(GameCfg), |
13524 | 40 |
AddTeam(Box<TeamInfo>), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
41 |
RemoveTeam(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
42 |
SetHedgehogsNumber(String, u8), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
43 |
SetTeamColor(String, u8), |
12130 | 44 |
ToggleReady, |
45 |
StartGame, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
46 |
EngineMessage(String), |
12130 | 47 |
RoundFinished, |
48 |
ToggleRestrictJoin, |
|
49 |
ToggleRestrictTeams, |
|
50 |
ToggleRegisteredOnly, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
51 |
RoomName(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
52 |
Delegate(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
53 |
TeamChat(String), |
12130 | 54 |
MaxTeams(u8), |
55 |
Fix, |
|
56 |
Unfix, |
|
15111 | 57 |
Greeting(Option<String>), |
13478 | 58 |
CallVote(Option<VoteType>), |
59 |
Vote(bool), |
|
60 |
ForceVote(bool), |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
61 |
Save(String, String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
62 |
Delete(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
63 |
SaveRoom(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
64 |
LoadRoom(String), |
12130 | 65 |
} |
12131 | 66 |
|
14791 | 67 |
#[derive(Debug, Clone, Copy)] |
14782 | 68 |
pub enum ProtocolFlags { |
69 |
InRoom, |
|
70 |
RoomMaster, |
|
71 |
Ready, |
|
72 |
InGame, |
|
14791 | 73 |
Registered, |
14782 | 74 |
Admin, |
75 |
Contributor, |
|
76 |
} |
|
77 |
||
78 |
impl ProtocolFlags { |
|
79 |
#[inline] |
|
80 |
fn flag_char(&self) -> char { |
|
81 |
match self { |
|
82 |
ProtocolFlags::InRoom => 'i', |
|
83 |
ProtocolFlags::RoomMaster => 'h', |
|
84 |
ProtocolFlags::Ready => 'r', |
|
85 |
ProtocolFlags::InGame => 'g', |
|
14791 | 86 |
ProtocolFlags::Registered => 'u', |
14782 | 87 |
ProtocolFlags::Admin => 'a', |
88 |
ProtocolFlags::Contributor => 'c', |
|
89 |
} |
|
90 |
} |
|
91 |
||
92 |
#[inline] |
|
93 |
fn format(prefix: char, flags: &[ProtocolFlags]) -> String { |
|
94 |
once(prefix) |
|
95 |
.chain(flags.iter().map(|f| f.flag_char())) |
|
96 |
.collect() |
|
97 |
} |
|
98 |
} |
|
99 |
||
100 |
#[inline] |
|
101 |
pub fn add_flags(flags: &[ProtocolFlags]) -> String { |
|
102 |
ProtocolFlags::format('+', flags) |
|
103 |
} |
|
104 |
||
105 |
#[inline] |
|
106 |
pub fn remove_flags(flags: &[ProtocolFlags]) -> String { |
|
107 |
ProtocolFlags::format('-', flags) |
|
108 |
} |
|
109 |
||
110 |
#[derive(Debug)] |
|
15075 | 111 |
pub enum HwServerMessage { |
14835 | 112 |
Connected(u32), |
113 |
Redirect(u16), |
|
114 |
||
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
115 |
Ping, |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
116 |
Pong, |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
117 |
Bye(String), |
14779
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14697
diff
changeset
|
118 |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
119 |
Nick(String), |
13520 | 120 |
Proto(u16), |
14779
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14697
diff
changeset
|
121 |
AskPassword(String), |
14783 | 122 |
ServerAuth(String), |
14779
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14697
diff
changeset
|
123 |
|
13416 | 124 |
LobbyLeft(String, String), |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
125 |
LobbyJoined(Vec<String>), |
14457 | 126 |
ChatMsg { nick: String, msg: String }, |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
127 |
ClientFlags(String, Vec<String>), |
13416 | 128 |
Rooms(Vec<String>), |
129 |
RoomAdd(Vec<String>), |
|
130 |
RoomJoined(Vec<String>), |
|
131 |
RoomLeft(String, String), |
|
132 |
RoomRemove(String), |
|
133 |
RoomUpdated(String, Vec<String>), |
|
14787 | 134 |
Joining(String), |
13419 | 135 |
TeamAdd(Vec<String>), |
136 |
TeamRemove(String), |
|
137 |
TeamAccepted(String), |
|
138 |
TeamColor(String, u8), |
|
139 |
HedgehogsNumber(String, u8), |
|
13422 | 140 |
ConfigEntry(String, Vec<String>), |
13478 | 141 |
Kicked, |
13423 | 142 |
RunGame, |
13428 | 143 |
ForwardEngineMessage(Vec<String>), |
13423 | 144 |
RoundFinished, |
14907 | 145 |
ReplayStart, |
13419 | 146 |
|
14786
8ecdb5c6bb2a
implement info, registered only & super power messages
alfadur
parents:
14785
diff
changeset
|
147 |
Info(Vec<String>), |
13416 | 148 |
ServerMessage(String), |
14783 | 149 |
ServerVars(Vec<String>), |
13801 | 150 |
Notice(String), |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
151 |
Warning(String), |
13416 | 152 |
Error(String), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
153 |
Unreachable, |
13801 | 154 |
|
155 |
//Deprecated messages |
|
14457 | 156 |
LegacyReady(bool, Vec<String>), |
12131 | 157 |
} |
12136 | 158 |
|
15075 | 159 |
fn special_chat(nick: &str, msg: String) -> HwServerMessage { |
160 |
HwServerMessage::ChatMsg { |
|
14784 | 161 |
nick: nick.to_string(), |
14457 | 162 |
msg, |
163 |
} |
|
13478 | 164 |
} |
165 |
||
15075 | 166 |
pub fn server_chat(msg: String) -> HwServerMessage { |
14784 | 167 |
special_chat("[server]", msg) |
168 |
} |
|
169 |
||
15075 | 170 |
pub fn global_chat(msg: String) -> HwServerMessage { |
14784 | 171 |
special_chat("(global notice)", msg) |
172 |
} |
|
173 |
||
14783 | 174 |
impl ServerVar { |
175 |
pub fn to_protocol(&self) -> Vec<String> { |
|
15112 | 176 |
use ServerVar::*; |
14783 | 177 |
match self { |
15112 | 178 |
MOTDNew(s) => vec!["MOTD_NEW".to_string(), s.clone()], |
179 |
MOTDOld(s) => vec!["MOTD_OLD".to_string(), s.clone()], |
|
180 |
LatestProto(n) => vec!["LATEST_PROTO".to_string(), n.to_string()], |
|
181 |
} |
|
182 |
} |
|
183 |
} |
|
184 |
||
185 |
impl VoteType { |
|
186 |
pub fn to_protocol(&self) -> Vec<String> { |
|
187 |
use VoteType::*; |
|
188 |
match self { |
|
189 |
Kick(nick) => vec!["KICK".to_string(), nick.clone()], |
|
190 |
Map(None) => vec!["MAP".to_string()], |
|
191 |
Map(Some(name)) => vec!["MAP".to_string(), name.clone()], |
|
192 |
Pause => vec!["PAUSE".to_string()], |
|
193 |
NewSeed => vec!["NEWSEED".to_string()], |
|
194 |
HedgehogsPerTeam(count) => vec!["HEDGEHOGS".to_string(), count.to_string()], |
|
14783 | 195 |
} |
196 |
} |
|
197 |
} |
|
198 |
||
13422 | 199 |
impl GameCfg { |
13439 | 200 |
pub fn to_protocol(&self) -> (String, Vec<String>) { |
15112 | 201 |
use GameCfg::*; |
13422 | 202 |
match self { |
13439 | 203 |
FeatureSize(s) => ("FEATURE_SIZE".to_string(), vec![s.to_string()]), |
204 |
MapType(t) => ("MAP".to_string(), vec![t.to_string()]), |
|
205 |
MapGenerator(g) => ("MAPGEN".to_string(), vec![g.to_string()]), |
|
206 |
MazeSize(s) => ("MAZE_SIZE".to_string(), vec![s.to_string()]), |
|
207 |
Seed(s) => ("SEED".to_string(), vec![s.to_string()]), |
|
208 |
Template(t) => ("TEMPLATE".to_string(), vec![t.to_string()]), |
|
13422 | 209 |
|
13439 | 210 |
Ammo(n, None) => ("AMMO".to_string(), vec![n.to_string()]), |
211 |
Ammo(n, Some(s)) => ("AMMO".to_string(), vec![n.to_string(), s.to_string()]), |
|
13801 | 212 |
Scheme(n, s) if s.is_empty() => ("SCHEME".to_string(), vec![n.to_string()]), |
213 |
Scheme(n, s) => ("SCHEME".to_string(), { |
|
13422 | 214 |
let mut v = vec![n.to_string()]; |
13439 | 215 |
v.extend(s.clone().into_iter()); |
13422 | 216 |
v |
217 |
}), |
|
13439 | 218 |
Script(s) => ("SCRIPT".to_string(), vec![s.to_string()]), |
219 |
Theme(t) => ("THEME".to_string(), vec![t.to_string()]), |
|
14457 | 220 |
DrawnMap(m) => ("DRAWNMAP".to_string(), vec![m.to_string()]), |
13422 | 221 |
} |
222 |
} |
|
13439 | 223 |
|
15075 | 224 |
pub fn to_server_msg(&self) -> HwServerMessage { |
225 |
use self::HwServerMessage::ConfigEntry; |
|
13439 | 226 |
let (name, args) = self.to_protocol(); |
15075 | 227 |
HwServerMessage::ConfigEntry(name, args) |
13439 | 228 |
} |
13422 | 229 |
} |
230 |
||
14785
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
231 |
impl TeamInfo { |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
232 |
pub fn to_protocol(&self) -> Vec<String> { |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
233 |
let mut info = vec![ |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
234 |
self.name.clone(), |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
235 |
self.grave.clone(), |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
236 |
self.fort.clone(), |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
237 |
self.voice_pack.clone(), |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
238 |
self.flag.clone(), |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
239 |
self.owner.clone(), |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
240 |
self.difficulty.to_string(), |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
241 |
]; |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
242 |
let hogs = self |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
243 |
.hedgehogs |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
244 |
.iter() |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
245 |
.flat_map(|h| once(h.name.clone()).chain(once(h.hat.clone()))); |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
246 |
info.extend(hogs); |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
247 |
info |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
248 |
} |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
249 |
} |
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14784
diff
changeset
|
250 |
|
13416 | 251 |
macro_rules! const_braces { |
14457 | 252 |
($e: expr) => { |
253 |
"{}\n" |
|
254 |
}; |
|
13416 | 255 |
} |
256 |
||
257 |
macro_rules! msg { |
|
258 |
[$($part: expr),*] => { |
|
259 |
format!(concat!($(const_braces!($part)),*, "\n"), $($part),*); |
|
260 |
}; |
|
261 |
} |
|
262 |
||
13796 | 263 |
#[cfg(test)] |
13439 | 264 |
macro_rules! several { |
265 |
[$part: expr] => { once($part) }; |
|
266 |
[$part: expr, $($other: expr),*] => { once($part).chain(several![$($other),*]) }; |
|
267 |
} |
|
268 |
||
15075 | 269 |
impl HwProtocolMessage { |
13433
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
270 |
/** Converts the message to a raw `String`, which can be sent over the network. |
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
271 |
* |
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
272 |
* This is the inverse of the `message` parser. |
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
273 |
*/ |
13796 | 274 |
#[cfg(test)] |
13433
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
275 |
pub(crate) fn to_raw_protocol(&self) -> String { |
15075 | 276 |
use self::HwProtocolMessage::*; |
13432 | 277 |
match self { |
278 |
Ping => msg!["PING"], |
|
279 |
Pong => msg!["PONG"], |
|
280 |
Quit(None) => msg!["QUIT"], |
|
281 |
Quit(Some(msg)) => msg!["QUIT", msg], |
|
282 |
Global(msg) => msg!["CMD", format!("GLOBAL {}", msg)], |
|
283 |
Watch(name) => msg!["CMD", format!("WATCH {}", name)], |
|
284 |
ToggleServerRegisteredOnly => msg!["CMD", "REGISTERED_ONLY"], |
|
14457 | 285 |
SuperPower => msg!["CMD", "SUPER_POWER"], |
13432 | 286 |
Info(info) => msg!["CMD", format!("INFO {}", info)], |
287 |
Nick(nick) => msg!("NICK", nick), |
|
288 |
Proto(version) => msg!["PROTO", version], |
|
289 |
Password(p, s) => msg!["PASSWORD", p, s], |
|
290 |
Checker(i, n, p) => msg!["CHECKER", i, n, p], |
|
291 |
List => msg!["LIST"], |
|
292 |
Chat(msg) => msg!["CHAT", msg], |
|
293 |
CreateRoom(name, None) => msg!["CREATE_ROOM", name], |
|
14457 | 294 |
CreateRoom(name, Some(password)) => msg!["CREATE_ROOM", name, password], |
13432 | 295 |
JoinRoom(name, None) => msg!["JOIN_ROOM", name], |
14457 | 296 |
JoinRoom(name, Some(password)) => msg!["JOIN_ROOM", name, password], |
13432 | 297 |
Follow(name) => msg!["FOLLOW", name], |
14457 | 298 |
Rnd(args) => { |
299 |
if args.is_empty() { |
|
300 |
msg!["CMD", "RND"] |
|
301 |
} else { |
|
302 |
msg!["CMD", format!("RND {}", args.join(" "))] |
|
303 |
} |
|
304 |
} |
|
13432 | 305 |
Kick(name) => msg!["KICK", name], |
306 |
Ban(name, reason, time) => msg!["BAN", name, reason, time], |
|
15124 | 307 |
BanIp(ip, reason, time) => msg!["BAN_IP", ip, reason, time], |
14457 | 308 |
BanNick(nick, reason, time) => msg!("BAN_NICK", nick, reason, time), |
13432 | 309 |
BanList => msg!["BANLIST"], |
310 |
Unban(name) => msg!["UNBAN", name], |
|
14783 | 311 |
SetServerVar(var) => construct_message(&["SET_SERVER_VAR"], &var.to_protocol()), |
13432 | 312 |
GetServerVar => msg!["GET_SERVER_VAR"], |
313 |
RestartServer => msg!["CMD", "RESTART_SERVER YES"], |
|
314 |
Stats => msg!["CMD", "STATS"], |
|
315 |
Part(None) => msg!["PART"], |
|
316 |
Part(Some(msg)) => msg!["PART", msg], |
|
13439 | 317 |
Cfg(config) => { |
318 |
let (name, args) = config.to_protocol(); |
|
319 |
msg!["CFG", name, args.join("\n")] |
|
14457 | 320 |
} |
321 |
AddTeam(info) => msg![ |
|
322 |
"ADD_TEAM", |
|
323 |
info.name, |
|
324 |
info.color, |
|
325 |
info.grave, |
|
326 |
info.fort, |
|
327 |
info.voice_pack, |
|
328 |
info.flag, |
|
329 |
info.difficulty, |
|
330 |
info.hedgehogs |
|
331 |
.iter() |
|
332 |
.flat_map(|h| several![&h.name[..], &h.hat[..]]) |
|
333 |
.collect::<Vec<_>>() |
|
334 |
.join("\n") |
|
335 |
], |
|
13432 | 336 |
RemoveTeam(name) => msg!["REMOVE_TEAM", name], |
13439 | 337 |
SetHedgehogsNumber(team, number) => msg!["HH_NUM", team, number], |
338 |
SetTeamColor(team, color) => msg!["TEAM_COLOR", team, color], |
|
13432 | 339 |
ToggleReady => msg!["TOGGLE_READY"], |
340 |
StartGame => msg!["START_GAME"], |
|
341 |
EngineMessage(msg) => msg!["EM", msg], |
|
342 |
RoundFinished => msg!["ROUNDFINISHED"], |
|
343 |
ToggleRestrictJoin => msg!["TOGGLE_RESTRICT_JOINS"], |
|
344 |
ToggleRestrictTeams => msg!["TOGGLE_RESTRICT_TEAMS"], |
|
345 |
ToggleRegisteredOnly => msg!["TOGGLE_REGISTERED_ONLY"], |
|
346 |
RoomName(name) => msg!["ROOM_NAME", name], |
|
347 |
Delegate(name) => msg!["CMD", format!("DELEGATE {}", name)], |
|
348 |
TeamChat(msg) => msg!["TEAMCHAT", msg], |
|
14457 | 349 |
MaxTeams(count) => msg!["CMD", format!("MAXTEAMS {}", count)], |
13432 | 350 |
Fix => msg!["CMD", "FIX"], |
351 |
Unfix => msg!["CMD", "UNFIX"], |
|
15111 | 352 |
Greeting(None) => msg!["CMD", "GREETING"], |
353 |
Greeting(Some(msg)) => msg!["CMD", format!("GREETING {}", msg)], |
|
15112 | 354 |
CallVote(None) => msg!["CMD", "CALLVOTE"], |
355 |
CallVote(Some(vote)) => { |
|
356 |
msg!["CMD", format!("CALLVOTE {}", &vote.to_protocol().join(" "))] |
|
357 |
} |
|
14457 | 358 |
Vote(msg) => msg!["CMD", format!("VOTE {}", if *msg { "YES" } else { "NO" })], |
359 |
ForceVote(msg) => msg!["CMD", format!("FORCE {}", if *msg { "YES" } else { "NO" })], |
|
13528 | 360 |
Save(name, location) => msg!["CMD", format!("SAVE {} {}", name, location)], |
361 |
Delete(name) => msg!["CMD", format!("DELETE {}", name)], |
|
362 |
SaveRoom(name) => msg!["CMD", format!("SAVEROOM {}", name)], |
|
363 |
LoadRoom(name) => msg!["CMD", format!("LOADROOM {}", name)], |
|
14457 | 364 |
_ => panic!("Protocol message not yet implemented"), |
13432 | 365 |
} |
366 |
} |
|
367 |
} |
|
368 |
||
13524 | 369 |
fn construct_message(header: &[&str], msg: &[String]) -> String { |
14350 | 370 |
let mut v: Vec<_> = header.iter().cloned().collect(); |
13419 | 371 |
v.extend(msg.iter().map(|s| &s[..])); |
372 |
v.push("\n"); |
|
373 |
v.join("\n") |
|
13416 | 374 |
} |
375 |
||
15075 | 376 |
impl HwServerMessage { |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
377 |
pub fn to_raw_protocol(&self) -> String { |
15075 | 378 |
use self::HwServerMessage::*; |
12136 | 379 |
match self { |
13416 | 380 |
Ping => msg!["PING"], |
381 |
Pong => msg!["PONG"], |
|
382 |
Connected(protocol_version) => msg![ |
|
383 |
"CONNECTED", |
|
13667 | 384 |
"Hedgewars server https://www.hedgewars.org/", |
14457 | 385 |
protocol_version |
386 |
], |
|
14835 | 387 |
Redirect(port) => msg!["REDIRECT", port], |
13416 | 388 |
Bye(msg) => msg!["BYE", msg], |
389 |
Nick(nick) => msg!["NICK", nick], |
|
390 |
Proto(proto) => msg!["PROTO", proto], |
|
14779
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14697
diff
changeset
|
391 |
AskPassword(salt) => msg!["ASKPASSWORD", salt], |
13800 | 392 |
ServerAuth(hash) => msg!["SERVER_AUTH", hash], |
13416 | 393 |
LobbyLeft(nick, msg) => msg!["LOBBY:LEFT", nick, msg], |
14457 | 394 |
LobbyJoined(nicks) => construct_message(&["LOBBY:JOINED"], &nicks), |
395 |
ClientFlags(flags, nicks) => construct_message(&["CLIENT_FLAGS", flags], &nicks), |
|
396 |
Rooms(info) => construct_message(&["ROOMS"], &info), |
|
397 |
RoomAdd(info) => construct_message(&["ROOM", "ADD"], &info), |
|
398 |
RoomJoined(nicks) => construct_message(&["JOINED"], &nicks), |
|
13416 | 399 |
RoomLeft(nick, msg) => msg!["LEFT", nick, msg], |
400 |
RoomRemove(name) => msg!["ROOM", "DEL", name], |
|
14457 | 401 |
RoomUpdated(name, info) => construct_message(&["ROOM", "UPD", name], &info), |
14787 | 402 |
Joining(name) => msg!["JOINING", name], |
14457 | 403 |
TeamAdd(info) => construct_message(&["ADD_TEAM"], &info), |
13419 | 404 |
TeamRemove(name) => msg!["REMOVE_TEAM", name], |
405 |
TeamAccepted(name) => msg!["TEAM_ACCEPTED", name], |
|
406 |
TeamColor(name, color) => msg!["TEAM_COLOR", name, color], |
|
407 |
HedgehogsNumber(name, number) => msg!["HH_NUM", name, number], |
|
14457 | 408 |
ConfigEntry(name, values) => construct_message(&["CFG", name], &values), |
13478 | 409 |
Kicked => msg!["KICKED"], |
13423 | 410 |
RunGame => msg!["RUN_GAME"], |
14457 | 411 |
ForwardEngineMessage(em) => construct_message(&["EM"], &em), |
13423 | 412 |
RoundFinished => msg!["ROUND_FINISHED"], |
14457 | 413 |
ChatMsg { nick, msg } => msg!["CHAT", nick, msg], |
14786
8ecdb5c6bb2a
implement info, registered only & super power messages
alfadur
parents:
14785
diff
changeset
|
414 |
Info(info) => construct_message(&["INFO"], &info), |
13416 | 415 |
ServerMessage(msg) => msg!["SERVER_MESSAGE", msg], |
14783 | 416 |
ServerVars(vars) => construct_message(&["SERVER_VARS"], &vars), |
13801 | 417 |
Notice(msg) => msg!["NOTICE", msg], |
13416 | 418 |
Warning(msg) => msg!["WARNING", msg], |
419 |
Error(msg) => msg!["ERROR", msg], |
|
15112 | 420 |
ReplayStart => msg!["REPLAY_START"], |
13801 | 421 |
|
14457 | 422 |
LegacyReady(is_ready, nicks) => { |
423 |
construct_message(&[if *is_ready { "READY" } else { "NOT_READY" }], &nicks) |
|
424 |
} |
|
13801 | 425 |
|
13416 | 426 |
_ => msg!["ERROR", "UNIMPLEMENTED"], |
12136 | 427 |
} |
428 |
} |
|
429 |
} |