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
//! Has systems for the display settings menu.
use bevy::prelude::*;
use game_library::{
font_resource::FontResource,
settings::{GameplaySettings, SettingCategory, SettingChanged},
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 GameplaySettingsMenuEntity;
fn show_gameplay_settings(
mut commands: Commands,
fonts: Res<FontResource>,
gameplay_settings: Res<GameplaySettings>,
) {
commands
.spawn((
style_prefab::settings_menu_full_node_bundle(),
GameplaySettingsMenuEntity,
SettingsMenuEntity,
))
.with_children(|parent| {
// Game Title
parent.spawn(style_prefab::settings_menu_title_bundle(
"Gameplay Settings",
fonts.display_font.clone(),
));
// #### MENU BUTTONS #####
parent
.spawn(style_prefab::settings_menu_column_node_bundle())
.with_children(|menu_buttons| {
// Auto-aim button (as a row with a label and a button)
menu_buttons
.spawn(style_prefab::settings_menu_button_row_node_bundle())
.with_children(|row| {
// Button for auto-aim
row.spawn((
style_prefab::menu_button_bundle(),
ButtonAction::ToggleAutoAim,
SettingsMenuButton,
))
.with_children(|button| {
button.spawn(style_prefab::menu_button_text(
"Auto-Aim",
fonts.interface_font.clone(),
));
});
// Text for auto-aim
row.spawn((
style_prefab::settings_menu_info_text_bundle(
format!("{}", gameplay_settings.auto_aim).as_str(),
fonts.main_font.clone(),
),
CurrentAutoAimStateText,
));
});
// Auto-cast button (as a row with a label and a button)
menu_buttons
.spawn(style_prefab::settings_menu_button_row_node_bundle())
.with_children(|row| {
// Button for auto-cast
row.spawn((
style_prefab::menu_button_bundle(),
ButtonAction::ToggleAutoCast,
SettingsMenuButton,
))
.with_children(|button| {
button.spawn(style_prefab::menu_button_text(
"Auto-Cast",
fonts.interface_font.clone(),
));
});
// Text for auto-cast
row.spawn((
style_prefab::settings_menu_info_text_bundle(
format!("{}", gameplay_settings.auto_cast).as_str(),
fonts.main_font.clone(),
),
CurrentAutoCastStateText,
));
});
// 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 GameplaySettingsMenuPlugin;
impl Plugin for GameplaySettingsMenuPlugin {
fn build(&self, app: &mut App) {
app.add_systems(OnEnter(Settings::Gameplay), show_gameplay_settings);
app.add_systems(
Update,
(
handle_gameplay_setting_changes,
(
update_current_auto_aim_state_text,
update_current_auto_cast_state_text,
),
)
.run_if(in_state(Settings::Gameplay)),
);
app.add_systems(
OnExit(Settings::Gameplay),
despawn_with_tag::<GameplaySettingsMenuEntity>,
);
}
}
/// System to handle the gameplay menu button actions.
fn handle_gameplay_setting_changes(
mut er_change_setting: EventReader<ChangeSetting>,
mut gameplay_settings: ResMut<GameplaySettings>,
mut ew_setting_changed: EventWriter<SettingChanged>,
) {
for change_setting in er_change_setting.read() {
match change_setting.setting {
IndividualSetting::AutoCast => {
gameplay_settings.auto_cast = !gameplay_settings.auto_cast;
// Alert the system that the font has changed (to flush settings to disk)
ew_setting_changed.send(SettingChanged(SettingCategory::Gameplay));
}
IndividualSetting::AutoAim => {
gameplay_settings.auto_aim = !gameplay_settings.auto_aim;
// Alert the system that the font has changed (to flush settings to disk)
ew_setting_changed.send(SettingChanged(SettingCategory::Gameplay));
}
_ => {}
}
}
}
#[derive(Component)]
struct CurrentAutoAimStateText;
#[derive(Component)]
struct CurrentAutoCastStateText;
/// System to update the text for the current auto-aim state.
fn update_current_auto_aim_state_text(
mut text_query: Query<(&mut Text, &CurrentAutoAimStateText)>,
gameplay_settings: Res<GameplaySettings>,
) {
for (mut text, _tag) in &mut text_query {
text.sections[0].value = format!("{}", gameplay_settings.auto_aim);
}
}
/// System to update the text for the current auto-cast state.
fn update_current_auto_cast_state_text(
mut text_query: Query<(&mut Text, &CurrentAutoCastStateText)>,
gameplay_settings: Res<GameplaySettings>,
) {
for (mut text, _tag) in &mut text_query {
text.sections[0].value = format!("{}", gameplay_settings.auto_cast);
}
}