gameServer2/src/server/server.rs
author alfadur
Sat, 07 Jul 2018 20:22:31 +0300
changeset 13478 d79795acaa73
parent 13445 d3c86ade3d4d
child 13520 1ee192f13456
permissions -rw-r--r--
Mostly implement voting
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
     1
use slab;
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
     2
use utils;
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
     3
use super::{
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
     4
    client::HWClient, room::HWRoom, actions, handlers,
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
     5
    coretypes::{ClientId, RoomId},
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
     6
    actions::{Destination, PendingMessage}
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
     7
};
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
     8
use protocol::messages::*;
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
     9
12852
bd35cb2302b3 Quick dirty fix for building
unc0rr
parents: 12148
diff changeset
    10
type Slab<T> = slab::Slab<T>;
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    11
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    12
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    13
pub struct HWServer {
12143
7e874846afe3 Toss code around
unc0rr
parents: 12142
diff changeset
    14
    pub clients: Slab<HWClient>,
7e874846afe3 Toss code around
unc0rr
parents: 12142
diff changeset
    15
    pub rooms: Slab<HWRoom>,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    16
    pub lobby_id: RoomId,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    17
    pub output: Vec<(Vec<ClientId>, HWServerMessage)>,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    18
    pub removed_clients: Vec<ClientId>,
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    19
}
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    20
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    21
impl HWServer {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    22
    pub fn new(clients_limit: usize, rooms_limit: usize) -> HWServer {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    23
        let rooms = Slab::with_capacity(rooms_limit);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    24
        let clients = Slab::with_capacity(clients_limit);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    25
        let mut server = HWServer {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    26
            clients, rooms,
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    27
            lobby_id: 0,
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    28
            output: vec![],
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    29
            removed_clients: vec![]
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    30
        };
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    31
        server.lobby_id = server.add_room();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    32
        server
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    33
    }
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    34
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    35
    pub fn add_client(&mut self) -> ClientId {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    36
        let key: ClientId;
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    37
        {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    38
            let entry = self.clients.vacant_entry();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    39
            key = entry.key();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    40
            let client = HWClient::new(entry.key());
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    41
            entry.insert(client);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    42
        }
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    43
        self.send(key, Destination::ToSelf, HWServerMessage::Connected(utils::PROTOCOL_VERSION));
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    44
        key
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    45
    }
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    46
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    47
    pub fn client_lost(&mut self, client_id: ClientId) {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    48
        actions::run_action(self, client_id,
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    49
                            actions::Action::ByeClient("Connection reset".to_string()));
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    50
    }
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    51
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    52
    pub fn add_room(&mut self) -> RoomId {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    53
        let entry = self.rooms.vacant_entry();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    54
        let key = entry.key();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    55
        let room = HWRoom::new(entry.key());
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    56
        entry.insert(room);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    57
        key
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    58
    }
12137
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12136
diff changeset
    59
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    60
    pub fn handle_msg(&mut self, client_id: ClientId, msg: HWProtocolMessage) {
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    61
        debug!("Handling message {:?} for client {}", msg, client_id);
13442
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    62
        if self.clients.contains(client_id) {
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    63
            handlers::handle(self, client_id, msg);
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    64
        }
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    65
    }
12139
f3121d7dedec - Handle errors
unc0rr
parents: 12138
diff changeset
    66
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    67
    fn get_recipients(&self, client_id: ClientId, destination: Destination) -> Vec<ClientId> {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    68
        let mut ids = match destination {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    69
            Destination::ToSelf => vec![client_id],
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13422
diff changeset
    70
            Destination::ToId(id) => vec![id],
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    71
            Destination::ToAll {room_id: Some(id), ..} =>
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    72
                self.room_clients(id),
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    73
            Destination::ToAll {protocol: Some(proto), ..} =>
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    74
                self.protocol_clients(proto),
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    75
            Destination::ToAll {..} =>
13422
5fb27f94fc3b Implement game config messages
alfadur
parents: 13419
diff changeset
    76
                self.clients.iter().map(|(id, _)| id).collect::<Vec<_>>()
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    77
        };
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    78
        if let Destination::ToAll {skip_self: true, ..} = destination {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    79
            if let Some(index) = ids.iter().position(|id| *id == client_id) {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    80
                ids.remove(index);
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    81
            }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    82
        }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    83
        ids
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    84
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    85
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    86
    pub fn send(&mut self, client_id: ClientId, destination: Destination, message: HWServerMessage) {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    87
        let ids = self.get_recipients(client_id, destination);
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    88
        self.output.push((ids, message));
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    89
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    90
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    91
    pub fn react(&mut self, client_id: ClientId, actions: Vec<actions::Action>) {
12139
f3121d7dedec - Handle errors
unc0rr
parents: 12138
diff changeset
    92
        for action in actions {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    93
            actions::run_action(self, client_id, action);
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12137
diff changeset
    94
        }
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12137
diff changeset
    95
    }
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    96
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    97
    pub fn has_room(&self, name: &str) -> bool {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    98
        self.rooms.iter().any(|(_, r)| r.name == name)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    99
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   100
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   101
    pub fn find_room(&self, name: &str) -> Option<&HWRoom> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   102
        self.rooms.iter().find(|(_, r)| r.name == name).map(|(_, r)| r)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   103
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   104
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   105
    pub fn find_room_mut(&mut self, name: &str) -> Option<&mut HWRoom> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   106
        self.rooms.iter_mut().find(|(_, r)| r.name == name).map(|(_, r)| r)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   107
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   108
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   109
    pub fn find_client(&self, nick: &str) -> Option<&HWClient> {
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   110
        self.clients.iter().find(|(_, c)| c.nick == nick).map(|(_, c)| c)
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   111
    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   112
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   113
    pub fn find_client_mut(&mut self, nick: &str) -> Option<&mut HWClient> {
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   114
        self.clients.iter_mut().find(|(_, c)| c.nick == nick).map(|(_, c)| c)
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   115
    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   116
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   117
    pub fn select_clients<F>(&self, f: F) -> Vec<ClientId>
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   118
        where F: Fn(&(usize, &HWClient)) -> bool {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   119
        self.clients.iter().filter(f)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   120
            .map(|(_, c)| c.id).collect()
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   121
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   122
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   123
    pub fn room_clients(&self, room_id: RoomId) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   124
        self.select_clients(|(_, c)| c.room_id == Some(room_id))
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   125
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   126
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   127
    pub fn protocol_clients(&self, protocol: u32) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   128
        self.select_clients(|(_, c)| c.protocol_number == protocol)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   129
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   130
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   131
    pub fn other_clients_in_room(&self, self_id: ClientId) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   132
        let room_id = self.clients[self_id].room_id;
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   133
        self.select_clients(|(id, c)| *id != self_id && c.room_id == room_id )
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   134
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   135
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   136
    pub fn client_and_room(&mut self, client_id: ClientId) -> (&mut HWClient, Option<&mut HWRoom>) {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   137
        let c = &mut self.clients[client_id];
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   138
        if let Some(room_id) = c.room_id {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   139
            (c, Some(&mut self.rooms[room_id]))
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   140
        } else {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   141
            (c, None)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   142
        }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   143
    }
13445
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   144
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   145
    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
   146
        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
   147
    }
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   148
}