author | alfadur |
Wed, 10 Apr 2019 23:56:53 +0300 | |
changeset 14785 | a1077e8d26f4 |
parent 14783 | b3adc030104b |
child 14787 | 0e64acbc3f8b |
permissions | -rw-r--r-- |
12147 | 1 |
use mio; |
2 |
||
14457 | 3 |
use super::common::rnd_reply; |
13666 | 4 |
use crate::{ |
14782 | 5 |
protocol::messages::{ |
6 |
add_flags, remove_flags, HWProtocolMessage, HWServerMessage::*, ProtocolFlags as Flags, |
|
7 |
}, |
|
14783 | 8 |
server::{ |
9 |
core::HWServer, |
|
10 |
coretypes::{ClientId, ServerVar}, |
|
11 |
}, |
|
14457 | 12 |
utils::is_name_illegal, |
13416 | 13 |
}; |
13805 | 14 |
use log::*; |
12147 | 15 |
|
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
16 |
pub fn handle( |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
17 |
server: &mut HWServer, |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
18 |
client_id: ClientId, |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
19 |
response: &mut super::Response, |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
20 |
message: HWProtocolMessage, |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
21 |
) { |
13666 | 22 |
use crate::protocol::messages::HWProtocolMessage::*; |
12147 | 23 |
match message { |
13416 | 24 |
CreateRoom(name, password) => { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
25 |
if is_name_illegal(&name) { |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
26 |
response.add(Warning("Illegal room name! A room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}".to_string()).send_self()); |
14457 | 27 |
} else if server.has_room(&name) { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
28 |
response.add( |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
29 |
Warning("A room with the same name already exists.".to_string()).send_self(), |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
30 |
); |
14457 | 31 |
} else { |
32 |
let flags_msg = ClientFlags( |
|
14782 | 33 |
add_flags(&[Flags::RoomMaster, Flags::Ready]), |
14457 | 34 |
vec![server.clients[client_id].nick.clone()], |
35 |
); |
|
14504
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
36 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
37 |
let room_id = server.create_room(client_id, name, password); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
38 |
let room = &server.rooms[room_id]; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
39 |
let client = &server.clients[client_id]; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
40 |
|
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
41 |
response.add( |
14504
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
42 |
RoomAdd(room.info(Some(&client))) |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14457
diff
changeset
|
43 |
.send_all() |
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
44 |
.with_protocol(room.protocol_number), |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
45 |
); |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
46 |
response.add(flags_msg.send_self()); |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
47 |
|
14782 | 48 |
response.add( |
49 |
ClientFlags(add_flags(&[Flags::InRoom]), vec![client.nick.clone()]).send_self(), |
|
50 |
); |
|
14457 | 51 |
}; |
52 |
} |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12852
diff
changeset
|
53 |
Chat(msg) => { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
54 |
response.add( |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
55 |
ChatMsg { |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
56 |
nick: server.clients[client_id].nick.clone(), |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
57 |
msg, |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
58 |
} |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
59 |
.send_all() |
14694 | 60 |
.in_lobby() |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
61 |
.but_self(), |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
62 |
); |
14457 | 63 |
} |
13666 | 64 |
JoinRoom(name, _password) => { |
65 |
let room = server.rooms.iter().find(|(_, r)| r.name == name); |
|
66 |
let room_id = room.map(|(_, r)| r.id); |
|
14785
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14783
diff
changeset
|
67 |
|
14686
9f98086de1b6
Server action refactoring part 9 of N
alfadur <mail@none>
parents:
14672
diff
changeset
|
68 |
let client = &mut server.clients[client_id]; |
13427 | 69 |
|
14686
9f98086de1b6
Server action refactoring part 9 of N
alfadur <mail@none>
parents:
14672
diff
changeset
|
70 |
if let Some((_, room)) = room { |
9f98086de1b6
Server action refactoring part 9 of N
alfadur <mail@none>
parents:
14672
diff
changeset
|
71 |
if client.protocol_number != room.protocol_number { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
72 |
response.add( |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
73 |
Warning("Room version incompatible to your Hedgewars version!".to_string()) |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
74 |
.send_self(), |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
75 |
); |
14686
9f98086de1b6
Server action refactoring part 9 of N
alfadur <mail@none>
parents:
14672
diff
changeset
|
76 |
} else if room.is_join_restricted() { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
77 |
response.add( |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
78 |
Warning( |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
79 |
"Access denied. This room currently doesn't allow joining.".to_string(), |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
80 |
) |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
81 |
.send_self(), |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
82 |
); |
14686
9f98086de1b6
Server action refactoring part 9 of N
alfadur <mail@none>
parents:
14672
diff
changeset
|
83 |
} else if room.players_number == u8::max_value() { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
84 |
response.add(Warning("This room is already full".to_string()).send_self()); |
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
85 |
} else if let Some(room_id) = room_id { |
14686
9f98086de1b6
Server action refactoring part 9 of N
alfadur <mail@none>
parents:
14672
diff
changeset
|
86 |
let nick = client.nick.clone(); |
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
87 |
server.move_to_room(client_id, room_id); |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
88 |
|
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
89 |
response.add(RoomJoined(vec![nick.clone()]).send_all().in_room(room_id)); |
14782 | 90 |
response.add(ClientFlags(add_flags(&[Flags::InRoom]), vec![nick]).send_all()); |
14785
a1077e8d26f4
implement watch message apart from replay deserializing
alfadur
parents:
14783
diff
changeset
|
91 |
let nicks = server.collect_nicks(|(_, c)| c.room_id == Some(room_id)); |
14671
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
92 |
response.add(RoomJoined(nicks).send_self()); |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
93 |
|
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
94 |
let room = &server.rooms[room_id]; |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
95 |
|
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
96 |
if !room.greeting.is_empty() { |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
97 |
response.add( |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
98 |
ChatMsg { |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
99 |
nick: "[greeting]".to_string(), |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
100 |
msg: room.greeting.clone(), |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
101 |
} |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
102 |
.send_self(), |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
103 |
); |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14504
diff
changeset
|
104 |
} |
13666 | 105 |
} |
106 |
} else { |
|
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
107 |
response.add(Warning("No such room.".to_string()).send_self()); |
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
108 |
} |
14457 | 109 |
} |
14783 | 110 |
SetServerVar(var) => { |
111 |
if !server.clients[client_id].is_admin() { |
|
112 |
response.add(Warning("Access denied.".to_string()).send_self()); |
|
113 |
} else { |
|
114 |
match var { |
|
115 |
ServerVar::MOTDNew(msg) => server.greetings.for_latest_protocol = msg, |
|
116 |
ServerVar::MOTDOld(msg) => server.greetings.for_old_protocols = msg, |
|
117 |
ServerVar::LatestProto(n) => server.latest_protocol = n, |
|
118 |
} |
|
119 |
} |
|
120 |
} |
|
121 |
GetServerVar => { |
|
122 |
if !server.clients[client_id].is_admin() { |
|
123 |
response.add(Warning("Access denied.".to_string()).send_self()); |
|
124 |
} else { |
|
125 |
let vars: Vec<_> = [ |
|
126 |
ServerVar::MOTDNew(server.greetings.for_latest_protocol.clone()), |
|
127 |
ServerVar::MOTDOld(server.greetings.for_old_protocols.clone()), |
|
128 |
ServerVar::LatestProto(server.latest_protocol), |
|
129 |
] |
|
130 |
.iter() |
|
131 |
.flat_map(|v| v.to_protocol()) |
|
132 |
.collect(); |
|
133 |
response.add(ServerVars(vars).send_self()); |
|
134 |
} |
|
135 |
} |
|
13445
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13444
diff
changeset
|
136 |
Rnd(v) => { |
14672
6e6632068a33
Server action refactoring part 3 of N
alfadur <mail@none>
parents:
14671
diff
changeset
|
137 |
response.add(rnd_reply(&v).send_self()); |
14457 | 138 |
} |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12852
diff
changeset
|
139 |
List => warn!("Deprecated LIST message received"), |
12147 | 140 |
_ => warn!("Incorrect command in lobby state"), |
141 |
} |
|
142 |
} |