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