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