Skip to content

Commit 95068f5

Browse files
committed
Format all code
1 parent 8cd01ac commit 95068f5

22 files changed

+125
-89
lines changed

.pre-commit-config.yaml

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
repos:
22
- repo: local
33
hooks:
4-
- id: fmt-check-and-lint
5-
name: fmt
6-
description: Format files with cargo fmt.
4+
- id: codemafia
5+
name: codemafia-fmt-check
6+
description: Format files with cargo fmt and perform a cargo check.
77
entry: bash -c 'cd codemafia && cargo fmt && cargo check'
88
language: system
99
pass_filenames: false
10+
- id: shared
11+
name: shared-fmt-check
12+
description: Format files with cargo fmt and perform a cargo check.
13+
entry: bash -c 'cd shared && cargo fmt && cargo check'
14+
language: system
15+
pass_filenames: false
16+
- id: app
17+
name: app-fmt-check
18+
description: Format files with cargo fmt and perform a cargo check.
19+
entry: bash -c 'cd app && cargo fmt && cargo check'
20+
language: system
21+
pass_filenames: false
1022

app/src/app.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub enum Route {
1111
Landing,
1212
#[not_found]
1313
#[at("/404")]
14-
LandingDefault
14+
LandingDefault,
1515
}
1616

1717
fn switch_app(routes: Route) -> Html {
@@ -32,4 +32,4 @@ pub fn app() -> Html {
3232
<Switch<Route> render={switch_app} />
3333
</BrowserRouter>
3434
}
35-
}
35+
}

app/src/components/layoutitem.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ pub fn layout_item(props: &Props) -> Html {
1212
{ for props.children.iter() }
1313
</div>
1414
}
15-
}
15+
}

app/src/components/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/* This module contains the app's components. */
22

3-
pub mod layoutitem;
3+
pub mod layoutitem;

app/src/config.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
pub enum AppEnvironment {
44
Local,
5-
Prod
5+
Prod,
66
}
77

88
pub struct AppConfig {
99
api_url: String,
10-
env: AppEnvironment
11-
}
10+
env: AppEnvironment,
11+
}

app/src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ use app::App;
44
use yew::prelude::*;
55

66
/* Declare modules. */
7-
mod pages;
87
mod components;
8+
mod pages;
99

1010
fn main() {
1111
yew::Renderer::<App>::new().render();
12-
}
12+
}

app/src/pages/landing.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use yew::prelude::*;
21
use patternfly_yew::*;
2+
use yew::prelude::*;
33

44
use crate::components::layoutitem::LayoutItem;
55
//use codemafia::events::game::RoomCode;

app/src/pages/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/* This module contains the app's pages. */
22

33
pub mod landing;
4-
pub mod room;
4+
pub mod room;

app/src/pages/room.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ pub struct Props {
88
#[function_component]
99
pub fn Room(props: &Props) -> Html {
1010
html! { "Hello world" }
11-
}
11+
}

shared/src/elements/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ pub const NUM_BLACK_WORDS: usize = 1;
99
pub enum WordType {
1010
Black,
1111
Normal,
12-
Blue,
13-
Red
12+
Blue,
13+
Red,
1414
}
1515

1616
#[derive(Clone, Debug, Serialize)]
1717
pub struct Word {
1818
pub text: String,
1919
pub word_type: WordType,
20-
pub clicked: bool
20+
pub clicked: bool,
2121
}
2222

2323
#[derive(Debug)]
2424
pub struct Board {
25-
pub words: Vec<Word>
25+
pub words: Vec<Word>,
2626
}
2727

2828
/* The complete definition of a codenames game, accessible to callers, such as the gameserver. */
2929
#[derive(Debug)]
3030
pub struct Game {
31-
pub board: Board
31+
pub board: Board,
3232
}

shared/src/events/chat.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ use serde::Serialize;
44

55
#[derive(Debug, Clone, Serialize)]
66
pub enum ChatEvents {
7-
ChatMessageEvent(ChatMessageEvent)
7+
ChatMessageEvent(ChatMessageEvent),
88
}
99

1010
#[derive(Debug, Clone, Serialize)]
1111
pub struct ChatMessageEvent {
1212
pub sender: String,
1313
pub text: String,
14-
}
14+
}

shared/src/events/game.rs

+22-12
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,59 @@
11
/* Defines the content of a game event. */
22

3+
use crate::{elements::WordType, messages::game::Team, player::role::CodeMafiaRoleTitle};
34
use serde::Serialize;
4-
use crate::{messages::game::Team, player::role::CodeMafiaRoleTitle, elements::WordType};
55

66
#[derive(Debug, Clone, Serialize)]
77
pub enum GameEvents {
88
InSufficientPlayers,
99
Board(OpaqueBoard),
1010
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+
),
1424
Turn(TeamTurn),
15-
GameEnded(GameOutcome)
25+
GameEnded(GameOutcome),
1626
}
1727

1828
#[derive(Debug, Clone, Serialize)]
1929
pub struct OpaqueBoard {
20-
pub words: Vec<OpaqueWord>
30+
pub words: Vec<OpaqueWord>,
2131
}
2232

2333
#[derive(Debug, Clone, Serialize)]
2434
pub struct OpaqueWord {
25-
pub text: String,
26-
pub color: Option<WordType>
35+
pub text: String,
36+
pub color: Option<WordType>,
2737
}
2838

2939
#[derive(Debug, Clone, Serialize)]
3040
pub struct TeamTurn {
3141
pub team: Team,
32-
pub coordinator: String /* The PlayerId of the coordinator. */
42+
pub coordinator: String, /* The PlayerId of the coordinator. */
3343
}
3444

3545
#[derive(Debug, Clone, Serialize)]
3646
pub struct GameOutcome {
3747
pub winner: Team,
38-
pub condition: WinCondition
48+
pub condition: WinCondition,
3949
}
4050

4151
#[derive(Debug, Clone, Serialize)]
4252
pub enum WinCondition {
4353
BlackWordSelected,
4454
WordsCompleted,
45-
UndercoverOperativeGuessed
55+
UndercoverOperativeGuessed,
4656
}
4757

4858
// Create a convenience aliasing type
49-
pub type RoomCode = String;
59+
pub type RoomCode = String;

shared/src/events/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
/*
1+
/*
22
Event
3-
3+
44
Represents an event that is distributed to one or more players that are in the game.
55
*/
66

7+
use self::{chat::ChatEvents, game::GameEvents, player::PlayerEvents, room::RoomEvents};
78
use serde::Serialize;
8-
use self::{chat::ChatEvents, game::GameEvents, room::RoomEvents, player::PlayerEvents};
99

1010
pub mod chat;
1111
pub mod game;
12-
pub mod room;
1312
pub mod player;
13+
pub mod room;
1414

1515
#[derive(Debug, Clone, Serialize)]
1616
pub enum EventContent {
1717
Chat(ChatEvents),
1818
Game(GameEvents),
1919
Room(RoomEvents),
20-
Player(PlayerEvents)
20+
Player(PlayerEvents),
2121
}

shared/src/events/player.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ use serde::Serialize;
55
#[derive(Debug, Clone, Serialize)]
66
pub enum PlayerEvents {
77
/* Sent to a new player connecting to the game to allow for seamless reconnects. */
8-
SetPlayerIdCookie(String)
9-
}
8+
SetPlayerIdCookie(String),
9+
}

shared/src/events/room.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ use serde::Serialize;
66
#[derive(Debug, Clone, Serialize)]
77
pub enum RoomEvents {
88
RoomState(RoomState),
9-
GameStarted
9+
GameStarted,
1010
}
1111

1212
#[derive(Debug, Clone, Serialize)]
1313
pub struct PlayerOnTeam {
1414
pub name: String,
1515
pub id: String,
1616
pub team: Team,
17-
pub is_spymaster: bool
17+
pub is_spymaster: bool,
1818
}
1919

2020
#[derive(Debug, Clone, Serialize)]
2121
pub struct You {
2222
pub name: Option<String>, /* player_name */
23-
pub id: String /* player_id as str */
23+
pub id: String, /* player_id as str */
2424
}
2525

2626
#[derive(Debug, Clone, Serialize)]

shared/src/lib.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
This crate contains shared interfaces, definitions, and types used across the stack, thus
3-
enabling easy serialization and deserialization of common structures across the frontend
4-
and backend.
5-
*/
6-
pub mod messages;
2+
This crate contains shared interfaces, definitions, and types used across the stack, thus
3+
enabling easy serialization and deserialization of common structures across the frontend
4+
and backend.
5+
*/
6+
pub mod elements;
77
pub mod events;
8+
pub mod messages;
89
pub mod player;
9-
pub mod elements;

shared/src/messages/chat.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ use serde::Deserialize;
55
#[derive(Debug, Deserialize)]
66
pub struct ChatMessage {
77
pub text: String,
8-
pub sender: String
8+
pub sender: String,
99
}
10-

shared/src/messages/game.rs

+19-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* Defines a game message and its different actions. */
22

3+
use serde::{Deserialize, Serialize};
34
use std::fmt;
4-
use serde::{Serialize, Deserialize};
55

66
#[derive(Debug, Deserialize)]
77
pub struct GameMessage {
@@ -10,20 +10,32 @@ pub struct GameMessage {
1010

1111
#[derive(Debug, Deserialize)]
1212
pub enum GameMessageAction {
13-
WordSuggested(String, /* The ID of the player suggesting the word. */ u8 /* The word that was suggested by an ally. */),
14-
WordClicked(String, /* The ID of the player suggesting the word. */ u8 /* The index of the word that was clicked */),
15-
WordHint(String, /* The ID of the player suggesting the word. */ String /* The word hint provided by the Spymaster at the start of their turn. */),
16-
EndTurn /* Done by the coodinator for the current turn. */,
13+
WordSuggested(
14+
String,
15+
/* The ID of the player suggesting the word. */
16+
u8, /* The word that was suggested by an ally. */
17+
),
18+
WordClicked(
19+
String,
20+
/* The ID of the player suggesting the word. */
21+
u8, /* The index of the word that was clicked */
22+
),
23+
WordHint(
24+
String,
25+
/* The ID of the player suggesting the word. */
26+
String, /* The word hint provided by the Spymaster at the start of their turn. */
27+
),
28+
EndTurn, /* Done by the coodinator for the current turn. */
1729
}
1830

1931
#[derive(Debug, Eq, PartialEq, Clone, Serialize, Deserialize)]
2032
pub enum Team {
2133
Blue,
22-
Red
34+
Red,
2335
}
2436

2537
impl fmt::Display for Team {
2638
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
2739
write!(f, "{:?}", self)
2840
}
29-
}
41+
}

shared/src/messages/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
/*
1+
/*
22
Messages
3-
3+
44
Defines the messages that are passed to the room as valid input from any connected player.
55
*/
66

7+
use self::{chat::ChatMessage, game::GameMessage, room::RoomMessage};
78
use serde::Deserialize;
8-
use self::{chat::ChatMessage, room::RoomMessage, game::GameMessage};
99

1010
pub mod chat;
11-
pub mod room;
1211
pub mod game;
12+
pub mod room;
1313

1414
#[derive(Debug, Deserialize)]
1515
pub enum Message {
1616
Chat(ChatMessage),
1717
Room(RoomMessage),
18-
Game(GameMessage)
18+
Game(GameMessage),
1919
}

0 commit comments

Comments
 (0)