rust/hedgewars-server/src/core/client.rs
author alfadur
Tue, 28 May 2019 21:28:32 +0300
changeset 15075 e935b1ad23f3
parent 15074 c5a6e8566425
child 15532 f1205f33bf5b
permissions -rw-r--r--
normalize type names
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15074
c5a6e8566425 shuffle server files
alfadur
parents: 14791
diff changeset
     1
use super::types::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! {
14791
b889d9e1115f improve lobby joining
alfadur
parents: 14786
diff changeset
     5
    pub struct ClientFlags: u16 {
13522
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;
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14693
diff changeset
    12
        const IS_CONTRIBUTOR = 0b0100_0000;
14786
8ecdb5c6bb2a implement info, registered only & super power messages
alfadur
parents: 14779
diff changeset
    13
        const HAS_SUPER_POWER = 0b1000_0000;
14791
b889d9e1115f improve lobby joining
alfadur
parents: 14786
diff changeset
    14
        const IS_REGISTERED = 0b0001_0000_0000;
13529
662f7df89d06 Implement room config export
alfadur
parents: 13522
diff changeset
    15
662f7df89d06 Implement room config export
alfadur
parents: 13522
diff changeset
    16
        const NONE = 0b0000_0000;
662f7df89d06 Implement room config export
alfadur
parents: 13522
diff changeset
    17
        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
    18
    }
282e5e54386f Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents: 13520
diff changeset
    19
}
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    20
15075
e935b1ad23f3 normalize type names
alfadur
parents: 15074
diff changeset
    21
pub struct HwClient {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    22
    pub id: ClientId,
12852
bd35cb2302b3 Quick dirty fix for building
unc0rr
parents: 12147
diff changeset
    23
    pub room_id: Option<usize>,
12141
78925eff02c2 Basic support for NICK message
unc0rr
parents: 12139
diff changeset
    24
    pub nick: String,
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    25
    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
    26
    pub flags: ClientFlags,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13119
diff changeset
    27
    pub teams_in_game: u8,
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13419
diff changeset
    28
    pub team_indices: Vec<u8>,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    29
    pub clan: Option<u8>,
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    30
}
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    31
15075
e935b1ad23f3 normalize type names
alfadur
parents: 15074
diff changeset
    32
impl HwClient {
e935b1ad23f3 normalize type names
alfadur
parents: 15074
diff changeset
    33
    pub fn new(id: ClientId, protocol_number: u16, nick: String) -> HwClient {
e935b1ad23f3 normalize type names
alfadur
parents: 15074
diff changeset
    34
        HwClient {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    35
            id,
14693
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14457
diff changeset
    36
            nick,
6a2e13e36b7f add server anteroom
alfadur <mail@none>
parents: 14457
diff changeset
    37
            protocol_number,
12146
8d8fb85bc09c SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents: 12144
diff changeset
    38
            room_id: None,
13529
662f7df89d06 Implement room config export
alfadur
parents: 13522
diff changeset
    39
            flags: ClientFlags::DEFAULT,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13119
diff changeset
    40
            teams_in_game: 0,
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13419
diff changeset
    41
            team_indices: Vec::new(),
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13119
diff changeset
    42
            clan: None,
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    43
        }
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
    44
    }
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    45
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    46
    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
    47
        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
    48
    }
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
    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
    51
        self.flags.set(mask, value);
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    52
    }
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    53
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    54
    pub fn is_admin(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    55
        self.contains(ClientFlags::IS_ADMIN)
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_master(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    58
        self.contains(ClientFlags::IS_MASTER)
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_ready(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    61
        self.contains(ClientFlags::IS_READY)
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_in_game(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    64
        self.contains(ClientFlags::IS_IN_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_joined_mid_game(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    67
        self.contains(ClientFlags::IS_JOINED_MID_GAME)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    68
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    69
    pub fn is_checker(&self) -> bool {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    70
        self.contains(ClientFlags::IS_CHECKER)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    71
    }
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14693
diff changeset
    72
    pub fn is_contributor(&self) -> bool {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14693
diff changeset
    73
        self.contains(ClientFlags::IS_CONTRIBUTOR)
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14693
diff changeset
    74
    }
14786
8ecdb5c6bb2a implement info, registered only & super power messages
alfadur
parents: 14779
diff changeset
    75
    pub fn has_super_power(&self) -> bool {
8ecdb5c6bb2a implement info, registered only & super power messages
alfadur
parents: 14779
diff changeset
    76
        self.contains(ClientFlags::HAS_SUPER_POWER)
8ecdb5c6bb2a implement info, registered only & super power messages
alfadur
parents: 14779
diff changeset
    77
    }
14791
b889d9e1115f improve lobby joining
alfadur
parents: 14786
diff changeset
    78
    pub fn is_registered(&self) -> bool {
b889d9e1115f improve lobby joining
alfadur
parents: 14786
diff changeset
    79
        self.contains(ClientFlags::IS_REGISTERED)
b889d9e1115f improve lobby joining
alfadur
parents: 14786
diff changeset
    80
    }
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
    81
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    82
    pub fn set_is_admin(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    83
        self.set(ClientFlags::IS_ADMIN, 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_master(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    86
        self.set(ClientFlags::IS_MASTER, 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
    pub fn set_is_ready(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    89
        self.set(ClientFlags::IS_READY, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    90
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    91
    pub fn set_is_in_game(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    92
        self.set(ClientFlags::IS_IN_GAME, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    93
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    94
    pub fn set_is_joined_mid_game(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    95
        self.set(ClientFlags::IS_JOINED_MID_GAME, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    96
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    97
    pub fn set_is_checker(&mut self, value: bool) {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    98
        self.set(ClientFlags::IS_CHECKER, value)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    99
    }
14779
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14693
diff changeset
   100
    pub fn set_is_contributor(&mut self, value: bool) {
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14693
diff changeset
   101
        self.set(ClientFlags::IS_CONTRIBUTOR, value)
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14693
diff changeset
   102
    }
14786
8ecdb5c6bb2a implement info, registered only & super power messages
alfadur
parents: 14779
diff changeset
   103
    pub fn set_has_super_power(&mut self, value: bool) {
8ecdb5c6bb2a implement info, registered only & super power messages
alfadur
parents: 14779
diff changeset
   104
        self.set(ClientFlags::HAS_SUPER_POWER, value)
8ecdb5c6bb2a implement info, registered only & super power messages
alfadur
parents: 14779
diff changeset
   105
    }
14791
b889d9e1115f improve lobby joining
alfadur
parents: 14786
diff changeset
   106
    pub fn set_is_registered(&mut self, value: bool) {
b889d9e1115f improve lobby joining
alfadur
parents: 14786
diff changeset
   107
        self.set(ClientFlags::IS_REGISTERED, value)
b889d9e1115f improve lobby joining
alfadur
parents: 14786
diff changeset
   108
    }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   109
}