1
1
use bonsaidb::core::{
2
    api::{Api, Infallible},
3
    schema::{ApiName, Qualified},
4
};
5
use serde::{Deserialize, Serialize};
6

            
7
/// Set the current choice.
8
#[derive(Serialize, Deserialize, Debug)]
9
pub struct SetChoice(pub Choice);
10

            
11
impl Api for SetChoice {
12
    type Response = ChoiceSet;
13

            
14
    type Error = Infallible;
15

            
16
    fn name() -> ApiName {
17
        ApiName::private("set-choice")
18
    }
19
}
20

            
21
/// Set the current tell.
22
#[derive(Serialize, Deserialize, Debug)]
23
pub struct SetTell(pub Choice);
24

            
25
impl Api for SetTell {
26
    type Response = ChoiceSet;
27

            
28
    type Error = Infallible;
29

            
30
    fn name() -> ApiName {
31
        ApiName::private("set-tell")
32
    }
33
}
34

            
35
/// Our choice has been set.
36
#[derive(Serialize, Deserialize, Clone, Debug)]
37
pub struct ChoiceSet(pub Choice);
38

            
39
/// A player's choice in the game.
40
#[derive(Serialize, Deserialize, Debug, Clone, Copy, Eq, PartialEq)]
41
pub enum Choice {
42
    GoOut,
43
    StayIn,
44
}
45

            
46
/// The server has set up our player record.
47
#[derive(Serialize, Deserialize, Clone, Debug)]
48
pub struct Welcome {
49
    pub player_id: u64,
50
    pub happiness: f32,
51
}
52

            
53
impl Api for Welcome {
54
    type Response = Self;
55

            
56
    type Error = Infallible;
57

            
58
    fn name() -> ApiName {
59
        ApiName::private("welcome")
60
    }
61
}
62

            
63
/// A round is pending.
64
#[derive(Serialize, Deserialize, Clone, Debug)]
65
pub struct RoundPending {
66
    pub seconds_remaining: u32,
67
    pub number_of_players: u32,
68
    pub current_rank: u32,
69
    pub number_of_tells: u32,
70
    pub tells_going_out: u32,
71
}
72

            
73
impl Api for RoundPending {
74
    type Response = Self;
75

            
76
    type Error = Infallible;
77

            
78
    fn name() -> ApiName {
79
        ApiName::private("round-pending")
80
    }
81
}
82

            
83
/// A round has finished.
84
#[derive(Serialize, Deserialize, Clone, Debug)]
85
pub struct RoundComplete {
86
    /// The player's happiness has gone up this round.
87
    pub won: bool,
88
    pub happiness: f32,
89
    pub current_rank: u32,
90
    pub number_of_players: u32,
91
    pub number_of_liars: u32,
92
    pub number_of_tells: u32,
93
}
94

            
95
impl Api for RoundComplete {
96
    type Response = Self;
97

            
98
    type Error = Infallible;
99

            
100
    fn name() -> ApiName {
101
        ApiName::private("round-complete")
102
    }
103
}
104

            
105
/// Converts a `percent` to its nearest whole number.
106
pub fn whole_percent(percent: f32) -> u32 {
107
    (percent * 100.).round() as u32
108
}