rust/hedgewars-server/src/server/client.rs
author alfadur <mail@none>
Thu, 07 Feb 2019 17:02:24 +0300
changeset 14693 6a2e13e36b7f
parent 14457 98ef2913ec73
child 14779 f43ab2bd76ae
permissions -rw-r--r--
add server anteroom
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
     1
use super::coretypes::ClientId;
13805
0463a4221327 cleanup crate imports
alfadur
parents: 13798
diff changeset
     2
use bitflags::*;
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     3
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
     4
bitflags! {
13522
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
4664da990556 Add official server feature to cargo
alfadur
parents: 13529
diff changeset
    11
        const IS_CHECKER = 0b0010_0000;
13529
662f7df89d06 Implement room config export
alfadur
parents: 13522
diff changeset
    12
662f7df89d06 Implement room config export
alfadur
parents: 13522
diff changeset
    13
        const NONE = 0b0000_0000;
662f7df89d06 Implement room config export
alfadur
parents: 13522
diff changeset
    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
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    17
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    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
bd35cb2302b3 Quick dirty fix for building
unc0rr
parents: 12147
diff changeset
    20
    pub room_id: Option<usize>,
12141
78925eff02c2 Basic support for NICK message
unc0rr
parents: 12139
diff changeset
    21
    pub nick: String,
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    22
    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
    23
    pub flags: ClientFlags,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13119
diff changeset
    24
    pub teams_in_game: u8,
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13419
diff changeset
    25
    pub team_indices: Vec<u8>,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    26
    pub clan: Option<u8>,
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    27
}
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    28
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    29
impl HWClient {
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14457
diff changeset
    30
    pub fn new(id: ClientId, protocol_number: u16, nick: String) -> HWClient {
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    31
        HWClient {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    32
            id,
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14457
diff changeset
    33
            nick,
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14457
diff changeset
    34
            protocol_number,
12146
8d8fb85bc09c SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents: 12144
diff changeset
    35
            room_id: None,
13529
662f7df89d06 Implement room config export
alfadur
parents: 13522
diff changeset
    36
            flags: ClientFlags::DEFAULT,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13119
diff changeset
    37
            teams_in_game: 0,
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13419
diff changeset
    38
            team_indices: Vec::new(),
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13119
diff changeset
    39
            clan: None,
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    40
        }
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    41
    }
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    42
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    43
    fn contains(&self, mask: ClientFlags) -> bool {
13522
282e5e54386f Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents: 13520
diff changeset
    44
        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
    45
    }
282e5e54386f Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents: 13520
diff changeset
    46
282e5e54386f Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents: 13520
diff changeset
    47
    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
    48
        self.flags.set(mask, value);
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    49
    }
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    50
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    51
    pub fn is_admin(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    52
        self.contains(ClientFlags::IS_ADMIN)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    53
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    54
    pub fn is_master(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    55
        self.contains(ClientFlags::IS_MASTER)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    56
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    57
    pub fn is_ready(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    58
        self.contains(ClientFlags::IS_READY)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    59
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    60
    pub fn is_in_game(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    61
        self.contains(ClientFlags::IS_IN_GAME)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    62
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    63
    pub fn is_joined_mid_game(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    64
        self.contains(ClientFlags::IS_JOINED_MID_GAME)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    65
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    66
    pub fn is_checker(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    67
        self.contains(ClientFlags::IS_CHECKER)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    68
    }
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    69
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    70
    pub fn set_is_admin(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    71
        self.set(ClientFlags::IS_ADMIN, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    72
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    73
    pub fn set_is_master(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    74
        self.set(ClientFlags::IS_MASTER, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    75
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    76
    pub fn set_is_ready(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    77
        self.set(ClientFlags::IS_READY, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    78
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    79
    pub fn set_is_in_game(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    80
        self.set(ClientFlags::IS_IN_GAME, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    81
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    82
    pub fn set_is_joined_mid_game(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    83
        self.set(ClientFlags::IS_JOINED_MID_GAME, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    84
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    85
    pub fn set_is_checker(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    86
        self.set(ClientFlags::IS_CHECKER, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    87
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    88
}