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
//! The plugin which adds the necessary states and systems to the app for
//! the settings menu to work.

use bevy::prelude::*;

use crate::despawn_with_tag;
use game_library::state::{Overlay, Settings};

use super::{
    accessibility::AccessibilitySettingsMenuPlugin,
    audio::AudioSettingsMenuPlugin,
    base::{clear_background, transition_to_base_menu, SettingsMenuBackground, SettingsMenuEntity},
    button_actions::menu_actions,
    controls::ControlsSettingsMenuPlugin,
    display::DisplaySettingsMenuPlugin,
    events::ChangeSetting,
    gameplay::GameplaySettingsMenuPlugin,
    main::{show_main_menu, BaseSettingsMenuEntity},
};

/// The settings menu plugin.
pub struct SettingsMenuPlugin;

impl Plugin for SettingsMenuPlugin {
    fn build(&self, app: &mut App) {
        app.add_state::<Settings>();
        app.add_event::<ChangeSetting>();
        // Add system to setup the menu
        app.add_systems(
            OnEnter(Settings::Main),
            (clear_background, show_main_menu).chain(),
        );
        app.add_systems(
            OnExit(Settings::Main),
            (despawn_with_tag::<BaseSettingsMenuEntity>,),
        );
        // When disabled, we should clean up all the entities that are part of the menu.
        app.add_systems(
            OnEnter(Settings::Disabled),
            (
                despawn_with_tag::<SettingsMenuEntity>,
                despawn_with_tag::<SettingsMenuBackground>,
            ),
        );
        // Each "page" of the settings menu has its own plugin that adds the necessary systems
        app.add_plugins((
            AccessibilitySettingsMenuPlugin,
            AudioSettingsMenuPlugin,
            ControlsSettingsMenuPlugin,
            DisplaySettingsMenuPlugin,
            GameplaySettingsMenuPlugin,
        ));
        // Add system to update the buttons on hover, and respond to button presses
        app.add_systems(Update, menu_actions.run_if(in_state(Overlay::Settings)));
        // Add system to transition to the next state when the settings menu is entered
        app.add_systems(OnEnter(Overlay::Settings), transition_to_base_menu);
        // Add system to transition to the next state when the settings menu is exited
        app.add_systems(OnExit(Overlay::Settings), exit_settings_menu);
    }
}

/// Transition to [`Settings::Disabled`] when the settings menu is exited.
fn exit_settings_menu(mut next_settings_state: ResMut<NextState<Settings>>) {
    next_settings_state.set(Settings::Disabled);
}