-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathprotocol.rs
More file actions
161 lines (147 loc) · 4.01 KB
/
protocol.rs
File metadata and controls
161 lines (147 loc) · 4.01 KB
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
// use serde::ser::{Serialize, SerializeMap, SerializeSeq, Serializer};
use failure::Error;
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
use minefield_core::tiles::Tile;
use minefield_core::yaku::Yaku;
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
#[serde(tag = "type", content = "content")]
#[serde(rename_all = "snake_case")]
pub enum Msg {
// client messages
GetGames,
NewGame(String),
Rejoin(String),
Join(String, String),
CancelNewGame,
Hand(Vec<Tile>),
Discard(Tile),
// server messages
Games(Vec<Game>),
Room {
you: usize,
nicks: [String; 2],
key: String,
},
StartMove {
#[serde(rename = "type")]
type_: MoveType,
time_limit: usize,
},
EndMove,
PhaseOne {
tiles: Vec<Tile>,
dora_ind: Tile,
you: usize,
east: usize,
},
WaitForPhaseTwo,
PhaseTwo,
Discarded {
player: usize,
tile: Tile,
},
Ron {
player: usize,
hand: Vec<Tile>,
tile: Tile,
limit: usize,
yaku: Vec<Yaku>,
points: usize,
},
Draw,
Abort {
description: String,
},
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum MoveType {
Hand,
Discard,
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
pub struct Game {
#[serde(rename = "type")]
pub type_: String,
pub nick: String,
pub key: String,
}
pub fn serialize_msg(msg: &Msg) -> Result<String, Error> {
let value = serde_json::to_value(&msg)?;
let type_str: String = serde_json::from_value(value["type"].clone())?;
let content = value["content"].clone();
let args_arr = match content {
Value::Null => json!([]),
Value::Array(values) if values.len() > 1 && type_str != "hand" => Value::Array(values),
_ => json!([content]),
};
let new_value = json!({
"type": type_str,
"args": args_arr,
});
let result = serde_json::to_string(&new_value)?;
Ok(result)
}
pub fn deserialize_msg(data: &str) -> Result<Msg, Error> {
let value: serde_json::Value = serde_json::from_str(data)?;
let type_str: String = serde_json::from_value(value["type"].clone())?;
let args: Vec<Value> = serde_json::from_value(value["args"].clone())?;
let new_value = match args.len() {
0 => json!({
"type": type_str,
}),
1 => {
if type_str == "hand" {
json!({
"type": type_str,
"content": args[0]["hand"]
})
} else {
match &args[0] {
Value::Object(map) if map.len() == 0 => json!({
"type": type_str,
}),
_ => json!({
"type": type_str,
"content": args[0]
}),
}
}
}
_ => json!({
"type": type_str,
"content": Value::Array(args),
}),
};
let result = serde_json::from_value(new_value)?;
Ok(result)
}
#[cfg(test)]
mod test {
use super::*;
fn check(msg: Msg, text: &str) {
assert_eq!(serialize_msg(&msg).unwrap(), text);
assert_eq!(deserialize_msg(text).unwrap(), msg);
}
#[test]
fn test_serialize_msg() {
check(Msg::GetGames, r#"{"args":[],"type":"get_games"}"#);
check(
Msg::Games(vec![Game {
type_: String::from("player"),
nick: String::from("bot"),
key: String::from("xxx"),
}]),
r#"{"args":[[{"key":"xxx","nick":"bot","type":"player"}]],"type":"games"}"#,
);
check(
Msg::Join(String::from("bot"), String::from("xxx")),
r#"{"args":["bot","xxx"],"type":"join"}"#,
);
check(
Msg::Discard(Tile::X1),
r#"{"args":["X1"],"type":"discard"}"#,
)
}
}