rust/hedgewars-server/src/server/actions.rs
author alfadur <mail@none>
Tue, 05 Feb 2019 00:48:40 +0300
changeset 14675 dfe652c53470
parent 14673 08a8605bafaf
child 14683 932ff7683653
permissions -rw-r--r--
Server action refactoring part 6 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: 14456
diff changeset
     2
    client::HWClient,
14374
e5db279308d7 dispose of server mods
alfadur
parents: 14350
diff changeset
     3
    core::HWServer,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
     4
    coretypes::{ClientId, GameCfg, RoomId, VoteType},
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
     5
    handlers,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
     6
    room::HWRoom,
13523
8c5dd562c9f7 Add room flags
alfadur
parents: 13520
diff changeset
     7
    room::{GameInfo, RoomFlags},
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
     8
};
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
     9
use crate::{
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    10
    protocol::messages::{server_chat, HWProtocolMessage, HWServerMessage, HWServerMessage::*},
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    11
    utils::to_engine_msg,
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    12
};
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    13
use rand::{distributions::Uniform, thread_rng, Rng};
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    14
use std::{io, io::Write, iter::once, mem::replace};
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents:
diff changeset
    15
14456
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14415
diff changeset
    16
#[cfg(feature = "official-server")]
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14415
diff changeset
    17
use super::database;
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14415
diff changeset
    18
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    19
pub enum Destination {
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
    20
    ToId(ClientId),
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    21
    ToSelf,
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
    22
    ToAll {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    23
        room_id: Option<RoomId>,
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
    24
        protocol: Option<u16>,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    25
        skip_self: bool,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    26
    },
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    27
}
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    28
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    29
pub struct PendingMessage {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    30
    pub destination: Destination,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    31
    pub message: HWServerMessage,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    32
}
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    33
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    34
impl PendingMessage {
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
    35
    pub fn send(message: HWServerMessage, client_id: ClientId) -> PendingMessage {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    36
        PendingMessage {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    37
            destination: Destination::ToId(client_id),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    38
            message,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    39
        }
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
    40
    }
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
    41
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    42
    pub fn send_self(message: HWServerMessage) -> PendingMessage {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    43
        PendingMessage {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    44
            destination: Destination::ToSelf,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    45
            message,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    46
        }
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    47
    }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    48
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    49
    pub fn send_all(message: HWServerMessage) -> PendingMessage {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    50
        let destination = Destination::ToAll {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    51
            room_id: None,
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    52
            protocol: None,
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    53
            skip_self: false,
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    54
        };
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    55
        PendingMessage {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    56
            destination,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    57
            message,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    58
        }
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    59
    }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    60
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    61
    pub fn in_room(mut self, clients_room_id: RoomId) -> PendingMessage {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    62
        if let Destination::ToAll {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    63
            ref mut room_id, ..
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    64
        } = self.destination
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    65
        {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    66
            *room_id = Some(clients_room_id)
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    67
        }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    68
        self
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    69
    }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    70
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
    71
    pub fn with_protocol(mut self, protocol_number: u16) -> PendingMessage {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    72
        if let Destination::ToAll {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    73
            ref mut protocol, ..
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    74
        } = self.destination
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    75
        {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    76
            *protocol = Some(protocol_number)
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    77
        }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    78
        self
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    79
    }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    80
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    81
    pub fn but_self(mut self) -> PendingMessage {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    82
        if let Destination::ToAll {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    83
            ref mut skip_self, ..
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    84
        } = self.destination
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    85
        {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    86
            *skip_self = true
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    87
        }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    88
        self
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    89
    }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    90
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    91
    pub fn action(self) -> Action {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    92
        Send(self)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    93
    }
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    94
}
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    95
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    96
impl Into<Action> for PendingMessage {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    97
    fn into(self) -> Action {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    98
        self.action()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    99
    }
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   100
}
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   101
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   102
impl HWServerMessage {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   103
    pub fn send(self, client_id: ClientId) -> PendingMessage {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   104
        PendingMessage::send(self, client_id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   105
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   106
    pub fn send_self(self) -> PendingMessage {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   107
        PendingMessage::send_self(self)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   108
    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   109
    pub fn send_all(self) -> PendingMessage {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   110
        PendingMessage::send_all(self)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   111
    }
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   112
}
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   113
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents:
diff changeset
   114
pub enum Action {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   115
    Send(PendingMessage),
12145
a482c7a5f6e3 Lobby joining action
unc0rr
parents: 12144
diff changeset
   116
    CheckRegistered,
a482c7a5f6e3 Lobby joining action
unc0rr
parents: 12144
diff changeset
   117
    JoinLobby,
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   118
    RemoveRoom(RoomId),
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   119
    MoveToRoom(RoomId),
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   120
    ChangeMaster(RoomId, Option<ClientId>),
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   121
    SendRoomUpdate(Option<String>),
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   122
    StartRoomGame(RoomId),
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   123
    SendTeamRemovalMessage(String),
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   124
    FinishRoomGame(RoomId),
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   125
    SendRoomData {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   126
        to: ClientId,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   127
        teams: bool,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   128
        config: bool,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   129
        flags: bool,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   130
    },
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   131
    AddVote {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   132
        vote: bool,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   133
        is_forced: bool,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   134
    },
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   135
    ApplyVoting(VoteType, RoomId),
12147
03ccb89820f3 Room creation halfplemented
unc0rr
parents: 12146
diff changeset
   136
    Warn(String),
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   137
    ProtocolError(String),
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents:
diff changeset
   138
}
12144
589a2d7d3dc5 More refactoring
unc0rr
parents: 12143
diff changeset
   139
589a2d7d3dc5 More refactoring
unc0rr
parents: 12143
diff changeset
   140
use self::Action::*;
589a2d7d3dc5 More refactoring
unc0rr
parents: 12143
diff changeset
   141
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   142
pub fn run_action(server: &mut HWServer, client_id: usize, action: Action) {
12144
589a2d7d3dc5 More refactoring
unc0rr
parents: 12143
diff changeset
   143
    match action {
13524
5359ff75da3a indulge clippy
alfadur
parents: 13523
diff changeset
   144
        Send(msg) => server.send(client_id, &msg.destination, msg.message),
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   145
        CheckRegistered => {
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   146
            let client = &server.clients[client_id];
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   147
            if client.protocol_number > 0 && client.nick != "" {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   148
                let has_nick_clash = server
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   149
                    .clients
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   150
                    .iter()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   151
                    .any(|(id, c)| id != client_id && c.nick == client.nick);
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   152
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   153
                let actions = if !client.is_checker() && has_nick_clash {
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   154
                    if client.protocol_number < 38 {
14673
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14671
diff changeset
   155
                        //ByeClient("Nickname is already in use".to_string())
08a8605bafaf Server action refactoring part 4 of N
alfadur <mail@none>
parents: 14671
diff changeset
   156
                        vec![]
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   157
                    } else {
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   158
                        server.clients[client_id].nick.clear();
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   159
                        vec![Notice("NickAlreadyInUse".to_string()).send_self().action()]
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   160
                    }
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   161
                } else {
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   162
                    vec![JoinLobby]
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   163
                };
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   164
                server.react(client_id, actions);
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   165
            }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   166
        }
12146
8d8fb85bc09c SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents: 12145
diff changeset
   167
        JoinLobby => {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   168
            server.clients[client_id].room_id = Some(server.lobby_id);
12147
03ccb89820f3 Room creation halfplemented
unc0rr
parents: 12146
diff changeset
   169
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   170
            let mut lobby_nicks = Vec::new();
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   171
            for (_, c) in server.clients.iter() {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   172
                if c.room_id.is_some() {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   173
                    lobby_nicks.push(c.nick.clone());
12146
8d8fb85bc09c SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents: 12145
diff changeset
   174
                }
8d8fb85bc09c SendAllButMe action, list all clients in lobby in LobbyJoined message to newcomers
unc0rr
parents: 12145
diff changeset
   175
            }
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   176
            let joined_msg = LobbyJoined(lobby_nicks);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   177
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   178
            let everyone_msg = LobbyJoined(vec![server.clients[client_id].nick.clone()]);
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   179
            let flags_msg = ClientFlags(
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   180
                "+i".to_string(),
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   181
                server
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   182
                    .clients
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   183
                    .iter()
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   184
                    .filter(|(_, c)| c.room_id.is_some())
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   185
                    .map(|(_, c)| c.nick.clone())
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   186
                    .collect(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   187
            );
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   188
            let server_msg = ServerMessage("\u{1f994} is watching".to_string());
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   189
            let rooms_msg = Rooms(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   190
                server
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   191
                    .rooms
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   192
                    .iter()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   193
                    .filter(|(id, _)| *id != server.lobby_id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   194
                    .flat_map(|(_, r)| r.info(r.master_id.map(|id| &server.clients[id])))
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   195
                    .collect(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   196
            );
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   197
            server.react(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   198
                client_id,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   199
                vec![
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   200
                    everyone_msg.send_all().but_self().action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   201
                    joined_msg.send_self().action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   202
                    flags_msg.send_self().action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   203
                    server_msg.send_self().action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   204
                    rooms_msg.send_self().action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   205
                ],
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   206
            );
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   207
        }
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   208
        RemoveRoom(room_id) => {
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   209
            let r = &mut server.rooms[room_id];
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   210
            let actions = vec![RoomRemove(r.name.clone())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   211
                .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   212
                .with_protocol(r.protocol_number)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   213
                .action()];
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   214
            server.rooms.remove(room_id);
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   215
            server.react(client_id, actions);
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   216
        }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   217
        MoveToRoom(room_id) => {
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   218
            let r = &mut server.rooms[room_id];
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   219
            let c = &mut server.clients[client_id];
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   220
            r.players_number += 1;
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   221
            c.room_id = Some(room_id);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   222
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   223
            let is_master = r.master_id == Some(c.id);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   224
            c.set_is_master(is_master);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   225
            c.set_is_ready(is_master);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   226
            c.set_is_joined_mid_game(false);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   227
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   228
            if is_master {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   229
                r.ready_players_number += 1;
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   230
            }
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   231
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   232
            let mut v = vec![
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   233
                RoomJoined(vec![c.nick.clone()])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   234
                    .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   235
                    .in_room(room_id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   236
                    .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   237
                ClientFlags("+i".to_string(), vec![c.nick.clone()])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   238
                    .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   239
                    .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   240
                SendRoomUpdate(None),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   241
            ];
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   242
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   243
            if !r.greeting.is_empty() {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   244
                v.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   245
                    ChatMsg {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   246
                        nick: "[greeting]".to_string(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   247
                        msg: r.greeting.clone(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   248
                    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   249
                    .send_self()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   250
                    .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   251
                );
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   252
            }
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
   253
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   254
            if !c.is_master() {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   255
                let team_names: Vec<_>;
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   256
                if let Some(ref mut info) = r.game_info {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   257
                    c.set_is_in_game(true);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   258
                    c.set_is_joined_mid_game(true);
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
   259
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   260
                    {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   261
                        let teams = info.client_teams(c.id);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   262
                        c.teams_in_game = teams.clone().count() as u8;
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   263
                        c.clan = teams.clone().next().map(|t| t.color);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   264
                        team_names = teams.map(|t| t.name.clone()).collect();
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   265
                    }
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   266
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   267
                    if !team_names.is_empty() {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   268
                        info.left_teams.retain(|name| !team_names.contains(&name));
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   269
                        info.teams_in_game += team_names.len() as u8;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   270
                        r.teams = info
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   271
                            .teams_at_start
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   272
                            .iter()
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   273
                            .filter(|(_, t)| !team_names.contains(&t.name))
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   274
                            .cloned()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   275
                            .collect();
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   276
                    }
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   277
                } else {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   278
                    team_names = Vec::new();
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   279
                }
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   280
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   281
                v.push(SendRoomData {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   282
                    to: client_id,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   283
                    teams: true,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   284
                    config: true,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   285
                    flags: true,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   286
                });
13427
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   287
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   288
                if let Some(ref info) = r.game_info {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   289
                    v.push(RunGame.send_self().action());
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   290
                    v.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   291
                        ClientFlags("+g".to_string(), vec![c.nick.clone()])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   292
                            .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   293
                            .in_room(r.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   294
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   295
                    );
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   296
                    v.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   297
                        ForwardEngineMessage(vec![to_engine_msg("e$spectate 1".bytes())])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   298
                            .send_self()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   299
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   300
                    );
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   301
                    v.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   302
                        ForwardEngineMessage(info.msg_log.clone())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   303
                            .send_self()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   304
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   305
                    );
13427
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   306
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   307
                    for name in &team_names {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   308
                        v.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   309
                            ForwardEngineMessage(vec![to_engine_msg(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   310
                                once(b'G').chain(name.bytes()),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   311
                            )])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   312
                            .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   313
                            .in_room(r.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   314
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   315
                        );
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   316
                    }
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   317
                    if info.is_paused {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   318
                        v.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   319
                            ForwardEngineMessage(vec![to_engine_msg(once(b'I'))])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   320
                                .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   321
                                .in_room(r.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   322
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   323
                        )
13427
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   324
                    }
13422
5fb27f94fc3b Implement game config messages
alfadur
parents: 13419
diff changeset
   325
                }
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   326
            }
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   327
            server.react(client_id, v);
13424
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   328
        }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   329
        SendRoomData {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   330
            to,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   331
            teams,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   332
            config,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   333
            flags,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   334
        } => {
13424
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   335
            let mut actions = Vec::new();
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   336
            let room_id = server.clients[client_id].room_id;
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   337
            if let Some(r) = room_id.and_then(|id| server.rooms.get(id)) {
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   338
                if config {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   339
                    actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   340
                        ConfigEntry("FULLMAPCONFIG".to_string(), r.map_config())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   341
                            .send(to)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   342
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   343
                    );
13524
5359ff75da3a indulge clippy
alfadur
parents: 13523
diff changeset
   344
                    for cfg in r.game_config() {
13439
c4f917c6be51 add missing message tests
alfadur
parents: 13428
diff changeset
   345
                        actions.push(cfg.to_server_msg().send(to).action());
13424
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   346
                    }
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   347
                }
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   348
                if teams {
13427
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   349
                    let current_teams = match r.game_info {
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   350
                        Some(ref info) => &info.teams_at_start,
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   351
                        None => &r.teams,
13427
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   352
                    };
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   353
                    for (owner_id, team) in current_teams.iter() {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   354
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   355
                            TeamAdd(HWRoom::team_info(&server.clients[*owner_id], &team))
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   356
                                .send(to)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   357
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   358
                        );
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   359
                        actions.push(TeamColor(team.name.clone(), team.color).send(to).action());
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   360
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   361
                            HedgehogsNumber(team.name.clone(), team.hedgehogs_number)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   362
                                .send(to)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   363
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   364
                        );
13424
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   365
                    }
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   366
                }
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   367
                if flags {
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   368
                    if let Some(id) = r.master_id {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   369
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   370
                            ClientFlags("+h".to_string(), vec![server.clients[id].nick.clone()])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   371
                                .send(to)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   372
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   373
                        );
13424
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   374
                    }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   375
                    let nicks: Vec<_> = server
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   376
                        .clients
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   377
                        .iter()
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
   378
                        .filter(|(_, c)| c.room_id == Some(r.id) && c.is_ready())
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   379
                        .map(|(_, c)| c.nick.clone())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   380
                        .collect();
13424
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   381
                    if !nicks.is_empty() {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   382
                        actions.push(ClientFlags("+r".to_string(), nicks).send(to).action());
13424
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   383
                    }
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   384
                }
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   385
            }
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   386
            server.react(client_id, actions);
d8354cb98b98 Send teams&flags on entering a room
alfadur
parents: 13423
diff changeset
   387
        }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   388
        AddVote { vote, is_forced } => {
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   389
            let mut actions = Vec::new();
13527
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   390
            if let Some(r) = server.room(client_id) {
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   391
                let mut result = None;
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   392
                if let Some(ref mut voting) = r.voting {
14350
31717e1436cd recruit some newly stabilized functions
alfadur
parents: 13801
diff changeset
   393
                    if is_forced || voting.votes.iter().all(|(id, _)| client_id != *id) {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   394
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   395
                            server_chat("Your vote has been counted.".to_string())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   396
                                .send_self()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   397
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   398
                        );
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   399
                        voting.votes.push((client_id, vote));
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   400
                        let i = voting.votes.iter();
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   401
                        let pro = i.clone().filter(|(_, v)| *v).count();
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   402
                        let contra = i.filter(|(_, v)| !*v).count();
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   403
                        let success_quota = voting.voters.len() / 2 + 1;
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   404
                        if is_forced && vote || pro >= success_quota {
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   405
                            result = Some(true);
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   406
                        } else if is_forced && !vote || contra > voting.voters.len() - success_quota
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   407
                        {
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   408
                            result = Some(false);
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   409
                        }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   410
                    } else {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   411
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   412
                            server_chat("You already have voted.".to_string())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   413
                                .send_self()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   414
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   415
                        );
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   416
                    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   417
                } else {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   418
                    actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   419
                        server_chat("There's no voting going on.".to_string())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   420
                            .send_self()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   421
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   422
                    );
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   423
                }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   424
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   425
                if let Some(res) = result {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   426
                    actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   427
                        server_chat("Voting closed.".to_string())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   428
                            .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   429
                            .in_room(r.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   430
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   431
                    );
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   432
                    let voting = replace(&mut r.voting, None).unwrap();
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   433
                    if res {
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   434
                        actions.push(ApplyVoting(voting.kind, r.id));
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   435
                    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   436
                }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   437
            }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   438
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   439
            server.react(client_id, actions);
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   440
        }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   441
        ApplyVoting(kind, room_id) => {
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   442
            let mut actions = Vec::new();
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   443
            let mut id = client_id;
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   444
            match kind {
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   445
                VoteType::Kick(nick) => {
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   446
                    if let Some(c) = server.find_client(&nick) {
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   447
                        if c.room_id == Some(room_id) {
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   448
                            id = c.id;
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   449
                            actions.push(Kicked.send_self().action());
14675
dfe652c53470 Server action refactoring part 6 of N
alfadur <mail@none>
parents: 14673
diff changeset
   450
                            //actions.push(MoveToLobby("kicked".to_string()));
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   451
                        }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   452
                    }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   453
                }
13527
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   454
                VoteType::Map(None) => (),
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   455
                VoteType::Map(Some(name)) => {
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   456
                    if let Some(location) = server.rooms[room_id].load_config(&name) {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   457
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   458
                            server_chat(location.to_string())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   459
                                .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   460
                                .in_room(room_id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   461
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   462
                        );
13527
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   463
                        actions.push(SendRoomUpdate(None));
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   464
                        for (_, c) in server.clients.iter() {
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   465
                            if c.room_id == Some(room_id) {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   466
                                actions.push(SendRoomData {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   467
                                    to: c.id,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   468
                                    teams: false,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   469
                                    config: true,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   470
                                    flags: false,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   471
                                })
13527
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   472
                            }
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   473
                        }
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   474
                    }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   475
                }
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   476
                VoteType::Pause => {
13480
fb37745c5bca complete newseed voting
alfadur
parents: 13478
diff changeset
   477
                    if let Some(ref mut info) = server.rooms[room_id].game_info {
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   478
                        info.is_paused = !info.is_paused;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   479
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   480
                            server_chat("Pause toggled.".to_string())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   481
                                .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   482
                                .in_room(room_id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   483
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   484
                        );
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   485
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   486
                            ForwardEngineMessage(vec![to_engine_msg(once(b'I'))])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   487
                                .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   488
                                .in_room(room_id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   489
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   490
                        );
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   491
                    }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   492
                }
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   493
                VoteType::NewSeed => {
13480
fb37745c5bca complete newseed voting
alfadur
parents: 13478
diff changeset
   494
                    let seed = thread_rng().gen_range(0, 1_000_000_000).to_string();
fb37745c5bca complete newseed voting
alfadur
parents: 13478
diff changeset
   495
                    let cfg = GameCfg::Seed(seed);
fb37745c5bca complete newseed voting
alfadur
parents: 13478
diff changeset
   496
                    actions.push(cfg.to_server_msg().send_all().in_room(room_id).action());
fb37745c5bca complete newseed voting
alfadur
parents: 13478
diff changeset
   497
                    server.rooms[room_id].set_config(cfg);
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   498
                }
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   499
                VoteType::HedgehogsPerTeam(number) => {
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   500
                    let r = &mut server.rooms[room_id];
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   501
                    let nicks = r.set_hedgehogs_number(number);
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   502
                    actions.extend(nicks.into_iter().map(|n| {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   503
                        HedgehogsNumber(n, number)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   504
                            .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   505
                            .in_room(room_id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   506
                            .action()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   507
                    }));
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   508
                }
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   509
            }
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   510
            server.react(id, actions);
d79795acaa73 Mostly implement voting
alfadur
parents: 13477
diff changeset
   511
        }
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   512
        ChangeMaster(room_id, new_id) => {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   513
            let mut actions = Vec::new();
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   514
            let room_client_ids = server.room_clients(room_id);
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   515
            let new_id = if server
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   516
                .room(client_id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   517
                .map(|r| r.is_fixed())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   518
                .unwrap_or(false)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   519
            {
13477
f748a72432f2 Implement greetings & fixed rooms
alfadur
parents: 13443
diff changeset
   520
                new_id
f748a72432f2 Implement greetings & fixed rooms
alfadur
parents: 13443
diff changeset
   521
            } else {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   522
                new_id.or_else(|| room_client_ids.iter().find(|id| **id != client_id).cloned())
13477
f748a72432f2 Implement greetings & fixed rooms
alfadur
parents: 13443
diff changeset
   523
            };
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   524
            let new_nick = new_id.map(|id| server.clients[id].nick.clone());
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   525
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   526
            if let (c, Some(r)) = server.client_and_room(client_id) {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   527
                match r.master_id {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   528
                    Some(id) if id == c.id => {
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
   529
                        c.set_is_master(false);
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   530
                        r.master_id = None;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   531
                        actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   532
                            ClientFlags("-h".to_string(), vec![c.nick.clone()])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   533
                                .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   534
                                .in_room(r.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   535
                                .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   536
                        );
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   537
                    }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   538
                    Some(_) => unreachable!(),
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   539
                    None => {}
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   540
                }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   541
                r.master_id = new_id;
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   542
                if !r.is_fixed() && c.protocol_number < 42 {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   543
                    r.name
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   544
                        .replace_range(.., new_nick.as_ref().map_or("[]", String::as_str));
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   545
                }
13523
8c5dd562c9f7 Add room flags
alfadur
parents: 13520
diff changeset
   546
                r.set_join_restriction(false);
8c5dd562c9f7 Add room flags
alfadur
parents: 13520
diff changeset
   547
                r.set_team_add_restriction(false);
8c5dd562c9f7 Add room flags
alfadur
parents: 13520
diff changeset
   548
                let is_fixed = r.is_fixed();
8c5dd562c9f7 Add room flags
alfadur
parents: 13520
diff changeset
   549
                r.set_unregistered_players_restriction(is_fixed);
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   550
                if let Some(nick) = new_nick {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   551
                    actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   552
                        ClientFlags("+h".to_string(), vec![nick])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   553
                            .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   554
                            .in_room(r.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   555
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   556
                    );
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   557
                }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   558
            }
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   559
            if let Some(id) = new_id {
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   560
                server.clients[id].set_is_master(true)
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   561
            }
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   562
            server.react(client_id, actions);
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   563
        }
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   564
        SendRoomUpdate(old_name) => {
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   565
            if let (c, Some(r)) = server.client_and_room(client_id) {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   566
                let name = old_name.unwrap_or_else(|| r.name.clone());
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   567
                let actions = vec![RoomUpdated(name, r.info(Some(&c)))
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   568
                    .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   569
                    .with_protocol(r.protocol_number)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   570
                    .action()];
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   571
                server.react(client_id, actions);
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   572
            }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   573
        }
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   574
        StartRoomGame(room_id) => {
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   575
            let actions = {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   576
                let (room_clients, room_nicks): (Vec<_>, Vec<_>) = server
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   577
                    .clients
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   578
                    .iter()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   579
                    .map(|(id, c)| (id, c.nick.clone()))
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   580
                    .unzip();
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   581
                let room = &mut server.rooms[room_id];
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   582
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   583
                if !room.has_multiple_clans() {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   584
                    vec![Warn(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   585
                        "The game can't be started with less than two clans!".to_string(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   586
                    )]
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   587
                } else if room.protocol_number <= 43
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   588
                    && room.players_number != room.ready_players_number
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   589
                {
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   590
                    vec![Warn("Not all players are ready".to_string())]
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   591
                } else if room.game_info.is_some() {
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   592
                    vec![Warn("The game is already in progress".to_string())]
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   593
                } else {
13427
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   594
                    room.start_round();
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   595
                    for id in room_clients {
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   596
                        let c = &mut server.clients[id];
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
   597
                        c.set_is_in_game(false);
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   598
                        c.team_indices = room.client_team_indices(c.id);
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   599
                    }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   600
                    vec![
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   601
                        RunGame.send_all().in_room(room.id).action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   602
                        SendRoomUpdate(None),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   603
                        ClientFlags("+g".to_string(), room_nicks)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   604
                            .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   605
                            .in_room(room.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   606
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   607
                    ]
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   608
                }
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   609
            };
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   610
            server.react(client_id, actions);
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   611
        }
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   612
        SendTeamRemovalMessage(team_name) => {
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   613
            let mut actions = Vec::new();
13527
e3ae9eea0689 Implement map voting
alfadur
parents: 13524
diff changeset
   614
            if let Some(r) = server.room(client_id) {
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   615
                if let Some(ref mut info) = r.game_info {
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   616
                    let msg = once(b'F').chain(team_name.bytes());
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   617
                    actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   618
                        ForwardEngineMessage(vec![to_engine_msg(msg)])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   619
                            .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   620
                            .in_room(r.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   621
                            .but_self()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   622
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   623
                    );
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   624
                    info.teams_in_game -= 1;
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   625
                    if info.teams_in_game == 0 {
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   626
                        actions.push(FinishRoomGame(r.id));
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   627
                    }
13427
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   628
                    let remove_msg = to_engine_msg(once(b'F').chain(team_name.bytes()));
13443
2501428303a2 Fix team remove synchronization
alfadur
parents: 13439
diff changeset
   629
                    if let Some(m) = &info.sync_msg {
2501428303a2 Fix team remove synchronization
alfadur
parents: 13439
diff changeset
   630
                        info.msg_log.push(m.clone());
13427
6f6a866c86a2 Send more data on room joining
alfadur
parents: 13426
diff changeset
   631
                    }
13443
2501428303a2 Fix team remove synchronization
alfadur
parents: 13439
diff changeset
   632
                    if info.sync_msg.is_some() {
2501428303a2 Fix team remove synchronization
alfadur
parents: 13439
diff changeset
   633
                        info.sync_msg = None
2501428303a2 Fix team remove synchronization
alfadur
parents: 13439
diff changeset
   634
                    }
2501428303a2 Fix team remove synchronization
alfadur
parents: 13439
diff changeset
   635
                    info.msg_log.push(remove_msg.clone());
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   636
                    actions.push(
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   637
                        ForwardEngineMessage(vec![remove_msg])
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   638
                            .send_all()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   639
                            .in_room(r.id)
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   640
                            .but_self()
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   641
                            .action(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   642
                    );
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   643
                }
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   644
            }
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   645
            server.react(client_id, actions);
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   646
        }
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   647
        FinishRoomGame(room_id) => {
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   648
            let mut actions = Vec::new();
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   649
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   650
            let r = &mut server.rooms[room_id];
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   651
            r.ready_players_number = 1;
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   652
            actions.push(SendRoomUpdate(None));
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   653
            actions.push(RoundFinished.send_all().in_room(r.id).action());
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   654
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   655
            if let Some(info) = replace(&mut r.game_info, None) {
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   656
                for (_, c) in server.clients.iter() {
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
   657
                    if c.room_id == Some(room_id) && c.is_joined_mid_game() {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   658
                        actions.push(SendRoomData {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   659
                            to: c.id,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   660
                            teams: false,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   661
                            config: true,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   662
                            flags: false,
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   663
                        });
13524
5359ff75da3a indulge clippy
alfadur
parents: 13523
diff changeset
   664
                        for name in &info.left_teams {
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   665
                            actions.push(TeamRemove(name.clone()).send(c.id).action());
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   666
                        }
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   667
                    }
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   668
                }
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   669
            }
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   670
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   671
            let nicks: Vec<_> = server
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   672
                .clients
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   673
                .iter_mut()
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   674
                .filter(|(_, c)| c.room_id == Some(room_id))
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   675
                .map(|(_, c)| {
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13527
diff changeset
   676
                    c.set_is_ready(c.is_master());
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13480
diff changeset
   677
                    c.set_is_joined_mid_game(false);
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   678
                    c
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   679
                })
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   680
                .filter_map(|c| {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   681
                    if !c.is_master() {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   682
                        Some(c.nick.clone())
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   683
                    } else {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   684
                        None
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   685
                    }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   686
                })
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   687
                .collect();
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   688
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   689
            if !nicks.is_empty() {
13801
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   690
                let msg = if r.protocol_number < 38 {
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   691
                    LegacyReady(false, nicks)
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   692
                } else {
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   693
                    ClientFlags("-r".to_string(), nicks)
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   694
                };
5fb40c8e5542 port some legacy protocol support
alfadur
parents: 13666
diff changeset
   695
                actions.push(msg.send_all().in_room(room_id).action());
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13424
diff changeset
   696
            }
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   697
            server.react(client_id, actions);
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13422
diff changeset
   698
        }
12147
03ccb89820f3 Room creation halfplemented
unc0rr
parents: 12146
diff changeset
   699
        Warn(msg) => {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
   700
            run_action(server, client_id, Warning(msg).send_self().action());
12147
03ccb89820f3 Room creation halfplemented
unc0rr
parents: 12146
diff changeset
   701
        }
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
   702
        ProtocolError(msg) => run_action(server, client_id, Error(msg).send_self().action()),
12144
589a2d7d3dc5 More refactoring
unc0rr
parents: 12143
diff changeset
   703
    }
589a2d7d3dc5 More refactoring
unc0rr
parents: 12143
diff changeset
   704
}