use bevy::{prelude::*, sprite::MaterialMesh2dBundle, window::PrimaryWindow};
use game_library::colors::BACKGROUND_COLOR_50;
use game_library::state::Settings;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Component)]
pub struct SettingsMenuEntity;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Component)]
pub struct SettingsMenuBackground;
pub(super) fn clear_background(
mut commands: Commands,
mut meshes: ResMut<Assets<Mesh>>,
mut materials: ResMut<Assets<ColorMaterial>>,
window_query: Query<&Window, With<PrimaryWindow>>,
existing_background_query: Query<Entity, With<SettingsMenuBackground>>,
) {
if existing_background_query.get_single().is_ok() {
return;
}
let Ok(window) = window_query.get_single() else {
tracing::warn!("Failed to get window size for menu background");
return;
};
commands.spawn((
MaterialMesh2dBundle {
mesh: meshes
.add(shape::Quad::new(Vec2::new(window.width(), window.height())).into())
.into(),
material: materials.add(ColorMaterial::from(BACKGROUND_COLOR_50)),
transform: Transform::from_xyz(0., 0., 10.),
..default()
},
SettingsMenuBackground,
));
}
pub(super) fn transition_to_base_menu(mut menu_state: ResMut<NextState<Settings>>) {
menu_state.set(Settings::Main);
}