author | unc0rr |
Wed, 28 Nov 2018 17:56:59 +0100 | |
changeset 14337 | acc96bccca6e |
parent 13810 | 0463a4221327 |
permissions | -rw-r--r-- |
13483 | 1 |
use super::coretypes::ClientId; |
13810 | 2 |
use bitflags::*; |
12133 | 3 |
|
13527
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
4 |
bitflags!{ |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
5 |
pub struct ClientFlags: u8 { |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
6 |
const IS_ADMIN = 0b0000_0001; |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
7 |
const IS_MASTER = 0b0000_0010; |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
8 |
const IS_READY = 0b0000_0100; |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
9 |
const IS_IN_GAME = 0b0000_1000; |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
10 |
const IS_JOINED_MID_GAME = 0b0001_0000; |
13803 | 11 |
const IS_CHECKER = 0b0010_0000; |
13534 | 12 |
|
13 |
const NONE = 0b0000_0000; |
|
14 |
const DEFAULT = Self::NONE.bits; |
|
13527
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
15 |
} |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
16 |
} |
13525 | 17 |
|
12133 | 18 |
pub struct HWClient { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
19 |
pub id: ClientId, |
12857 | 20 |
pub room_id: Option<usize>, |
12146 | 21 |
pub nick: String, |
13803 | 22 |
pub web_password: String, |
23 |
pub server_salt: String, |
|
13525 | 24 |
pub protocol_number: u16, |
13527
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
25 |
pub flags: ClientFlags, |
13424 | 26 |
pub teams_in_game: u8, |
13428 | 27 |
pub team_indices: Vec<u8>, |
13525 | 28 |
pub clan: Option<u8> |
12133 | 29 |
} |
30 |
||
31 |
impl HWClient { |
|
13803 | 32 |
pub fn new(id: ClientId, salt: String) -> HWClient { |
12133 | 33 |
HWClient { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
34 |
id, |
12151
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12149
diff
changeset
|
35 |
room_id: None, |
12146 | 36 |
nick: String::new(), |
13803 | 37 |
web_password: String::new(), |
38 |
server_salt: salt, |
|
12151
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12149
diff
changeset
|
39 |
protocol_number: 0, |
13534 | 40 |
flags: ClientFlags::DEFAULT, |
13424 | 41 |
teams_in_game: 0, |
13428 | 42 |
team_indices: Vec::new(), |
13424 | 43 |
clan: None, |
12133 | 44 |
} |
45 |
} |
|
13525 | 46 |
|
13527
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
47 |
fn contains(& self, mask: ClientFlags) -> bool { |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
48 |
self.flags.contains(mask) |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
49 |
} |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
50 |
|
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
51 |
fn set(&mut self, mask: ClientFlags, value: bool) { |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
52 |
self.flags.set(mask, value); |
13525 | 53 |
} |
54 |
||
13527
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
55 |
pub fn is_admin(&self)-> bool { self.contains(ClientFlags::IS_ADMIN) } |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
56 |
pub fn is_master(&self)-> bool { self.contains(ClientFlags::IS_MASTER) } |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
57 |
pub fn is_ready(&self)-> bool { self.contains(ClientFlags::IS_READY) } |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
58 |
pub fn is_in_game(&self)-> bool { self.contains(ClientFlags::IS_IN_GAME) } |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
59 |
pub fn is_joined_mid_game(&self)-> bool { self.contains(ClientFlags::IS_JOINED_MID_GAME) } |
13803 | 60 |
pub fn is_checker(&self)-> bool { self.contains(ClientFlags::IS_CHECKER) } |
13525 | 61 |
|
13527
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
62 |
pub fn set_is_admin(&mut self, value: bool) { self.set(ClientFlags::IS_ADMIN, value) } |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
63 |
pub fn set_is_master(&mut self, value: bool) { self.set(ClientFlags::IS_MASTER, value) } |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
64 |
pub fn set_is_ready(&mut self, value: bool) { self.set(ClientFlags::IS_READY, value) } |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
65 |
pub fn set_is_in_game(&mut self, value: bool) { self.set(ClientFlags::IS_IN_GAME, value) } |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13525
diff
changeset
|
66 |
pub fn set_is_joined_mid_game(&mut self, value: bool) { self.set(ClientFlags::IS_JOINED_MID_GAME, value) } |
13803 | 67 |
pub fn set_is_checker(&mut self, value: bool) { self.set(ClientFlags::IS_CHECKER, value) } |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
68 |
} |