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
use serde::{Deserialize, Serialize};

#[derive(Default, Clone, Debug, Serialize)]
pub struct GetQuery;

pub type GetRequest = crate::model::Request<GetQuery>;

impl GetRequest {
    pub fn new() -> Self {
        Self {
            path: "/api/account/preferences".to_string(),
            ..Default::default()
        }
    }
}

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct UserPreferences {
    pub dark: bool,
    pub transp: bool,
    pub bg_img: String,
    pub is3d: bool,
    pub theme: Theme,
    pub piece_set: PieceSet,
    pub theme3d: Theme3D,
    pub piece_set3d: PieceSet3D,
    pub sound_set: SoundSet,
    pub blindfold: u32,
    pub auto_queen: u32,
    pub auto_threefold: u32,
    pub takeback: u32,
    pub moretime: u32,
    pub clock_tenths: u32,
    pub clock_bar: bool,
    pub clock_sound: bool,
    pub premove: bool,
    pub animation: u32,
    pub captured: bool,
    pub follow: bool,
    pub highlight: bool,
    pub destination: bool,
    pub coords: u32,
    pub replay: u32,
    pub challenge: u32,
    pub message: u32,
    pub coord_color: u32,
    pub submit_move: u32,
    pub confirm_resign: u32,
    pub insight_share: u32,
    pub keybord_move: u32,
    pub zen: u32,
    pub move_event: u32,
    pub rook_castle: u32,
}

#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Serialize)]
#[serde(rename_all = "kebab-case")]
pub enum Theme {
    Blue,
    Blue2,
    Blue3,
    BlueMarble,
    Canvas,
    Wood,
    Wood2,
    Wood3,
    Wood4,
    Maple,
    Maple2,
    Brown,
    Leather,
    Green,
    Marble,
    GreenPlastic,
    Grey,
    Metal,
    Olive,
    Newspaper,
    Purple,
    PurpleDiag,
    Pink,
    Ic,
}

#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Serialize)]
#[serde(rename_all = "lowercase")]
pub enum PieceSet {
    Cburnett,
    Merida,
    Alpha,
    Pirouetti,
    Chessnut,
    Chess7,
    Reillycraig,
    Companion,
    Riohacha,
    Kosal,
    Leipzig,
    Fantasy,
    Spatial,
    California,
    Pixel,
    Maestro,
    Fresca,
    Cardinal,
    Gioco,
    Tatiana,
    Staunty,
    Governor,
    Dubrovny,
    Icpieces,
    Shapes,
    Letter,
}

#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Serialize)]
pub enum Theme3D {
    #[serde(rename = "Black-White-Aluminium")]
    BlackWhiteAluminium,
    #[serde(rename = "Brushed-Aluminium")]
    BrushedAluminium,
    #[serde(rename = "China-Blue")]
    ChinaBlue,
    #[serde(rename = "China-Green")]
    ChinaGreen,
    #[serde(rename = "China-Grey")]
    ChinaGrey,
    #[serde(rename = "China-Scarlet")]
    ChinaScarlet,
    #[serde(rename = "Classic-Blue")]
    ClassicBlue,
    #[serde(rename = "Gold-Silver")]
    GoldSilver,
    #[serde(rename = "Light-Wood")]
    LightWood,
    #[serde(rename = "Power-Coated")]
    PowerCoated,
    Rosewood,
    Marble,
    Wax,
    Jade,
    Woodi,
}

#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Serialize)]
pub enum PieceSet3D {
    Basic,
    Wood,
    Metal,
    RedVBlue,
    ModernJade,
    ModernWood,
    Glass,
    Trimmed,
    Experimental,
    Staunton,
    CubesAndPi,
}

#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Serialize)]
#[serde(rename_all = "lowercase")]
pub enum SoundSet {
    Silent,
    Standard,
    Piano,
    Nes,
    Sfx,
    Futuristic,
    Robot,
    Music,
    Speech,
}