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

use bevy::prelude::*;
use game_library::{
    font_resource::FontResource,
    settings::{SettingCategory, SettingChanged, VolumeSettings},
    state::Settings,
};

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

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

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

fn show_audio_settings(
    mut commands: Commands,
    fonts: Res<FontResource>,
    volume_settings: Res<VolumeSettings>,
) {
    commands
        .spawn((
            style_prefab::settings_menu_full_node_bundle(),
            AudioSettingsMenuEntity,
            SettingsMenuEntity,
        ))
        .with_children(|parent| {
            // Menu Title
            parent.spawn(style_prefab::settings_menu_title_bundle(
                "Audio",
                fonts.display_font.clone(),
            ));
            // #### MENU BUTTONS #####
            parent
                .spawn(style_prefab::settings_menu_column_node_bundle())
                .with_children(|menu_buttons| {
                    // Volume slider for main volume
                    // For display purposes, use a node here as a row to show the button ("Main Volume") and then the value
                    // of main volume in a text node.
                    menu_buttons
                        .spawn(style_prefab::settings_menu_button_row_node_bundle())
                        .with_children(|row| {
                            // Button for main volume
                            row.spawn((
                                style_prefab::menu_button_bundle(),
                                ButtonAction::IncrementMainVolume,
                                SettingsMenuButton,
                            ))
                            .with_children(|button| {
                                button.spawn(style_prefab::menu_button_text(
                                    "Main",
                                    fonts.interface_font.clone(),
                                ));
                            });
                            // Text for main volume
                            row.spawn((
                                style_prefab::settings_menu_info_text_bundle(
                                    volume_settings.main,
                                    fonts.main_font.clone(),
                                ),
                                CurrentMainVolumeText,
                            ));
                        });
                    // Volume slider for music volume
                    menu_buttons
                        .spawn(style_prefab::settings_menu_button_row_node_bundle())
                        .with_children(|row| {
                            // Button for music volume
                            row.spawn((
                                style_prefab::menu_button_bundle(),
                                ButtonAction::IncrementMusicVolume,
                                SettingsMenuButton,
                            ))
                            .with_children(|button| {
                                button.spawn(style_prefab::menu_button_text(
                                    "Music",
                                    fonts.interface_font.clone(),
                                ));
                            });
                            // Text for music volume
                            row.spawn((
                                style_prefab::settings_menu_info_text_bundle(
                                    volume_settings.music,
                                    fonts.main_font.clone(),
                                ),
                                CurrentMusicVolumeText,
                            ));
                        });
                    // Volume slider for sound effects volume
                    menu_buttons
                        .spawn(style_prefab::settings_menu_button_row_node_bundle())
                        .with_children(|row| {
                            // Button for sound effects volume
                            row.spawn((
                                style_prefab::menu_button_bundle(),
                                ButtonAction::IncrementSoundEffectsVolume,
                                SettingsMenuButton,
                            ))
                            .with_children(|button| {
                                button.spawn(style_prefab::menu_button_text(
                                    "Sound Effects",
                                    fonts.interface_font.clone(),
                                ));
                            });
                            // Text for sound effects volume
                            row.spawn((
                                style_prefab::settings_menu_info_text_bundle(
                                    volume_settings.sfx,
                                    fonts.main_font.clone(),
                                ),
                                CurrentSfxVolumeText,
                            ));
                        });
                    // 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(),
                            ));
                        });
                });
        });
}

/// System to handle the audio menu button actions.
fn handle_audio_setting_changes(
    mut er_change_setting: EventReader<ChangeSetting>,
    mut gameplay_settings: ResMut<VolumeSettings>,
    mut ew_setting_changed: EventWriter<SettingChanged>,
) {
    for change_setting in er_change_setting.read() {
        match change_setting.setting {
            IndividualSetting::MainVolume => {
                gameplay_settings.main.increment();
                ew_setting_changed.send(SettingChanged(SettingCategory::Volume));
            }
            IndividualSetting::MusicVolume => {
                gameplay_settings.music.increment();
                ew_setting_changed.send(SettingChanged(SettingCategory::Volume));
            }
            IndividualSetting::SoundEffectsVolume => {
                gameplay_settings.sfx.increment();
                ew_setting_changed.send(SettingChanged(SettingCategory::Volume));
            }
            _ => {}
        }
    }
}

pub(super) struct AudioSettingsMenuPlugin;

impl Plugin for AudioSettingsMenuPlugin {
    fn build(&self, app: &mut App) {
        app.add_systems(OnEnter(Settings::Audio), show_audio_settings);
        app.add_systems(
            Update,
            (
                handle_audio_setting_changes,
                (
                    update_current_main_volume_text,
                    update_current_music_volume_text,
                    update_current_sfx_volume_text,
                ),
            )
                .run_if(in_state(Settings::Audio)),
        );
        app.add_systems(
            OnExit(Settings::Audio),
            despawn_with_tag::<AudioSettingsMenuEntity>,
        );
    }
}

#[derive(Component)]
struct CurrentMainVolumeText;
#[derive(Component)]
struct CurrentMusicVolumeText;
#[derive(Component)]
struct CurrentSfxVolumeText;

/// System to handle changing the value of the main volume text.
fn update_current_main_volume_text(
    volume_settings: Res<VolumeSettings>,
    mut text_query: Query<&mut Text, With<CurrentMainVolumeText>>,
) {
    for mut text in &mut text_query {
        text.sections[0].value = volume_settings.main.into();
    }
}

/// System to handle changing the value of the music volume text.
fn update_current_music_volume_text(
    volume_settings: Res<VolumeSettings>,
    mut text_query: Query<&mut Text, With<CurrentMusicVolumeText>>,
) {
    for mut text in &mut text_query {
        text.sections[0].value = volume_settings.music.into();
    }
}

/// System to handle changing the value of the sound effects volume text.
fn update_current_sfx_volume_text(
    volume_settings: Res<VolumeSettings>,
    mut text_query: Query<&mut Text, With<CurrentSfxVolumeText>>,
) {
    for mut text in &mut text_query {
        text.sections[0].value = volume_settings.sfx.into();
    }
}