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