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
//! Has systems for the display settings menu.
use bevy::prelude::*;
use game_library::{font_resource::FontResource, settings::VideoSettings, 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 DisplaySettingsMenuEntity;
fn show_display_settings(
mut commands: Commands,
fonts: Res<FontResource>,
video_settings: Res<VideoSettings>,
) {
commands
.spawn((
style_prefab::settings_menu_full_node_bundle(),
DisplaySettingsMenuEntity,
SettingsMenuEntity,
))
.with_children(|parent| {
// Game Title
parent.spawn(style_prefab::settings_menu_title_bundle(
"Display Settings",
fonts.display_font.clone(),
));
// #### MENU BUTTONS #####
parent
.spawn(style_prefab::settings_menu_column_node_bundle())
.with_children(|menu_buttons| {
// Button and label for the video settings property display_scale
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(), SettingsMenuButton))
.with_children(|button| {
button.spawn(style_prefab::menu_button_text(
"Game Scaling",
fonts.interface_font.clone(),
));
});
// Text for main volume
row.spawn(style_prefab::settings_menu_info_text_bundle(
format!("{:.2}", video_settings.display_scale),
fonts.main_font.clone(),
));
});
// Button and label for the video settings property hud_scale
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(), SettingsMenuButton))
.with_children(|button| {
button.spawn(style_prefab::menu_button_text(
"HUD Scaling",
fonts.interface_font.clone(),
));
});
// Text for main volume
row.spawn(style_prefab::settings_menu_info_text_bundle(
format!("{:.2}", video_settings.hud_scale),
fonts.main_font.clone(),
));
});
// 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 DisplaySettingsMenuPlugin;
impl Plugin for DisplaySettingsMenuPlugin {
fn build(&self, app: &mut App) {
app.add_systems(OnEnter(Settings::Display), show_display_settings);
// app.add_systems(
// Update,
// (handle_display_settings_changes,).run_if(in_state(MenuState::Display)),
// );
app.add_systems(
OnExit(Settings::Display),
despawn_with_tag::<DisplaySettingsMenuEntity>,
);
}
}