rust/hedgewars-server/src/server/core.rs
author alfadur <mail@none>
Mon, 04 Feb 2019 23:41:18 +0300
changeset 14674 b87c71ccd17d
parent 14673 08a8605bafaf
child 14686 9f98086de1b6
permissions -rw-r--r--
Server action refactoring part 5 of N
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;
14504
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    16
use std::borrow::BorrowMut;
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    17
12852
bd35cb2302b3 Quick dirty fix for building
unc0rr
parents: 12148
diff changeset
    18
type Slab<T> = slab::Slab<T>;
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    19
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    20
pub struct HWServer {
12143
7e874846afe3 Toss code around
unc0rr
parents: 12142
diff changeset
    21
    pub clients: Slab<HWClient>,
7e874846afe3 Toss code around
unc0rr
parents: 12142
diff changeset
    22
    pub rooms: Slab<HWRoom>,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    23
    pub lobby_id: RoomId,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    24
    pub output: Vec<(Vec<ClientId>, HWServerMessage)>,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    25
    pub removed_clients: Vec<ClientId>,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    26
    pub io: Box<dyn HWServerIO>,
12126
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
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    29
impl HWServer {
14392
e335b3120f59 pull file io out of server handler
alfadur
parents: 14375
diff changeset
    30
    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
    31
        let rooms = Slab::with_capacity(rooms_limit);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    32
        let clients = Slab::with_capacity(clients_limit);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    33
        let mut server = HWServer {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    34
            clients,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    35
            rooms,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    36
            lobby_id: 0,
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    37
            output: vec![],
14392
e335b3120f59 pull file io out of server handler
alfadur
parents: 14375
diff changeset
    38
            removed_clients: vec![],
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    39
            io,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    40
        };
14504
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    41
        server.lobby_id = server.add_room().id;
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    42
        server
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    43
    }
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    44
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    45
    pub fn add_client(&mut self) -> ClientId {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    46
        let key: ClientId;
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    47
        {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    48
            let entry = self.clients.vacant_entry();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    49
            key = entry.key();
13798
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    50
            let mut salt = [0u8; 18];
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    51
            thread_rng().fill_bytes(&mut salt);
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    52
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    53
            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
    54
            entry.insert(client);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    55
        }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    56
        self.send(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    57
            key,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    58
            &Destination::ToSelf,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    59
            HWServerMessage::Connected(utils::PROTOCOL_VERSION),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    60
        );
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    61
        key
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    62
    }
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    63
14673
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14672
diff changeset
    64
    pub fn remove_client(&mut self, client_id: ClientId) {
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14672
diff changeset
    65
        self.removed_clients.push(client_id);
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14672
diff changeset
    66
        if self.clients.contains(client_id) {
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14672
diff changeset
    67
            self.clients.remove(client_id);
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14672
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
14504
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    71
    pub fn add_room(&mut self) -> &mut HWRoom {
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    72
        allocate_room(&mut self.rooms)
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    73
    }
12137
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12136
diff changeset
    74
14504
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    75
    #[inline]
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    76
    pub fn create_room(
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    77
        &mut self,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    78
        creator_id: ClientId,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    79
        name: String,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    80
        password: Option<String>,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    81
    ) -> RoomId {
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    82
        create_room(
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    83
            &mut self.clients[creator_id],
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    84
            &mut self.rooms,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    85
            name,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    86
            password,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    87
        )
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    88
    }
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
    89
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
    90
    #[inline]
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
    91
    pub fn move_to_room(&mut self, client_id: ClientId, room_id: RoomId) {
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
    92
        move_to_room(&mut self.clients[client_id], &mut self.rooms[room_id])
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
    93
    }
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
    94
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    95
    pub fn send(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    96
        &mut self,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    97
        client_id: ClientId,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    98
        destination: &Destination,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
    99
        message: HWServerMessage,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   100
    ) {
14672
6e6632068a33 Server action refactoring part 3 of N
alfadur <mail@none>
parents: 14671
diff changeset
   101
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   102
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   103
14671
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
   104
    pub fn send_msg(&mut self, client_id: ClientId, message: PendingMessage) {
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
   105
        self.send(client_id, &message.destination, message.message)
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
   106
    }
455865ccd36c Server action refactoring part 2 of N
alfadur <mail@none>
parents: 14504
diff changeset
   107
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
   108
    pub fn react(&mut self, client_id: ClientId, actions: Vec<actions::Action>) {
12139
f3121d7dedec - Handle errors
unc0rr
parents: 12138
diff changeset
   109
        for action in actions {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
   110
            actions::run_action(self, client_id, action);
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12137
diff changeset
   111
        }
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12137
diff changeset
   112
    }
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   113
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   114
    pub fn lobby(&self) -> &HWRoom {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   115
        &self.rooms[self.lobby_id]
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   116
    }
13521
ba5211dddb21 Assorted chat fixes
alfadur
parents: 13520
diff changeset
   117
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   118
    pub fn has_room(&self, name: &str) -> bool {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   119
        self.rooms.iter().any(|(_, r)| r.name == name)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   120
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   121
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   122
    pub fn find_room(&self, name: &str) -> Option<&HWRoom> {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   123
        self.rooms
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   124
            .iter()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   125
            .find_map(|(_, r)| Some(r).filter(|r| r.name == name))
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   126
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   127
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   128
    pub fn find_room_mut(&mut self, name: &str) -> Option<&mut HWRoom> {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   129
        self.rooms
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   130
            .iter_mut()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   131
            .find_map(|(_, r)| Some(r).filter(|r| r.name == name))
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   132
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   133
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   134
    pub fn find_client(&self, nick: &str) -> Option<&HWClient> {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   135
        self.clients
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(|(_, c)| Some(c).filter(|c| c.nick == nick))
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   138
    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   139
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   140
    pub fn find_client_mut(&mut self, nick: &str) -> Option<&mut HWClient> {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   141
        self.clients
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(|(_, c)| Some(c).filter(|c| c.nick == nick))
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   144
    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   145
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   146
    pub fn select_clients<F>(&self, f: F) -> Vec<ClientId>
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   147
    where
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   148
        F: Fn(&(usize, &HWClient)) -> bool,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   149
    {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   150
        self.clients.iter().filter(f).map(|(_, c)| c.id).collect()
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   151
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   152
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   153
    pub fn room_clients(&self, room_id: RoomId) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   154
        self.select_clients(|(_, c)| c.room_id == Some(room_id))
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   155
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   156
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
   157
    pub fn protocol_clients(&self, protocol: u16) -> Vec<ClientId> {
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   158
        self.select_clients(|(_, c)| c.protocol_number == protocol)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   159
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   160
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   161
    pub fn other_clients_in_room(&self, self_id: ClientId) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   162
        let room_id = self.clients[self_id].room_id;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14415
diff changeset
   163
        self.select_clients(|(id, c)| *id != self_id && c.room_id == room_id)
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   164
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   165
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   166
    pub fn client_and_room(&mut self, client_id: ClientId) -> (&mut HWClient, Option<&mut HWRoom>) {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   167
        let c = &mut self.clients[client_id];
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   168
        if let Some(room_id) = c.room_id {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   169
            (c, Some(&mut self.rooms[room_id]))
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   170
        } else {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   171
            (c, None)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   172
        }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   173
    }
13445
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   174
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   175
    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
   176
        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
   177
    }
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   178
}
14504
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   179
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   180
fn allocate_room(rooms: &mut Slab<HWRoom>) -> &mut HWRoom {
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   181
    let entry = rooms.vacant_entry();
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   182
    let key = entry.key();
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   183
    let room = HWRoom::new(entry.key());
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   184
    entry.insert(room)
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   185
}
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   186
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   187
fn create_room(
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   188
    client: &mut HWClient,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   189
    rooms: &mut Slab<HWRoom>,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   190
    name: String,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   191
    password: Option<String>,
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   192
) -> RoomId {
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   193
    let room = allocate_room(rooms);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   194
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   195
    room.master_id = Some(client.id);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   196
    room.name = name;
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   197
    room.password = password;
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   198
    room.protocol_number = client.protocol_number;
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   199
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   200
    room.players_number = 1;
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   201
    room.ready_players_number = 1;
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   202
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   203
    client.room_id = Some(room.id);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   204
    client.set_is_master(true);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   205
    client.set_is_ready(true);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   206
    client.set_is_joined_mid_game(false);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   207
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   208
    room.id
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   209
}
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   210
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   211
fn move_to_room(client: &mut HWClient, room: &mut HWRoom) {
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   212
    debug_assert!(client.room_id != Some(room.id));
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   213
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   214
    room.players_number += 1;
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   215
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   216
    client.room_id = Some(room.id);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   217
    client.set_is_joined_mid_game(room.game_info.is_some());
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   218
    client.set_is_in_game(room.game_info.is_some());
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   219
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   220
    if let Some(ref mut info) = room.game_info {
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   221
        let teams = info.client_teams(client.id);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   222
        client.teams_in_game = teams.clone().count() as u8;
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   223
        client.clan = teams.clone().next().map(|t| t.color);
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   224
        let team_names: Vec<_> = teams.map(|t| t.name.clone()).collect();
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   225
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   226
        if !team_names.is_empty() {
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   227
            info.left_teams.retain(|name| !team_names.contains(&name));
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   228
            info.teams_in_game += team_names.len() as u8;
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   229
            room.teams = info
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   230
                .teams_at_start
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   231
                .iter()
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   232
                .filter(|(_, t)| !team_names.contains(&t.name))
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   233
                .cloned()
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   234
                .collect();
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   235
        }
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   236
    }
6cc0fce249f9 Server action refactoring part 1 of N
alfadur <mail@none>
parents: 14457
diff changeset
   237
}