rust/hedgewars-server/src/server/core.rs
author unc0rr
Sun, 16 Dec 2018 00:12:29 +0100
changeset 14457 98ef2913ec73
parent 14415 06672690d71b
child 14504 6cc0fce249f9
permissions -rw-r--r--
Apply rustfmt to all files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
     1
use super::{
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
     2
    actions,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
     3
    actions::{Destination, PendingMessage},
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
     4
    client::HWClient,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
     5
    coretypes::{ClientId, RoomId},
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
     6
    handlers,
14392
e335b3120f59 pull file io out of server handler
alfadur
parents: 14375
diff changeset
     7
    io::HWServerIO,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
     8
    room::HWRoom,
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
     9
};
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13524
diff changeset
    10
use crate::protocol::messages::*;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    11
use crate::utils;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    12
use base64::encode;
13805
0463a4221327 cleanup crate imports
alfadur
parents: 13798
diff changeset
    13
use log::*;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    14
use rand::{thread_rng, RngCore};
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    15
use slab;
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    16
12852
bd35cb2302b3 Quick dirty fix for building
unc0rr
parents: 12148
diff changeset
    17
type Slab<T> = slab::Slab<T>;
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    18
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    19
pub struct HWServer {
12143
7e874846afe3 Toss code around
unc0rr
parents: 12142
diff changeset
    20
    pub clients: Slab<HWClient>,
7e874846afe3 Toss code around
unc0rr
parents: 12142
diff changeset
    21
    pub rooms: Slab<HWRoom>,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    22
    pub lobby_id: RoomId,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    23
    pub output: Vec<(Vec<ClientId>, HWServerMessage)>,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    24
    pub removed_clients: Vec<ClientId>,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    25
    pub io: Box<dyn HWServerIO>,
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    26
}
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    27
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    28
impl HWServer {
14392
e335b3120f59 pull file io out of server handler
alfadur
parents: 14375
diff changeset
    29
    pub fn new(clients_limit: usize, rooms_limit: usize, io: Box<dyn HWServerIO>) -> HWServer {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    30
        let rooms = Slab::with_capacity(rooms_limit);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    31
        let clients = Slab::with_capacity(clients_limit);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    32
        let mut server = HWServer {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    33
            clients,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    34
            rooms,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    35
            lobby_id: 0,
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    36
            output: vec![],
14392
e335b3120f59 pull file io out of server handler
alfadur
parents: 14375
diff changeset
    37
            removed_clients: vec![],
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    38
            io,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    39
        };
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    40
        server.lobby_id = server.add_room();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    41
        server
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    42
    }
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    43
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    44
    pub fn add_client(&mut self) -> ClientId {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    45
        let key: ClientId;
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    46
        {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    47
            let entry = self.clients.vacant_entry();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    48
            key = entry.key();
13798
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    49
            let mut salt = [0u8; 18];
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    50
            thread_rng().fill_bytes(&mut salt);
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    51
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    52
            let client = HWClient::new(entry.key(), encode(&salt));
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    53
            entry.insert(client);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    54
        }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    55
        self.send(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    56
            key,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    57
            &Destination::ToSelf,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    58
            HWServerMessage::Connected(utils::PROTOCOL_VERSION),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    59
        );
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    60
        key
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    61
    }
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    62
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    63
    pub fn client_lost(&mut self, client_id: ClientId) {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    64
        actions::run_action(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    65
            self,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    66
            client_id,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    67
            actions::Action::ByeClient("Connection reset".to_string()),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    68
        );
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    69
    }
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    70
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    71
    pub fn add_room(&mut self) -> RoomId {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    72
        let entry = self.rooms.vacant_entry();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    73
        let key = entry.key();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    74
        let room = HWRoom::new(entry.key());
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    75
        entry.insert(room);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    76
        key
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    77
    }
12137
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12136
diff changeset
    78
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    79
    pub fn handle_msg(&mut self, client_id: ClientId, msg: HWProtocolMessage) {
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    80
        debug!("Handling message {:?} for client {}", msg, client_id);
13442
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    81
        if self.clients.contains(client_id) {
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    82
            handlers::handle(self, client_id, msg);
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    83
        }
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    84
    }
12139
f3121d7dedec - Handle errors
unc0rr
parents: 12138
diff changeset
    85
13524
5359ff75da3a indulge clippy
alfadur
parents: 13521
diff changeset
    86
    fn get_recipients(&self, client_id: ClientId, destination: &Destination) -> Vec<ClientId> {
5359ff75da3a indulge clippy
alfadur
parents: 13521
diff changeset
    87
        let mut ids = match *destination {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    88
            Destination::ToSelf => vec![client_id],
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13422
diff changeset
    89
            Destination::ToId(id) => vec![id],
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    90
            Destination::ToAll {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    91
                room_id: Some(id), ..
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    92
            } => self.room_clients(id),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    93
            Destination::ToAll {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    94
                protocol: Some(proto),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    95
                ..
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    96
            } => self.protocol_clients(proto),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    97
            Destination::ToAll { .. } => self.clients.iter().map(|(id, _)| id).collect::<Vec<_>>(),
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    98
        };
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    99
        if let Destination::ToAll {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   100
            skip_self: true, ..
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   101
        } = destination
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   102
        {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   103
            if let Some(index) = ids.iter().position(|id| *id == client_id) {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   104
                ids.remove(index);
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   105
            }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   106
        }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   107
        ids
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   108
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   109
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   110
    pub fn send(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   111
        &mut self,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   112
        client_id: ClientId,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   113
        destination: &Destination,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   114
        message: HWServerMessage,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   115
    ) {
13524
5359ff75da3a indulge clippy
alfadur
parents: 13521
diff changeset
   116
        let ids = self.get_recipients(client_id, &destination);
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   117
        self.output.push((ids, message));
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   118
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   119
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
   120
    pub fn react(&mut self, client_id: ClientId, actions: Vec<actions::Action>) {
12139
f3121d7dedec - Handle errors
unc0rr
parents: 12138
diff changeset
   121
        for action in actions {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
   122
            actions::run_action(self, client_id, action);
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12137
diff changeset
   123
        }
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12137
diff changeset
   124
    }
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   125
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   126
    pub fn lobby(&self) -> &HWRoom {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   127
        &self.rooms[self.lobby_id]
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   128
    }
13521
ba5211dddb21 Assorted chat fixes
alfadur
parents: 13520
diff changeset
   129
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   130
    pub fn has_room(&self, name: &str) -> bool {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   131
        self.rooms.iter().any(|(_, r)| r.name == name)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   132
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   133
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   134
    pub fn find_room(&self, name: &str) -> Option<&HWRoom> {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   135
        self.rooms
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   136
            .iter()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   137
            .find_map(|(_, r)| Some(r).filter(|r| r.name == name))
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   138
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   139
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   140
    pub fn find_room_mut(&mut self, name: &str) -> Option<&mut HWRoom> {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   141
        self.rooms
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   142
            .iter_mut()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   143
            .find_map(|(_, r)| Some(r).filter(|r| r.name == name))
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   144
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   145
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   146
    pub fn find_client(&self, nick: &str) -> Option<&HWClient> {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   147
        self.clients
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   148
            .iter()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   149
            .find_map(|(_, c)| Some(c).filter(|c| c.nick == nick))
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   150
    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   151
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   152
    pub fn find_client_mut(&mut self, nick: &str) -> Option<&mut HWClient> {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   153
        self.clients
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   154
            .iter_mut()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   155
            .find_map(|(_, c)| Some(c).filter(|c| c.nick == nick))
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   156
    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   157
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   158
    pub fn select_clients<F>(&self, f: F) -> Vec<ClientId>
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   159
    where
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   160
        F: Fn(&(usize, &HWClient)) -> bool,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   161
    {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   162
        self.clients.iter().filter(f).map(|(_, c)| c.id).collect()
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   163
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   164
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   165
    pub fn room_clients(&self, room_id: RoomId) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   166
        self.select_clients(|(_, c)| c.room_id == Some(room_id))
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   167
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   168
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
   169
    pub fn protocol_clients(&self, protocol: u16) -> Vec<ClientId> {
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   170
        self.select_clients(|(_, c)| c.protocol_number == protocol)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   171
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   172
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   173
    pub fn other_clients_in_room(&self, self_id: ClientId) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   174
        let room_id = self.clients[self_id].room_id;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   175
        self.select_clients(|(id, c)| *id != self_id && c.room_id == room_id)
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   176
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   177
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   178
    pub fn client_and_room(&mut self, client_id: ClientId) -> (&mut HWClient, Option<&mut HWRoom>) {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   179
        let c = &mut self.clients[client_id];
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   180
        if let Some(room_id) = c.room_id {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   181
            (c, Some(&mut self.rooms[room_id]))
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   182
        } else {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   183
            (c, None)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   184
        }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   185
    }
13445
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   186
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   187
    pub fn room(&mut self, client_id: ClientId) -> Option<&mut HWRoom> {
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   188
        self.client_and_room(client_id).1
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   189
    }
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   190
}