-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsgs.go
84 lines (71 loc) · 2.05 KB
/
msgs.go
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
package web
import (
"encoding/json"
"github.com/bcspragu/Codenames/codenames"
)
type Player struct {
PlayerID codenames.PlayerID `json:"player_id"`
Name string `json:"name"`
Team codenames.Team `json:"team"`
Role codenames.Role `json:"role"`
}
type jsonGameStart GameStart
type GameStart struct {
Game *codenames.Game `json:"game"`
Players []*Player `json:"players"`
}
func (gs *GameStart) MarshalJSON() ([]byte, error) {
return json.Marshal(struct {
jsonGameStart
Action string `json:"action"`
}{jsonGameStart(*gs), "GAME_START"})
}
type jsonClueGiven ClueGiven
type ClueGiven struct {
Clue *codenames.Clue `json:"clue"`
Team codenames.Team `json:"team"`
Game *codenames.Game `json:"game"`
}
func (cg *ClueGiven) MarshalJSON() ([]byte, error) {
return json.Marshal(struct {
jsonClueGiven
Action string `json:"action"`
}{jsonClueGiven(*cg), "CLUE_GIVEN"})
}
type jsonPlayerVote PlayerVote
type PlayerVote struct {
PlayerID codenames.PlayerID `json:"player_id"`
Guess string `json:"guess"`
Confirmed bool `json:"confirmed"`
}
func (pv *PlayerVote) MarshalJSON() ([]byte, error) {
return json.Marshal(struct {
jsonPlayerVote
Action string `json:"action"`
}{jsonPlayerVote(*pv), "PLAYER_VOTE"})
}
type jsonGuessGiven GuessGiven
type GuessGiven struct {
Guess string `json:"guess"`
Team codenames.Team `json:"team"`
CanKeepGuessing bool `json:"can_keep_guessing"`
RevealedCard *codenames.Card `json:"card"`
Game *codenames.Game `json:"game"`
}
func (gg *GuessGiven) MarshalJSON() ([]byte, error) {
return json.Marshal(struct {
jsonGuessGiven
Action string `json:"action"`
}{jsonGuessGiven(*gg), "GUESS_GIVEN"})
}
type jsonGameEnd GameEnd
type GameEnd struct {
WinningTeam codenames.Team `json:"winning_team"`
Game *codenames.Game `json:"game"`
}
func (ge *GameEnd) MarshalJSON() ([]byte, error) {
return json.Marshal(struct {
jsonGameEnd
Action string `json:"action"`
}{jsonGameEnd(*ge), "GAME_END"})
}