author | alfadur |
Thu, 21 Jun 2018 17:23:10 -0400 | |
changeset 13424 | 81e0ed105f5d |
parent 13124 | 1e39b8749072 |
child 13428 | 87a6cad20c90 |
permissions | -rw-r--r-- |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
1 |
pub type ClientId = usize; |
12133 | 2 |
|
3 |
pub struct HWClient { |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
4 |
pub id: ClientId, |
12857 | 5 |
pub room_id: Option<usize>, |
12146 | 6 |
pub nick: String, |
12151
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12149
diff
changeset
|
7 |
pub protocol_number: u32, |
12152 | 8 |
pub is_master: bool, |
9 |
pub is_ready: bool, |
|
13424 | 10 |
pub teams_in_game: u8, |
11 |
pub clan: Option<u8>, |
|
12152 | 12 |
pub is_joined_mid_game: bool, |
12133 | 13 |
} |
14 |
||
15 |
impl HWClient { |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
16 |
pub fn new(id: ClientId) -> HWClient { |
12133 | 17 |
HWClient { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
18 |
id, |
12151
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12149
diff
changeset
|
19 |
room_id: None, |
12146 | 20 |
nick: String::new(), |
12151
8d8fb85bc09c
SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents:
12149
diff
changeset
|
21 |
protocol_number: 0, |
12152 | 22 |
is_master: false, |
23 |
is_ready: false, |
|
13424 | 24 |
teams_in_game: 0, |
25 |
clan: None, |
|
12152 | 26 |
is_joined_mid_game: false, |
12133 | 27 |
} |
28 |
} |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
29 |
} |