1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
use crate::client::Client;
use common::{
    comp::{
        self,
        group::{ChangeNotification, Group, GroupManager},
        invite::{InviteKind, PendingInvites},
        ChatType, Content, GroupManip,
    },
    event::GroupManipEvent,
    uid::{IdMaps, Uid},
};
use common_net::msg::ServerGeneral;
use specs::{world::Entity, DispatcherBuilder, Entities, Read, ReadStorage, Write, WriteStorage};

use super::{event_dispatch, ServerEvent};

pub(super) fn register_event_systems(builder: &mut DispatcherBuilder) {
    event_dispatch::<GroupManipEvent>(builder);
}

pub fn can_invite(
    clients: &ReadStorage<'_, Client>,
    groups: &ReadStorage<'_, Group>,
    group_manager: &GroupManager,
    pending_invites: &mut WriteStorage<'_, PendingInvites>,
    max_group_size: u32,
    inviter: Entity,
    invitee: Entity,
) -> bool {
    // Disallow inviting entity that is already in your group
    let already_in_same_group = groups.get(inviter).map_or(false, |group| {
        group_manager
            .group_info(*group)
            .map_or(false, |g| g.leader == inviter)
            && groups.get(invitee) == Some(group)
    });
    if already_in_same_group {
        // Inform of failure
        if let Some(client) = clients.get(inviter) {
            client.send_fallible(ServerGeneral::server_msg(
                ChatType::Meta,
                Content::Plain(
                    "Invite failed, can't invite someone already in your group".to_string(),
                ),
            ));
        }
        return false;
    }

    // Check if group max size is already reached
    // Adding the current number of pending invites
    let group_size_limit_reached = groups
        .get(inviter)
        .copied()
        .and_then(|group| {
            // If entity is currently the leader of a full group then they can't invite
            // anyone else
            group_manager
                .group_info(group)
                .filter(|i| i.leader == inviter)
                .map(|i| i.num_members)
        })
        .unwrap_or(1) as usize
        + pending_invites.get(inviter).map_or(0, |p| {
            p.0.iter()
                .filter(|(_, k, _)| *k == InviteKind::Group)
                .count()
        })
        >= max_group_size as usize;
    if group_size_limit_reached {
        // Inform inviter that they have reached the group size limit
        if let Some(client) = clients.get(inviter) {
            client.send_fallible(ServerGeneral::server_msg(
                ChatType::Meta,
                Content::Plain(
                    "Invite failed, pending invites plus current group size have reached the \
                     group size limit"
                        .to_owned(),
                ),
            ));
        }
        return false;
    }

    true
}

pub fn update_map_markers<'a>(
    map_markers: &ReadStorage<'a, comp::MapMarker>,
    uids: &ReadStorage<'a, Uid>,
    client: &Client,
    change: &ChangeNotification<Entity>,
) {
    use comp::group::ChangeNotification::*;
    let send_update = |entity| {
        if let (Some(map_marker), Some(uid)) = (map_markers.get(entity), uids.get(entity)) {
            client.send_fallible(ServerGeneral::MapMarker(
                comp::MapMarkerUpdate::GroupMember(
                    *uid,
                    comp::MapMarkerChange::Update(map_marker.0),
                ),
            ));
        }
    };
    match change {
        &Added(entity, _) => {
            send_update(entity);
        },
        NewGroup { leader: _, members } => {
            for (entity, _) in members {
                send_update(*entity);
            }
        },
        // Removed and NoGroup can be inferred by the client, NewLeader does not affect map markers
        Removed(_) | NoGroup | NewLeader(_) => {},
    }
}

impl ServerEvent for GroupManipEvent {
    type SystemData<'a> = (
        Entities<'a>,
        Write<'a, GroupManager>,
        Read<'a, IdMaps>,
        WriteStorage<'a, Group>,
        ReadStorage<'a, Client>,
        ReadStorage<'a, Uid>,
        ReadStorage<'a, comp::Alignment>,
        ReadStorage<'a, comp::MapMarker>,
    );

    fn handle(
        events: impl ExactSizeIterator<Item = Self>,
        (entities, mut group_manager, id_maps, mut groups, clients, uids, alignments, map_markers): Self::SystemData<'_>,
    ) {
        for GroupManipEvent(entity, manip) in events {
            match manip {
                GroupManip::Leave => {
                    group_manager.leave_group(
                        entity,
                        &mut groups,
                        &alignments,
                        &uids,
                        &entities,
                        &mut |entity, group_change| {
                            clients
                                .get(entity)
                                .and_then(|c| {
                                    group_change
                                        .try_map_ref(|e| uids.get(*e).copied())
                                        .map(|g| (g, c))
                                })
                                .map(|(g, c)| {
                                    update_map_markers(&map_markers, &uids, c, &group_change);
                                    c.send_fallible(ServerGeneral::GroupUpdate(g));
                                });
                        },
                    );
                },
                GroupManip::Kick(uid) => {
                    let target = match id_maps.uid_entity(uid) {
                        Some(t) => t,
                        None => {
                            // Inform of failure
                            if let Some(client) = clients.get(entity) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain(
                                        "Kick failed, target does not exist.".to_string(),
                                    ),
                                ));
                            }
                            continue;
                        },
                    };

                    // Can't kick pet
                    if matches!(alignments.get(target), Some(comp::Alignment::Owned(owner)) if uids.get(target).map_or(true, |u| u != owner))
                    {
                        if let Some(general_stream) = clients.get(entity) {
                            general_stream.send_fallible(ServerGeneral::server_msg(
                                ChatType::Meta,
                                Content::Plain("Kick failed, you can't kick pets.".to_string()),
                            ));
                        }
                        continue;
                    }
                    // Can't kick yourself
                    if uids.get(entity).map_or(false, |u| *u == uid) {
                        if let Some(client) = clients.get(entity) {
                            client.send_fallible(ServerGeneral::server_msg(
                                ChatType::Meta,
                                Content::Plain("Kick failed, you can't kick yourself.".to_string()),
                            ));
                        }
                        continue;
                    }

                    // Make sure kicker is the group leader
                    match groups
                        .get(target)
                        .and_then(|group| group_manager.group_info(*group))
                    {
                        Some(info) if info.leader == entity => {
                            // Remove target from group
                            group_manager.leave_group(
                                target,
                                &mut groups,
                                &alignments,
                                &uids,
                                &entities,
                                &mut |entity, group_change| {
                                    clients
                                        .get(entity)
                                        .and_then(|c| {
                                            group_change
                                                .try_map_ref(|e| uids.get(*e).copied())
                                                .map(|g| (g, c))
                                        })
                                        .map(|(g, c)| {
                                            update_map_markers(
                                                &map_markers,
                                                &uids,
                                                c,
                                                &group_change,
                                            );
                                            c.send_fallible(ServerGeneral::GroupUpdate(g));
                                        });
                                },
                            );

                            // Tell them the have been kicked
                            if let Some(client) = clients.get(target) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain("You were removed from the group.".to_string()),
                                ));
                            }
                            // Tell kicker that they were successful
                            if let Some(client) = clients.get(entity) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain("Player kicked.".to_string()),
                                ));
                            }
                        },
                        Some(_) => {
                            // Inform kicker that they are not the leader
                            if let Some(client) = clients.get(entity) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain(
                                        "Kick failed: You are not the leader of the target's \
                                         group."
                                            .to_string(),
                                    ),
                                ));
                            }
                        },
                        None => {
                            // Inform kicker that the target is not in a group
                            if let Some(client) = clients.get(entity) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain(
                                        "Kick failed: Your target is not in a group.".to_string(),
                                    ),
                                ));
                            }
                        },
                    }
                },
                GroupManip::AssignLeader(uid) => {
                    let target = match id_maps.uid_entity(uid) {
                        Some(t) => t,
                        None => {
                            // Inform of failure
                            if let Some(client) = clients.get(entity) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain(
                                        "Leadership transfer failed, target does not exist"
                                            .to_string(),
                                    ),
                                ));
                            }
                            continue;
                        },
                    };
                    // Make sure assigner is the group leader
                    match groups
                        .get(target)
                        .and_then(|group| group_manager.group_info(*group))
                    {
                        Some(info) if info.leader == entity => {
                            // Assign target as group leader
                            group_manager.assign_leader(
                                target,
                                &groups,
                                &entities,
                                &alignments,
                                &uids,
                                |entity, group_change| {
                                    clients
                                        .get(entity)
                                        .and_then(|c| {
                                            group_change
                                                .try_map_ref(|e| uids.get(*e).copied())
                                                .map(|g| (g, c))
                                        })
                                        .map(|(g, c)| {
                                            update_map_markers(
                                                &map_markers,
                                                &uids,
                                                c,
                                                &group_change,
                                            );
                                            c.send_fallible(ServerGeneral::GroupUpdate(g));
                                        });
                                },
                            );
                            // Tell them they are the leader
                            if let Some(client) = clients.get(target) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain("You are the group leader now.".to_string()),
                                ));
                            }
                            // Tell the old leader that the transfer was succesful
                            if let Some(client) = clients.get(entity) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain(
                                        "You are no longer the group leader.".to_string(),
                                    ),
                                ));
                            }
                        },
                        Some(_) => {
                            // Inform transferer that they are not the leader
                            if let Some(client) = clients.get(entity) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain(
                                        "Transfer failed: You are not the leader of the target's \
                                         group."
                                            .to_string(),
                                    ),
                                ));
                            }
                        },
                        None => {
                            // Inform transferer that the target is not in a group
                            if let Some(client) = clients.get(entity) {
                                client.send_fallible(ServerGeneral::server_msg(
                                    ChatType::Meta,
                                    Content::Plain(
                                        "Transfer failed: Your target is not in a group."
                                            .to_string(),
                                    ),
                                ));
                            }
                        },
                    }
                },
            }
        }
    }
}