author | alfadur |
Wed, 27 Jun 2018 02:34:46 +0300 | |
changeset 13423 | 87a6cad20c90 |
parent 13419 | 81e0ed105f5d |
child 13477 | f748a72432f2 |
permissions | -rw-r--r-- |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
1 |
pub type ClientId = usize; |
12128 | 2 |
|
3 |
pub struct HWClient { |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
4 |
pub id: ClientId, |
12852 | 5 |
pub room_id: Option<usize>, |
12141 | 6 |
pub nick: String, |
12146
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12144
diff
changeset
|
7 |
pub protocol_number: u32, |
12147 | 8 |
pub is_master: bool, |
9 |
pub is_ready: bool, |
|
13423 | 10 |
pub is_in_game: bool, |
13419 | 11 |
pub teams_in_game: u8, |
13423 | 12 |
pub team_indices: Vec<u8>, |
13419 | 13 |
pub clan: Option<u8>, |
12147 | 14 |
pub is_joined_mid_game: bool, |
12128 | 15 |
} |
16 |
||
17 |
impl HWClient { |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
18 |
pub fn new(id: ClientId) -> HWClient { |
12128 | 19 |
HWClient { |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
20 |
id, |
12146
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12144
diff
changeset
|
21 |
room_id: None, |
12141 | 22 |
nick: String::new(), |
12146
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12144
diff
changeset
|
23 |
protocol_number: 0, |
12147 | 24 |
is_master: false, |
25 |
is_ready: false, |
|
13423 | 26 |
is_in_game: false, |
13419 | 27 |
teams_in_game: 0, |
13423 | 28 |
team_indices: Vec::new(), |
13419 | 29 |
clan: None, |
12147 | 30 |
is_joined_mid_game: false, |
12128 | 31 |
} |
32 |
} |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
33 |
} |