DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 38e1dbbfe8864ed9083d38b96e226c1033a807d7 deck-builder/sdbclient/src/runtime/menu/mod.rs -rw-r--r-- 1.7 KiB
38e1dbbfJonni Liljamo feat(sdbclient): add my_games API endpoint 1 year, 8 months ago
                                                                                
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
/*
 * This file is part of sdbclient
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use bevy::prelude::Resource;

use crate::api::game::types::Game;

/// Runtime data for use in the menu
#[derive(Resource)]
pub(crate) struct RTDMenu {
    pub play_menu_ui_state: PlayMenuUIState,
    pub browse_tab: BrowseMenuTab,
    pub waiting_for_create_game_call: bool,
    /// Current game
    pub cur_game: Option<Game>,
    /// List of all forming games
    pub all_forming_games: Vec<Game>,
    pub waiting_for_all_forming_call: bool,
    pub waiting_for_join_game_call: bool,
    /// Stores games where the player is involved
    pub my_games: Vec<Game>,
    pub waiting_for_my_games: bool,
}

impl Default for RTDMenu {
    fn default() -> Self {
        Self {
            play_menu_ui_state: PlayMenuUIState::Main,
            browse_tab: BrowseMenuTab::Forming,
            waiting_for_create_game_call: false,
            cur_game: None,
            all_forming_games: vec![],
            waiting_for_all_forming_call: false,
            waiting_for_join_game_call: false,
            my_games: vec![],
            waiting_for_my_games: false,
        }
    }
}

pub(crate) enum PlayMenuUIState {
    Main,
    CreateGame,
    InLobbyHost,
    InLobbyGuest,
}

impl PlayMenuUIState {
    pub fn display(&self) -> &str {
        match self {
            PlayMenuUIState::Main => "Play",
            PlayMenuUIState::CreateGame => "Create",
            PlayMenuUIState::InLobbyHost => "Lobby (Host)",
            PlayMenuUIState::InLobbyGuest => "Lobby (Guest)",
        }
    }
}

#[derive(PartialEq)]
pub(crate) enum BrowseMenuTab {
    Forming,
    InProgress,
    Finished,
}