author | alfadur |
Wed, 10 Apr 2019 18:12:30 +0300 | |
changeset 14804 | b3adc030104b |
parent 14802 | 01f8ab45f806 |
child 14807 | 8ecdb5c6bb2a |
permissions | -rw-r--r-- |
13416 | 1 |
use super::{ |
14478 | 2 |
client::HWClient, |
3 |
coretypes::{ClientId, RoomId}, |
|
14714 | 4 |
indexslab::IndexSlab, |
14478 | 5 |
room::HWRoom, |
13416 | 6 |
}; |
14717 | 7 |
use crate::utils; |
14714 | 8 |
|
14804 | 9 |
use crate::protocol::messages::HWProtocolMessage::Greeting; |
13810 | 10 |
use log::*; |
14478 | 11 |
use slab; |
14714 | 12 |
use std::{borrow::BorrowMut, iter, num::NonZeroU16}; |
12126 | 13 |
|
12852 | 14 |
type Slab<T> = slab::Slab<T>; |
12127 | 15 |
|
14714 | 16 |
pub struct HWAnteClient { |
17 |
pub nick: Option<String>, |
|
18 |
pub protocol_number: Option<NonZeroU16>, |
|
19 |
pub server_salt: String, |
|
14802 | 20 |
pub is_checker: bool, |
14714 | 21 |
} |
22 |
||
23 |
pub struct HWAnteroom { |
|
24 |
pub clients: IndexSlab<HWAnteClient>, |
|
25 |
} |
|
26 |
||
27 |
impl HWAnteroom { |
|
28 |
pub fn new(clients_limit: usize) -> Self { |
|
29 |
let clients = IndexSlab::with_capacity(clients_limit); |
|
30 |
HWAnteroom { clients } |
|
31 |
} |
|
32 |
||
33 |
pub fn add_client(&mut self, client_id: ClientId, salt: String) { |
|
34 |
let client = HWAnteClient { |
|
35 |
nick: None, |
|
36 |
protocol_number: None, |
|
37 |
server_salt: salt, |
|
14802 | 38 |
is_checker: false, |
14714 | 39 |
}; |
40 |
self.clients.insert(client_id, client); |
|
41 |
} |
|
42 |
||
43 |
pub fn remove_client(&mut self, client_id: ClientId) -> Option<HWAnteClient> { |
|
44 |
let mut client = self.clients.remove(client_id); |
|
45 |
client |
|
46 |
} |
|
47 |
} |
|
48 |
||
14804 | 49 |
pub struct ServerGreetings { |
50 |
pub for_latest_protocol: String, |
|
51 |
pub for_old_protocols: String, |
|
52 |
} |
|
53 |
||
54 |
impl ServerGreetings { |
|
55 |
fn new() -> Self { |
|
56 |
Self { |
|
57 |
for_latest_protocol: "\u{1f994} is watching".to_string(), |
|
58 |
for_old_protocols: "\u{1f994} is watching".to_string(), |
|
59 |
} |
|
60 |
} |
|
61 |
} |
|
62 |
||
12126 | 63 |
pub struct HWServer { |
14714 | 64 |
pub clients: IndexSlab<HWClient>, |
12143 | 65 |
pub rooms: Slab<HWRoom>, |
14714 | 66 |
pub anteroom: HWAnteroom, |
14804 | 67 |
pub latest_protocol: u16, |
68 |
pub greetings: ServerGreetings, |
|
12126 | 69 |
} |
70 |
||
71 |
impl HWServer { |
|
14801 | 72 |
pub fn new(clients_limit: usize, rooms_limit: usize) -> Self { |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12852
diff
changeset
|
73 |
let rooms = Slab::with_capacity(rooms_limit); |
14714 | 74 |
let clients = IndexSlab::with_capacity(clients_limit); |
14715 | 75 |
Self { |
14478 | 76 |
clients, |
77 |
rooms, |
|
14714 | 78 |
anteroom: HWAnteroom::new(clients_limit), |
14804 | 79 |
greetings: ServerGreetings::new(), |
80 |
latest_protocol: 58, |
|
14715 | 81 |
} |
12126 | 82 |
} |
83 |
||
14714 | 84 |
pub fn add_client(&mut self, client_id: ClientId, data: HWAnteClient) { |
85 |
if let (Some(protocol), Some(nick)) = (data.protocol_number, data.nick) { |
|
14802 | 86 |
let mut client = HWClient::new(client_id, protocol.get(), nick); |
87 |
client.set_is_checker(data.is_checker); |
|
14714 | 88 |
self.clients.insert(client_id, client); |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12852
diff
changeset
|
89 |
} |
12126 | 90 |
} |
12127 | 91 |
|
14694
08a8605bafaf
Server action refactoring part 4 of N
alfadur <mail@none>
parents:
14693
diff
changeset
|
92 |
pub fn remove_client(&mut self, client_id: ClientId) { |
14717 | 93 |
self.clients.remove(client_id); |
12127 | 94 |
} |
95 |
||
14804 | 96 |
pub fn get_greetings(&self, client_id: ClientId) -> &str { |
97 |
if self.clients[client_id].protocol_number < self.latest_protocol { |
|
98 |
&self.greetings.for_old_protocols |
|
99 |
} else { |
|
100 |
&self.greetings.for_latest_protocol |
|
101 |
} |
|
102 |
} |
|
103 |
||
14525
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
104 |
#[inline] |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
105 |
pub fn create_room( |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
106 |
&mut self, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
107 |
creator_id: ClientId, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
108 |
name: String, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
109 |
password: Option<String>, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
110 |
) -> RoomId { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
111 |
create_room( |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
112 |
&mut self.clients[creator_id], |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
113 |
&mut self.rooms, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
114 |
name, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
115 |
password, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
116 |
) |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
117 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
118 |
|
14692
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14525
diff
changeset
|
119 |
#[inline] |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14525
diff
changeset
|
120 |
pub fn move_to_room(&mut self, client_id: ClientId, room_id: RoomId) { |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14525
diff
changeset
|
121 |
move_to_room(&mut self.clients[client_id], &mut self.rooms[room_id]) |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14525
diff
changeset
|
122 |
} |
455865ccd36c
Server action refactoring part 2 of N
alfadur <mail@none>
parents:
14525
diff
changeset
|
123 |
|
13416 | 124 |
pub fn has_room(&self, name: &str) -> bool { |
14718 | 125 |
self.find_room(name).is_some() |
13416 | 126 |
} |
127 |
||
128 |
pub fn find_room(&self, name: &str) -> Option<&HWRoom> { |
|
14478 | 129 |
self.rooms |
130 |
.iter() |
|
131 |
.find_map(|(_, r)| Some(r).filter(|r| r.name == name)) |
|
13416 | 132 |
} |
133 |
||
134 |
pub fn find_room_mut(&mut self, name: &str) -> Option<&mut HWRoom> { |
|
14478 | 135 |
self.rooms |
136 |
.iter_mut() |
|
137 |
.find_map(|(_, r)| Some(r).filter(|r| r.name == name)) |
|
13416 | 138 |
} |
139 |
||
13450 | 140 |
pub fn find_client(&self, nick: &str) -> Option<&HWClient> { |
14478 | 141 |
self.clients |
142 |
.iter() |
|
143 |
.find_map(|(_, c)| Some(c).filter(|c| c.nick == nick)) |
|
13450 | 144 |
} |
145 |
||
146 |
pub fn find_client_mut(&mut self, nick: &str) -> Option<&mut HWClient> { |
|
14478 | 147 |
self.clients |
148 |
.iter_mut() |
|
149 |
.find_map(|(_, c)| Some(c).filter(|c| c.nick == nick)) |
|
13450 | 150 |
} |
151 |
||
14802 | 152 |
pub fn collect_clients<F>(&self, f: F) -> Vec<ClientId> |
14478 | 153 |
where |
154 |
F: Fn(&(usize, &HWClient)) -> bool, |
|
155 |
{ |
|
156 |
self.clients.iter().filter(f).map(|(_, c)| c.id).collect() |
|
13416 | 157 |
} |
158 |
||
14802 | 159 |
pub fn collect_nicks<F>(&self, f: F) -> Vec<String> |
160 |
where |
|
161 |
F: Fn(&(usize, &HWClient)) -> bool, |
|
162 |
{ |
|
163 |
self.clients |
|
164 |
.iter() |
|
165 |
.filter(f) |
|
166 |
.map(|(_, c)| c.nick.clone()) |
|
167 |
.collect() |
|
14715 | 168 |
} |
169 |
||
14802 | 170 |
pub fn collect_lobby_clients(&self) -> Vec<ClientId> { |
171 |
self.collect_clients(|(_, c)| c.room_id == None) |
|
172 |
} |
|
173 |
||
174 |
pub fn collect_room_clients(&self, room_id: RoomId) -> Vec<ClientId> { |
|
175 |
self.collect_clients(|(_, c)| c.room_id == Some(room_id)) |
|
13416 | 176 |
} |
177 |
||
13486 | 178 |
pub fn protocol_clients(&self, protocol: u16) -> Vec<ClientId> { |
14802 | 179 |
self.collect_clients(|(_, c)| c.protocol_number == protocol) |
13416 | 180 |
} |
181 |
||
182 |
pub fn other_clients_in_room(&self, self_id: ClientId) -> Vec<ClientId> { |
|
183 |
let room_id = self.clients[self_id].room_id; |
|
14802 | 184 |
self.collect_clients(|(id, c)| *id != self_id && c.room_id == room_id) |
13416 | 185 |
} |
13445
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13442
diff
changeset
|
186 |
} |
14525
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
187 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
188 |
fn allocate_room(rooms: &mut Slab<HWRoom>) -> &mut HWRoom { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
189 |
let entry = rooms.vacant_entry(); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
190 |
let room = HWRoom::new(entry.key()); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
191 |
entry.insert(room) |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
192 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
193 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
194 |
fn create_room( |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
195 |
client: &mut HWClient, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
196 |
rooms: &mut Slab<HWRoom>, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
197 |
name: String, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
198 |
password: Option<String>, |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
199 |
) -> RoomId { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
200 |
let room = allocate_room(rooms); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
201 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
202 |
room.master_id = Some(client.id); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
203 |
room.name = name; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
204 |
room.password = password; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
205 |
room.protocol_number = client.protocol_number; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
206 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
207 |
room.players_number = 1; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
208 |
room.ready_players_number = 1; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
209 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
210 |
client.room_id = Some(room.id); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
211 |
client.set_is_master(true); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
212 |
client.set_is_ready(true); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
213 |
client.set_is_joined_mid_game(false); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
214 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
215 |
room.id |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
216 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
217 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
218 |
fn move_to_room(client: &mut HWClient, room: &mut HWRoom) { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
219 |
debug_assert!(client.room_id != Some(room.id)); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
220 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
221 |
room.players_number += 1; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
222 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
223 |
client.room_id = Some(room.id); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
224 |
client.set_is_joined_mid_game(room.game_info.is_some()); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
225 |
client.set_is_in_game(room.game_info.is_some()); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
226 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
227 |
if let Some(ref mut info) = room.game_info { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
228 |
let teams = info.client_teams(client.id); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
229 |
client.teams_in_game = teams.clone().count() as u8; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
230 |
client.clan = teams.clone().next().map(|t| t.color); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
231 |
let team_names: Vec<_> = teams.map(|t| t.name.clone()).collect(); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
232 |
|
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
233 |
if !team_names.is_empty() { |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
234 |
info.left_teams.retain(|name| !team_names.contains(&name)); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
235 |
info.teams_in_game += team_names.len() as u8; |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
236 |
room.teams = info |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
237 |
.teams_at_start |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
238 |
.iter() |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
239 |
.filter(|(_, t)| !team_names.contains(&t.name)) |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
240 |
.cloned() |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
241 |
.collect(); |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
242 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
243 |
} |
6cc0fce249f9
Server action refactoring part 1 of N
alfadur <mail@none>
parents:
14478
diff
changeset
|
244 |
} |