author | alfadur |
Tue, 28 Aug 2018 17:19:25 +0300 | |
changeset 13796 | 59ea2403f62d |
parent 13667 | bfc2727daead |
child 13798 | 4664da990556 |
permissions | -rw-r--r-- |
13666 | 1 |
use crate::server::coretypes::{ |
13478 | 2 |
ServerVar, GameCfg, TeamInfo, |
3 |
HedgehogInfo, VoteType |
|
4 |
}; |
|
13439 | 5 |
use std::{ops, convert::From, iter::once}; |
12130 | 6 |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
7 |
#[derive(PartialEq, Eq, Clone, Debug)] |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
8 |
pub enum HWProtocolMessage { |
12130 | 9 |
// core |
10 |
Ping, |
|
11 |
Pong, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
12 |
Quit(Option<String>), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
13 |
//Cmd(String, Vec<String>), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
14 |
Global(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
15 |
Watch(String), |
12130 | 16 |
ToggleServerRegisteredOnly, |
17 |
SuperPower, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
18 |
Info(String), |
12130 | 19 |
// not entered state |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
20 |
Nick(String), |
13520 | 21 |
Proto(u16), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
22 |
Password(String, String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
23 |
Checker(u32, String, String), |
12130 | 24 |
// lobby |
25 |
List, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
26 |
Chat(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
27 |
CreateRoom(String, Option<String>), |
13416 | 28 |
JoinRoom(String, Option<String>), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
29 |
Follow(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
30 |
Rnd(Vec<String>), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
31 |
Kick(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
32 |
Ban(String, String, u32), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
33 |
BanIP(String, String, u32), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
34 |
BanNick(String, String, u32), |
12130 | 35 |
BanList, |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
36 |
Unban(String), |
12130 | 37 |
SetServerVar(ServerVar), |
38 |
GetServerVar, |
|
39 |
RestartServer, |
|
40 |
Stats, |
|
41 |
// in room |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
42 |
Part(Option<String>), |
12130 | 43 |
Cfg(GameCfg), |
13524 | 44 |
AddTeam(Box<TeamInfo>), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
45 |
RemoveTeam(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
46 |
SetHedgehogsNumber(String, u8), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
47 |
SetTeamColor(String, u8), |
12130 | 48 |
ToggleReady, |
49 |
StartGame, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
50 |
EngineMessage(String), |
12130 | 51 |
RoundFinished, |
52 |
ToggleRestrictJoin, |
|
53 |
ToggleRestrictTeams, |
|
54 |
ToggleRegisteredOnly, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
55 |
RoomName(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
56 |
Delegate(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
57 |
TeamChat(String), |
12130 | 58 |
MaxTeams(u8), |
59 |
Fix, |
|
60 |
Unfix, |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
61 |
Greeting(String), |
13478 | 62 |
CallVote(Option<VoteType>), |
63 |
Vote(bool), |
|
64 |
ForceVote(bool), |
|
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
65 |
Save(String, String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
66 |
Delete(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
67 |
SaveRoom(String), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
68 |
LoadRoom(String), |
12137
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12136
diff
changeset
|
69 |
Malformed, |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12136
diff
changeset
|
70 |
Empty, |
12130 | 71 |
} |
12131 | 72 |
|
13416 | 73 |
#[derive(Debug)] |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
74 |
pub enum HWServerMessage { |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
75 |
Ping, |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
76 |
Pong, |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
77 |
Bye(String), |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
78 |
Nick(String), |
13520 | 79 |
Proto(u16), |
13416 | 80 |
LobbyLeft(String, String), |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
81 |
LobbyJoined(Vec<String>), |
13444
914f9b970f4d
Implement server-side logic for Rnd
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13440
diff
changeset
|
82 |
ChatMsg {nick: String, msg: String}, |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
83 |
ClientFlags(String, Vec<String>), |
13416 | 84 |
Rooms(Vec<String>), |
85 |
RoomAdd(Vec<String>), |
|
86 |
RoomJoined(Vec<String>), |
|
87 |
RoomLeft(String, String), |
|
88 |
RoomRemove(String), |
|
89 |
RoomUpdated(String, Vec<String>), |
|
13419 | 90 |
TeamAdd(Vec<String>), |
91 |
TeamRemove(String), |
|
92 |
TeamAccepted(String), |
|
93 |
TeamColor(String, u8), |
|
94 |
HedgehogsNumber(String, u8), |
|
13422 | 95 |
ConfigEntry(String, Vec<String>), |
13478 | 96 |
Kicked, |
13423 | 97 |
RunGame, |
13428 | 98 |
ForwardEngineMessage(Vec<String>), |
13423 | 99 |
RoundFinished, |
13419 | 100 |
|
13416 | 101 |
ServerMessage(String), |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
102 |
Warning(String), |
13416 | 103 |
Error(String), |
12142
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
104 |
Connected(u32), |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12141
diff
changeset
|
105 |
Unreachable, |
12131 | 106 |
} |
12136 | 107 |
|
13527 | 108 |
pub fn server_chat(msg: String) -> HWServerMessage { |
109 |
HWServerMessage::ChatMsg{ nick: "[server]".to_string(), msg } |
|
13478 | 110 |
} |
111 |
||
13422 | 112 |
impl GameCfg { |
13439 | 113 |
pub fn to_protocol(&self) -> (String, Vec<String>) { |
13666 | 114 |
use crate::server::coretypes::GameCfg::*; |
13422 | 115 |
match self { |
13439 | 116 |
FeatureSize(s) => ("FEATURE_SIZE".to_string(), vec![s.to_string()]), |
117 |
MapType(t) => ("MAP".to_string(), vec![t.to_string()]), |
|
118 |
MapGenerator(g) => ("MAPGEN".to_string(), vec![g.to_string()]), |
|
119 |
MazeSize(s) => ("MAZE_SIZE".to_string(), vec![s.to_string()]), |
|
120 |
Seed(s) => ("SEED".to_string(), vec![s.to_string()]), |
|
121 |
Template(t) => ("TEMPLATE".to_string(), vec![t.to_string()]), |
|
13422 | 122 |
|
13439 | 123 |
Ammo(n, None) => ("AMMO".to_string(), vec![n.to_string()]), |
124 |
Ammo(n, Some(s)) => ("AMMO".to_string(), vec![n.to_string(), s.to_string()]), |
|
125 |
Scheme(n, None) => ("SCHEME".to_string(), vec![n.to_string()]), |
|
126 |
Scheme(n, Some(s)) => ("SCHEME".to_string(), { |
|
13422 | 127 |
let mut v = vec![n.to_string()]; |
13439 | 128 |
v.extend(s.clone().into_iter()); |
13422 | 129 |
v |
130 |
}), |
|
13439 | 131 |
Script(s) => ("SCRIPT".to_string(), vec![s.to_string()]), |
132 |
Theme(t) => ("THEME".to_string(), vec![t.to_string()]), |
|
133 |
DrawnMap(m) => ("DRAWNMAP".to_string(), vec![m.to_string()]) |
|
13422 | 134 |
} |
135 |
} |
|
13439 | 136 |
|
137 |
pub fn to_server_msg(&self) -> HWServerMessage { |
|
138 |
use self::HWServerMessage::ConfigEntry; |
|
139 |
let (name, args) = self.to_protocol(); |
|
140 |
HWServerMessage::ConfigEntry(name, args) |
|
141 |
} |
|
13422 | 142 |
} |
143 |
||
13416 | 144 |
macro_rules! const_braces { |
145 |
($e: expr) => { "{}\n" } |
|
146 |
} |
|
147 |
||
148 |
macro_rules! msg { |
|
149 |
[$($part: expr),*] => { |
|
150 |
format!(concat!($(const_braces!($part)),*, "\n"), $($part),*); |
|
151 |
}; |
|
152 |
} |
|
153 |
||
13796 | 154 |
#[cfg(test)] |
13439 | 155 |
macro_rules! several { |
156 |
[$part: expr] => { once($part) }; |
|
157 |
[$part: expr, $($other: expr),*] => { once($part).chain(several![$($other),*]) }; |
|
158 |
} |
|
159 |
||
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
|
160 |
impl HWProtocolMessage { |
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
|
161 |
/** 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
|
162 |
* |
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
|
163 |
* 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
|
164 |
*/ |
13796 | 165 |
#[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
|
166 |
pub(crate) fn to_raw_protocol(&self) -> String { |
13432 | 167 |
use self::HWProtocolMessage::*; |
168 |
match self { |
|
169 |
Ping => msg!["PING"], |
|
170 |
Pong => msg!["PONG"], |
|
171 |
Quit(None) => msg!["QUIT"], |
|
172 |
Quit(Some(msg)) => msg!["QUIT", msg], |
|
173 |
Global(msg) => msg!["CMD", format!("GLOBAL {}", msg)], |
|
174 |
Watch(name) => msg!["CMD", format!("WATCH {}", name)], |
|
175 |
ToggleServerRegisteredOnly => msg!["CMD", "REGISTERED_ONLY"], |
|
176 |
SuperPower => msg!["CMD", "SUPER_POWER"], |
|
177 |
Info(info) => msg!["CMD", format!("INFO {}", info)], |
|
178 |
Nick(nick) => msg!("NICK", nick), |
|
179 |
Proto(version) => msg!["PROTO", version], |
|
180 |
Password(p, s) => msg!["PASSWORD", p, s], |
|
181 |
Checker(i, n, p) => msg!["CHECKER", i, n, p], |
|
182 |
List => msg!["LIST"], |
|
183 |
Chat(msg) => msg!["CHAT", msg], |
|
184 |
CreateRoom(name, None) => msg!["CREATE_ROOM", name], |
|
185 |
CreateRoom(name, Some(password)) => |
|
186 |
msg!["CREATE_ROOM", name, password], |
|
187 |
JoinRoom(name, None) => msg!["JOIN_ROOM", name], |
|
188 |
JoinRoom(name, Some(password)) => |
|
189 |
msg!["JOIN_ROOM", name, password], |
|
190 |
Follow(name) => msg!["FOLLOW", name], |
|
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
|
191 |
Rnd(args) => if args.is_empty() { |
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
|
192 |
msg!["CMD", "RND"] |
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
|
193 |
} else { |
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
|
194 |
msg!["CMD", format!("RND {}", args.join(" "))] |
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
|
195 |
}, |
13432 | 196 |
Kick(name) => msg!["KICK", name], |
197 |
Ban(name, reason, time) => msg!["BAN", name, reason, time], |
|
198 |
BanIP(ip, reason, time) => msg!["BAN_IP", ip, reason, time], |
|
199 |
BanNick(nick, reason, time) => |
|
200 |
msg!("BAN_NICK", nick, reason, time), |
|
201 |
BanList => msg!["BANLIST"], |
|
202 |
Unban(name) => msg!["UNBAN", name], |
|
203 |
//SetServerVar(ServerVar), ??? |
|
204 |
GetServerVar => msg!["GET_SERVER_VAR"], |
|
205 |
RestartServer => msg!["CMD", "RESTART_SERVER YES"], |
|
206 |
Stats => msg!["CMD", "STATS"], |
|
207 |
Part(None) => msg!["PART"], |
|
208 |
Part(Some(msg)) => msg!["PART", msg], |
|
13439 | 209 |
Cfg(config) => { |
210 |
let (name, args) = config.to_protocol(); |
|
211 |
msg!["CFG", name, args.join("\n")] |
|
212 |
}, |
|
213 |
AddTeam(info) => |
|
13440 | 214 |
msg!["ADD_TEAM", info.name, info.color, info.grave, info.fort, |
13439 | 215 |
info.voice_pack, info.flag, info.difficulty, |
13440 | 216 |
info.hedgehogs.iter() |
217 |
.flat_map(|h| several![&h.name[..], &h.hat[..]]) |
|
218 |
.collect::<Vec<_>>().join("\n")], |
|
13432 | 219 |
RemoveTeam(name) => msg!["REMOVE_TEAM", name], |
13439 | 220 |
SetHedgehogsNumber(team, number) => msg!["HH_NUM", team, number], |
221 |
SetTeamColor(team, color) => msg!["TEAM_COLOR", team, color], |
|
13432 | 222 |
ToggleReady => msg!["TOGGLE_READY"], |
223 |
StartGame => msg!["START_GAME"], |
|
224 |
EngineMessage(msg) => msg!["EM", msg], |
|
225 |
RoundFinished => msg!["ROUNDFINISHED"], |
|
226 |
ToggleRestrictJoin => msg!["TOGGLE_RESTRICT_JOINS"], |
|
227 |
ToggleRestrictTeams => msg!["TOGGLE_RESTRICT_TEAMS"], |
|
228 |
ToggleRegisteredOnly => msg!["TOGGLE_REGISTERED_ONLY"], |
|
229 |
RoomName(name) => msg!["ROOM_NAME", name], |
|
230 |
Delegate(name) => msg!["CMD", format!("DELEGATE {}", name)], |
|
231 |
TeamChat(msg) => msg!["TEAMCHAT", msg], |
|
232 |
MaxTeams(count) => msg!["CMD", format!("MAXTEAMS {}", count)] , |
|
233 |
Fix => msg!["CMD", "FIX"], |
|
234 |
Unfix => msg!["CMD", "UNFIX"], |
|
235 |
Greeting(msg) => msg!["CMD", format!("GREETING {}", msg)], |
|
236 |
//CallVote(Option<(String, Option<String>)>) =>, ?? |
|
13481 | 237 |
Vote(msg) => msg!["CMD", format!("VOTE {}", if *msg {"YES"} else {"NO"})], |
238 |
ForceVote(msg) => msg!["CMD", format!("FORCE {}", if *msg {"YES"} else {"NO"})], |
|
13528 | 239 |
Save(name, location) => msg!["CMD", format!("SAVE {} {}", name, location)], |
240 |
Delete(name) => msg!["CMD", format!("DELETE {}", name)], |
|
241 |
SaveRoom(name) => msg!["CMD", format!("SAVEROOM {}", name)], |
|
242 |
LoadRoom(name) => msg!["CMD", format!("LOADROOM {}", name)], |
|
13432 | 243 |
Malformed => msg!["A", "QUICK", "BROWN", "HOG", "JUMPS", "OVER", "THE", "LAZY", "DOG"], |
244 |
Empty => msg![""], |
|
245 |
_ => panic!("Protocol message not yet implemented") |
|
246 |
} |
|
247 |
} |
|
248 |
} |
|
249 |
||
13524 | 250 |
fn construct_message(header: &[&str], msg: &[String]) -> String { |
13419 | 251 |
let mut v: Vec<_> = header.iter().map(|s| *s).collect(); |
252 |
v.extend(msg.iter().map(|s| &s[..])); |
|
253 |
v.push("\n"); |
|
254 |
v.join("\n") |
|
13416 | 255 |
} |
256 |
||
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
257 |
impl HWServerMessage { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
258 |
pub fn to_raw_protocol(&self) -> String { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
259 |
use self::HWServerMessage::*; |
12136 | 260 |
match self { |
13416 | 261 |
Ping => msg!["PING"], |
262 |
Pong => msg!["PONG"], |
|
263 |
Connected(protocol_version) => msg![ |
|
264 |
"CONNECTED", |
|
13667 | 265 |
"Hedgewars server https://www.hedgewars.org/", |
13416 | 266 |
protocol_version], |
267 |
Bye(msg) => msg!["BYE", msg], |
|
268 |
Nick(nick) => msg!["NICK", nick], |
|
269 |
Proto(proto) => msg!["PROTO", proto], |
|
270 |
LobbyLeft(nick, msg) => msg!["LOBBY:LEFT", nick, msg], |
|
13419 | 271 |
LobbyJoined(nicks) => |
272 |
construct_message(&["LOBBY:JOINED"], &nicks), |
|
273 |
ClientFlags(flags, nicks) => |
|
274 |
construct_message(&["CLIENT_FLAGS", flags], &nicks), |
|
275 |
Rooms(info) => |
|
276 |
construct_message(&["ROOMS"], &info), |
|
277 |
RoomAdd(info) => |
|
278 |
construct_message(&["ROOM", "ADD"], &info), |
|
279 |
RoomJoined(nicks) => |
|
280 |
construct_message(&["JOINED"], &nicks), |
|
13416 | 281 |
RoomLeft(nick, msg) => msg!["LEFT", nick, msg], |
282 |
RoomRemove(name) => msg!["ROOM", "DEL", name], |
|
13419 | 283 |
RoomUpdated(name, info) => |
284 |
construct_message(&["ROOM", "UPD", name], &info), |
|
285 |
TeamAdd(info) => |
|
286 |
construct_message(&["ADD_TEAM"], &info), |
|
287 |
TeamRemove(name) => msg!["REMOVE_TEAM", name], |
|
288 |
TeamAccepted(name) => msg!["TEAM_ACCEPTED", name], |
|
289 |
TeamColor(name, color) => msg!["TEAM_COLOR", name, color], |
|
290 |
HedgehogsNumber(name, number) => msg!["HH_NUM", name, number], |
|
13422 | 291 |
ConfigEntry(name, values) => |
292 |
construct_message(&["CFG", name], &values), |
|
13478 | 293 |
Kicked => msg!["KICKED"], |
13423 | 294 |
RunGame => msg!["RUN_GAME"], |
13428 | 295 |
ForwardEngineMessage(em) => |
296 |
construct_message(&["EM"], &em), |
|
13423 | 297 |
RoundFinished => msg!["ROUND_FINISHED"], |
13444
914f9b970f4d
Implement server-side logic for Rnd
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13440
diff
changeset
|
298 |
ChatMsg {nick, msg} => msg!["CHAT", nick, msg], |
13416 | 299 |
ServerMessage(msg) => msg!["SERVER_MESSAGE", msg], |
300 |
Warning(msg) => msg!["WARNING", msg], |
|
301 |
Error(msg) => msg!["ERROR", msg], |
|
302 |
_ => msg!["ERROR", "UNIMPLEMENTED"], |
|
12136 | 303 |
} |
304 |
} |
|
305 |
} |