DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 28bb3dc693aa2fb6dcbcd9268ab82219ed56671b deck-builder/client/src/plugins/game/mod.rs -rw-r--r-- 974 bytes
28bb3dc6 — skye chore(client): add fastrand dep 1 year, 5 months ago
                                                                                
443c9b0c 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
/*
 * 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 crate::{api::game::Game, Global, AppState};

use super::GameDetailsCallEvent;

mod ui;

pub struct GamePlugin;

impl Plugin for GamePlugin {
    fn build(&self, app: &mut App) {
        app.insert_resource(GameData::default())
            .add_system(game_setup.in_schedule(OnEnter(AppState::InGame)))
            .add_system(ui::ui.run_if(in_state(AppState::InGame)));
    }
}

#[derive(Resource)]
pub struct GameData {
    pub game: Option<Game>,
}

impl Default for GameData {
    fn default() -> Self {
        Self {
            game: None,
        }
    }
}

fn game_setup(
    mut details_ev_w: EventWriter<GameDetailsCallEvent>,
    global: Res<Global>,
) {
    details_ev_w.send(GameDetailsCallEvent {
        game_id: global.cur_game_id.clone(),
    });
}