summaryrefslogtreecommitdiff
path: root/game_server/src/scribble_group.rs
blob: e68c6df6595699cb83985d6fefea7d5292c4c478 (plain)
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
use super::group::{Group, GroupId};
use super::server::{UserId, GameClient,
                    ClientSender, ClientReceiver};
use std::collections::HashMap;
use std::sync::{Arc, Mutex};

pub struct ScribbleGroup {
    id: GroupId,
    name: String,
    senders: Arc<Mutex<HashMap<UserId, ClientSender>>>
}

impl Group for ScribbleGroup {
    fn id(&self) -> GroupId {
        self.id
    }

    fn group_type(&self) -> String {
        "scribble".to_string()
    }

    fn name(&self) -> String {
        self.name.clone()
    }

    fn run(&mut self) {
        info!("a new group {}:'{}' runs now", self.id, self.name);
    }

    fn add_client(&mut self, id: UserId, client: GameClient) {
        debug!("user {} joined the group {}:'{}'", id, self.id, self.name);
        let (sen, mut rec) = client.split();
        self.senders.lock().unwrap().insert(id, sen);
        let senders_mutex = self.senders.clone();
        let self_uid = id;
        std::thread::spawn(move || {
            loop {
                let message = rec.recv_message().unwrap();
                info!("got message: '{:?}'", message);
                let mut senders = senders_mutex.lock().unwrap();
                for (uid, sender) in senders.iter_mut() {
                    if self_uid != *uid {
                        sender.send_message(&message);
                    }
                }
            }
        });
    }
}

impl ScribbleGroup {
    pub fn new(id: GroupId, name: String) -> Self {
        Self { id, name, senders: Arc::new(Mutex::new(HashMap::new())) }
    }
}