author | alfadur |
Fri, 14 Sep 2018 23:14:19 +0300 | |
changeset 13805 | 0463a4221327 |
parent 13798 | 4664da990556 |
permissions | -rw-r--r-- |
13478 | 1 |
use super::coretypes::ClientId; |
13805 | 2 |
use bitflags::*; |
12128 | 3 |
|
13522
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
diff
changeset
|
4 |
bitflags!{ |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
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:
13520
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:
13520
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:
13520
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:
13520
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:
13520
diff
changeset
|
10 |
const IS_JOINED_MID_GAME = 0b0001_0000; |
13798 | 11 |
const IS_CHECKER = 0b0010_0000; |
13529 | 12 |
|
13 |
const NONE = 0b0000_0000; |
|
14 |
const DEFAULT = Self::NONE.bits; |
|
13522
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
diff
changeset
|
15 |
} |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
diff
changeset
|
16 |
} |
13520 | 17 |
|
12128 | 18 |
pub struct HWClient { |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
19 |
pub id: ClientId, |
12852 | 20 |
pub room_id: Option<usize>, |
12141 | 21 |
pub nick: String, |
13798 | 22 |
pub web_password: String, |
23 |
pub server_salt: String, |
|
13520 | 24 |
pub protocol_number: u16, |
13522
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
diff
changeset
|
25 |
pub flags: ClientFlags, |
13419 | 26 |
pub teams_in_game: u8, |
13423 | 27 |
pub team_indices: Vec<u8>, |
13520 | 28 |
pub clan: Option<u8> |
12128 | 29 |
} |
30 |
||
31 |
impl HWClient { |
|
13798 | 32 |
pub fn new(id: ClientId, salt: String) -> HWClient { |
12128 | 33 |
HWClient { |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
34 |
id, |
12146
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12144
diff
changeset
|
35 |
room_id: None, |
12141 | 36 |
nick: String::new(), |
13798 | 37 |
web_password: String::new(), |
38 |
server_salt: salt, |
|
12146
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12144
diff
changeset
|
39 |
protocol_number: 0, |
13529 | 40 |
flags: ClientFlags::DEFAULT, |
13419 | 41 |
teams_in_game: 0, |
13423 | 42 |
team_indices: Vec::new(), |
13419 | 43 |
clan: None, |
12128 | 44 |
} |
45 |
} |
|
13520 | 46 |
|
13522
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
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:
13520
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:
13520
diff
changeset
|
49 |
} |
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
diff
changeset
|
50 |
|
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
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:
13520
diff
changeset
|
52 |
self.flags.set(mask, value); |
13520 | 53 |
} |
54 |
||
13522
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
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:
13520
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:
13520
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:
13520
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:
13520
diff
changeset
|
59 |
pub fn is_joined_mid_game(&self)-> bool { self.contains(ClientFlags::IS_JOINED_MID_GAME) } |
13798 | 60 |
pub fn is_checker(&self)-> bool { self.contains(ClientFlags::IS_CHECKER) } |
13520 | 61 |
|
13522
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13520
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:
13520
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:
13520
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:
13520
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:
13520
diff
changeset
|
66 |
pub fn set_is_joined_mid_game(&mut self, value: bool) { self.set(ClientFlags::IS_JOINED_MID_GAME, value) } |
13798 | 67 |
pub fn set_is_checker(&mut self, value: bool) { self.set(ClientFlags::IS_CHECKER, value) } |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
68 |
} |