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
//! Has systems for the display settings menu.

use bevy::prelude::*;
use game_library::font_resource::FontResource;
use game_library::state::Settings;

use crate::{despawn_with_tag, resources::style_prefab};

use super::{
    base::SettingsMenuEntity,
    button_actions::{ButtonAction, SettingsMenuButton},
};

/// Component for tagging entities that are part of the display settings menu.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Component)]
struct ControlsSettingsMenuEntity;

fn show_controls_settings(mut commands: Commands, fonts: Res<FontResource>) {
    commands
        .spawn((
            style_prefab::settings_menu_full_node_bundle(),
            ControlsSettingsMenuEntity,
            SettingsMenuEntity,
        ))
        .with_children(|parent| {
            // Menu Title
            parent.spawn(style_prefab::settings_menu_title_bundle(
                "Controls",
                fonts.display_font.clone(),
            ));
            // #### MENU BUTTONS #####
            parent
                .spawn(style_prefab::settings_menu_column_node_bundle())
                .with_children(|menu_buttons| {
                    // Back button (=> settings)
                    menu_buttons
                        .spawn((
                            style_prefab::menu_button_bundle(),
                            ButtonAction::BackToMenu,
                            SettingsMenuButton,
                        ))
                        .with_children(|button| {
                            button.spawn(style_prefab::menu_button_text(
                                "Back",
                                fonts.interface_font.clone(),
                            ));
                        });
                });
        });
}

pub(super) struct ControlsSettingsMenuPlugin;

impl Plugin for ControlsSettingsMenuPlugin {
    fn build(&self, app: &mut App) {
        app.add_systems(OnEnter(Settings::Controls), show_controls_settings);
        // app.add_systems(
        //     Update,
        //     (handle_control_settings_changes,).run_if(in_state(MenuState::Controls)),
        // );
        app.add_systems(
            OnExit(Settings::Controls),
            despawn_with_tag::<ControlsSettingsMenuEntity>,
        );
    }
}