1
1
/* Defines the content of a game event. */
2
2
3
+ use crate :: { elements:: WordType , messages:: game:: Team , player:: role:: CodeMafiaRoleTitle } ;
3
4
use serde:: Serialize ;
4
- use crate :: { messages:: game:: Team , player:: role:: CodeMafiaRoleTitle , elements:: WordType } ;
5
5
6
6
#[ derive( Debug , Clone , Serialize ) ]
7
7
pub enum GameEvents {
8
8
InSufficientPlayers ,
9
9
Board ( OpaqueBoard ) ,
10
10
RoleUpdated ( CodeMafiaRoleTitle ) ,
11
- WordHint ( Team /* The team that is giving a word hint */ , String /* The word hint */ ) ,
12
- WordClicked ( u8 , /* The index of the word that was clicked */ WordType /* The transparent word type */ ) ,
13
- WordSuggested ( String /* The suggestor player name */ , u8 /* The word that was suggested */ ) ,
11
+ WordHint (
12
+ Team , /* The team that is giving a word hint */
13
+ String , /* The word hint */
14
+ ) ,
15
+ WordClicked (
16
+ u8 ,
17
+ /* The index of the word that was clicked */
18
+ WordType , /* The transparent word type */
19
+ ) ,
20
+ WordSuggested (
21
+ String , /* The suggestor player name */
22
+ u8 , /* The word that was suggested */
23
+ ) ,
14
24
Turn ( TeamTurn ) ,
15
- GameEnded ( GameOutcome )
25
+ GameEnded ( GameOutcome ) ,
16
26
}
17
27
18
28
#[ derive( Debug , Clone , Serialize ) ]
19
29
pub struct OpaqueBoard {
20
- pub words : Vec < OpaqueWord >
30
+ pub words : Vec < OpaqueWord > ,
21
31
}
22
32
23
33
#[ derive( Debug , Clone , Serialize ) ]
24
34
pub struct OpaqueWord {
25
- pub text : String ,
26
- pub color : Option < WordType >
35
+ pub text : String ,
36
+ pub color : Option < WordType > ,
27
37
}
28
38
29
39
#[ derive( Debug , Clone , Serialize ) ]
30
40
pub struct TeamTurn {
31
41
pub team : Team ,
32
- pub coordinator : String /* The PlayerId of the coordinator. */
42
+ pub coordinator : String , /* The PlayerId of the coordinator. */
33
43
}
34
44
35
45
#[ derive( Debug , Clone , Serialize ) ]
36
46
pub struct GameOutcome {
37
47
pub winner : Team ,
38
- pub condition : WinCondition
48
+ pub condition : WinCondition ,
39
49
}
40
50
41
51
#[ derive( Debug , Clone , Serialize ) ]
42
52
pub enum WinCondition {
43
53
BlackWordSelected ,
44
54
WordsCompleted ,
45
- UndercoverOperativeGuessed
55
+ UndercoverOperativeGuessed ,
46
56
}
47
57
48
58
// Create a convenience aliasing type
49
- pub type RoomCode = String ;
59
+ pub type RoomCode = String ;
0 commit comments