DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 60c55b1b3cdc7a6116de996cb83096dd31681688 deck-builder/client/src/plugins/game/ui/mod.rs -rw-r--r-- 11.5 KiB
60c55b1bJonni Liljamo feat(client): load cards from a yaml file 1 year, 4 months ago
                                                                                
443c9b0c skye
443c9b0c skye
443c9b0c skye
443c9b0c skye
48cb2824 skye
443c9b0c skye
443c9b0c skye
1809259d skye
48cb2824 skye
443c9b0c skye
48cb2824 skye
48cb2824 skye
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*
 * This file is part of laurelin_client
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use bevy::prelude::*;
use bevy_egui::{egui, EguiContexts};

use crate::{
    api::game::{Action, Command, Game},
    game_status::PlayerState,
    plugins::GameActionCreateCallEvent,
    AppState, Global, CardManifest,
};

use super::{GameData, RefreshGameEvent};

pub mod log;
mod state_button;

pub struct GameUIPlugin;

impl Plugin for GameUIPlugin {
    fn build(&self, app: &mut App) {
        app.add_plugin(log::LogPlugin)
            .add_plugin(state_button::StateButtonPlugin)
            .add_system(dev_details_ui.run_if(in_state(AppState::InGame)))
            .add_system(setup_details.in_schedule(OnEnter(AppState::InGame)))
            .add_systems((
                update_game_state_text,
                update_currency_text,
                update_deck_text,
                update_discard_text,
                update_plays_text,
                update_buys_text,
                update_vp_text,
            ));
    }
}

#[derive(Component)]
struct GameStateText;

#[derive(Component)]
struct CurrencyText;

#[derive(Component)]
struct DeckText;

#[derive(Component)]
struct DiscardText;

#[derive(Component)]
struct PlaysText;

#[derive(Component)]
struct BuysText;

#[derive(Component)]
struct VPText;

fn setup_details(mut commands: Commands, asset_server: Res<AssetServer>) {
    let font = asset_server.load("fonts/FiraMono-Bold.ttf");
    let font_size = 40.;
    let text_style = TextStyle {
        font,
        font_size,
        color: Color::WHITE,
    };

    // game state
    commands.spawn((
        TextBundle::from_sections([
            TextSection::new("State: ", text_style.clone()),
            TextSection::from_style(text_style.clone()),
        ])
        .with_text_alignment(TextAlignment::Center)
        .with_style(Style {
            position_type: PositionType::Absolute,
            position: UiRect {
                top: Val::Px(20.),
                left: Val::Px(20.),
                ..Default::default()
            },
            ..Default::default()
        }),
        GameStateText,
    ));

    // plays
    commands.spawn((
        TextBundle::from_sections([
            TextSection::new("Plays: ", text_style.clone()),
            TextSection::from_style(text_style.clone()),
        ])
        .with_text_alignment(TextAlignment::Center)
        .with_style(Style {
            position_type: PositionType::Absolute,
            position: UiRect {
                bottom: Val::Px(220.),
                left: Val::Px(20.),
                ..Default::default()
            },
            ..Default::default()
        }),
        PlaysText,
    ));

    // buys
    commands.spawn((
        TextBundle::from_sections([
            TextSection::new("Buys: ", text_style.clone()),
            TextSection::from_style(text_style.clone()),
        ])
        .with_text_alignment(TextAlignment::Center)
        .with_style(Style {
            position_type: PositionType::Absolute,
            position: UiRect {
                bottom: Val::Px(180.),
                left: Val::Px(20.),
                ..Default::default()
            },
            ..Default::default()
        }),
        BuysText,
    ));

    // currency
    commands.spawn((
        TextBundle::from_sections([
            TextSection::new("Currency: ", text_style.clone()),
            TextSection::from_style(TextStyle {
                color: Color::GOLD,
                ..text_style.clone()
            }),
        ])
        .with_text_alignment(TextAlignment::Center)
        .with_style(Style {
            position_type: PositionType::Absolute,
            position: UiRect {
                bottom: Val::Px(140.),
                left: Val::Px(20.),
                ..Default::default()
            },
            ..Default::default()
        }),
        CurrencyText,
    ));

    // deck
    commands.spawn((
        TextBundle::from_sections([
            TextSection::new("Deck: ", text_style.clone()),
            TextSection::from_style(text_style.clone()),
        ])
        .with_text_alignment(TextAlignment::Center)
        .with_style(Style {
            position_type: PositionType::Absolute,
            position: UiRect {
                bottom: Val::Px(100.),
                left: Val::Px(20.),
                ..Default::default()
            },
            ..Default::default()
        }),
        DeckText,
    ));

    // discard
    commands.spawn((
        TextBundle::from_sections([
            TextSection::new("Discard: ", text_style.clone()),
            TextSection::from_style(text_style.clone()),
        ])
        .with_text_alignment(TextAlignment::Center)
        .with_style(Style {
            position_type: PositionType::Absolute,
            position: UiRect {
                bottom: Val::Px(60.),
                left: Val::Px(20.),
                ..Default::default()
            },
            ..Default::default()
        }),
        DiscardText,
    ));

    // vp
    commands.spawn((
        TextBundle::from_sections([
            TextSection::new("VP: ", text_style.clone()),
            TextSection::from_style(text_style),
        ])
        .with_text_alignment(TextAlignment::Center)
        .with_style(Style {
            position_type: PositionType::Absolute,
            position: UiRect {
                bottom: Val::Px(20.),
                left: Val::Px(20.),
                ..Default::default()
            },
            ..Default::default()
        }),
        VPText,
    ));
}

fn update_game_state_text(
    mut text_query: Query<&mut Text, With<GameStateText>>,
    game_data: Res<GameData>,
) {
    for mut text in &mut text_query {
        let Some(status) = &game_data.game_status else {
            return;
        };
        let Some(player) = status.players.values().find(|p| p.state != PlayerState::Idle) else {
            return;
        };
        text.sections[1].value = format!("{} - {:?}", player.display_name, player.state);
    }
}

fn update_currency_text(
    mut text_query: Query<&mut Text, With<CurrencyText>>,
    game_data: Res<GameData>,
    global: Res<Global>,
) {
    for mut text in &mut text_query {
        let Some(status) = &game_data.game_status else {
            return;
        };
        let Some(player) = status.players.get(&global.user.as_ref().unwrap().id) else {
            return;
        };
        text.sections[1].value = player.currency.to_string();
    }
}

fn update_deck_text(
    mut text_query: Query<&mut Text, With<DeckText>>,
    game_data: Res<GameData>,
    global: Res<Global>,
) {
    for mut text in &mut text_query {
        let Some(status) = &game_data.game_status else {
            return;
        };
        let Some(player) = status.players.get(&global.user.as_ref().unwrap().id) else {
            return;
        };
        text.sections[1].value = player.deck.len().to_string();
    }
}

fn update_discard_text(
    mut text_query: Query<&mut Text, With<DiscardText>>,
    game_data: Res<GameData>,
    global: Res<Global>,
) {
    for mut text in &mut text_query {
        let Some(status) = &game_data.game_status else {
            return;
        };
        let Some(player) = status.players.get(&global.user.as_ref().unwrap().id) else {
            return;
        };
        text.sections[1].value = player.discard.len().to_string();
    }
}

fn update_plays_text(
    mut text_query: Query<&mut Text, With<PlaysText>>,
    game_data: Res<GameData>,
    global: Res<Global>,
) {
    for mut text in &mut text_query {
        let Some(status) = &game_data.game_status else {
            return;
        };
        let Some(player) = status.players.get(&global.user.as_ref().unwrap().id) else {
            return;
        };

        if player.plays == 0 {
            text.sections[1].style.color = Color::RED;
        } else {
            text.sections[1].style.color = Color::GREEN;
        }

        text.sections[1].value = player.plays.to_string();
    }
}

fn update_buys_text(
    mut text_query: Query<&mut Text, With<BuysText>>,
    game_data: Res<GameData>,
    global: Res<Global>,
) {
    for mut text in &mut text_query {
        let Some(status) = &game_data.game_status else {
            return;
        };
        let Some(player) = status.players.get(&global.user.as_ref().unwrap().id) else {
            return;
        };

        if player.buys == 0 {
            text.sections[1].style.color = Color::RED;
        } else {
            text.sections[1].style.color = Color::GREEN;
        }

        text.sections[1].value = player.buys.to_string();
    }
}

fn update_vp_text(
    mut text_query: Query<&mut Text, With<VPText>>,
    game_data: Res<GameData>,
    global: Res<Global>,
) {
    for mut text in &mut text_query {
        let Some(status) = &game_data.game_status else {
            return;
        };
        let Some(player) = status.players.get(&global.user.as_ref().unwrap().id) else {
            return;
        };
        text.sections[1].value = player.vp.to_string();
    }
}

pub fn dev_details_ui(
    mut contexts: EguiContexts,
    global: Res<Global>,
    game_data: Res<GameData>,
    card_manifest: Res<CardManifest>,
    mut create_action_ev_w: EventWriter<GameActionCreateCallEvent>,
    mut rg_ev_w: EventWriter<RefreshGameEvent>,
) {
    egui::Window::new("Game Details")
        .title_bar(false)
        .show(contexts.ctx_mut(), |ui| {
            let Some(game) = &game_data.game else {
                // early return if game is None
                return;
            };
            let Some(status) = &game_data.game_status else {
                // early return if game_status is None
                return;
            };

            ui.add_enabled_ui(!game_data.locked, |ui| {
                #[allow(clippy::collapsible_if)]
                if status.actions.is_empty() && game.host_id == global.user.as_ref().unwrap().id {
                    if ui.button("Init Game").clicked() {
                        // NOTE/FIXME: hardcoded game init
                        hardcoded_init(game, &mut create_action_ev_w, &card_manifest);
                        rg_ev_w.send(RefreshGameEvent);
                    }
                }

                if ui.button("Force Refresh").clicked() {
                    rg_ev_w.send(RefreshGameEvent);
                }
            });

            ui.separator();

            egui::CollapsingHeader::new("Game")
                .default_open(true)
                .show(ui, |ui| {
                    ui.label(format!("Host: {}", game.host.as_ref().unwrap().username));
                    ui.label(format!("Guest: {}", game.guest.as_ref().unwrap().username));

                    ui.label(format!("State: {:?}", game.state));
                });
        });
}

fn hardcoded_init(
    game: &Game,
    create_action_ev_w: &mut EventWriter<GameActionCreateCallEvent>,
    card_manifest: &CardManifest,
) {
    // first, piles
    for card in &card_manifest.cards {
        create_action_ev_w.send(GameActionCreateCallEvent {
            action: Action::new(
                &game.id,
                &game.host_id,
                &game.host_id,
                &Command::InitSupplyPile {
                    card: card.clone(),
                    amount: 6,
                },
                None,
            ),
        });
    }

    // second, set a player to the action phase, to start the game
    create_action_ev_w.send(GameActionCreateCallEvent {
        action: Action::new(
            &game.id,
            &game.host_id,
            &game.host_id,
            &Command::StartTurn {},
            None,
        ),
    });
}