1
use bonsaidb::core::{
2
    document::{CollectionDocument, Emit},
3
    schema::{Collection, CollectionViewSchema, Schema, View, ViewMapResult},
4
};
5
use minority_game_shared::Choice;
6
use serde::{Deserialize, Serialize};
7

            
8
#[derive(Schema, Debug)]
9
#[schema(authority = "minority-game", name = "game", collections = [Player])]
10
pub enum GameSchema {}
11

            
12
#[derive(Collection, Default, Debug, Serialize, Deserialize, Clone)]
13
#[collection(authority = "minority-game", name = "player", views = [PlayerByScore])]
14
pub struct Player {
15
    pub choice: Option<Choice>,
16
    #[serde(default)]
17
    pub tell: Option<Choice>,
18
    pub stats: PlayerStats,
19
}
20

            
21
#[derive(Debug, Serialize, Deserialize, Clone)]
22
pub struct PlayerStats {
23
    pub happiness: f32,
24
    pub times_went_out: u32,
25
    pub times_stayed_in: u32,
26
    #[serde(default)]
27
    pub times_lied: u32,
28
    #[serde(default)]
29
    pub times_told_truth: u32,
30
}
31

            
32
impl Default for PlayerStats {
33
    fn default() -> Self {
34
        Self {
35
            happiness: 0.5,
36
            times_went_out: 0,
37
            times_stayed_in: 0,
38
            times_lied: 0,
39
            times_told_truth: 0,
40
        }
41
    }
42
}
43

            
44
impl PlayerStats {
45
    pub fn score(&self) -> u32 {
46
        let total_games = self.times_stayed_in + self.times_went_out;
47
        (self.happiness * total_games as f32) as u32
48
    }
49
}
50

            
51
#[derive(View, Debug, Clone)]
52
#[view(collection = Player, name = "by-score", key = u32, value = PlayerStats)]
53
pub struct PlayerByScore;
54

            
55
impl CollectionViewSchema for PlayerByScore {
56
    type View = Self;
57

            
58
    fn version(&self) -> u64 {
59
        2
60
    }
61

            
62
    fn map(
63
        &self,
64
        player: CollectionDocument<<Self::View as View>::Collection>,
65
    ) -> ViewMapResult<Self::View> {
66
        player
67
            .header
68
            .emit_key_and_value(player.contents.stats.score(), player.contents.stats)
69
    }
70
}