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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
//! Settings resources for the game.
//!
//! The base settings menu should have these options:
//!
//! - Accessibility
//! - Audio
//! - Video
//! - Gameplay
//! - Controls
//! - Back/Close
//!
//! Each of these options should have a sub-menu, which can be navigated to by pressing select or
//! clicking on the option. The sub-menu should have a back button, which returns to the main menu.
//!
//! The accessibility menu should have these options:
//!
//! - Font Choice (Default, Dyslexic, Sans-Serif)
//! - Back
//!
//! The audio menu should have these options:
//!
//! - Main Volume
//! - Music Volume
//! - SFX Volume
//! - Back
//!
//! The video menu should have these options:
//!
//! - Display Scale
//! - HUD Scaling
//! - Back
//!
//! The gameplay menu should have these options:
//!
//! - Auto-Aim
//! - Auto-Cast
//! - Back
//!
//! The controls menu should have these options:
//!
//! - Keybinds
//! - Keybinds (Controller)
//! - Back
//!
//! The keybinds menu should have these options (and these are the same for controller):
//!
//! - (Options for each action -- see [`crate::events::PlayerAction`])
//! - (Options for each menu interaction -- see [`crate::events::MenuInteraction`])
//! - Back
use bevy::prelude::*;
use bevy_inspector_egui::prelude::*;
use bevy_pkv::PkvStore;
use serde::{Deserialize, Serialize};
use crate::{
font_resource::{FontChoice, FontFamily},
CameraScaleLevel, Volume,
};
/// Volume settings.
#[derive(
Clone,
Copy,
Debug,
Default,
Deserialize,
PartialEq,
Eq,
Serialize,
Resource,
Reflect,
InspectorOptions,
)]
#[reflect(InspectorOptions)]
#[allow(clippy::module_name_repetitions)]
pub struct VolumeSettings {
/// Main volume.
pub main: Volume,
/// Music volume.
pub music: Volume,
/// SFX volume.
pub sfx: Volume,
}
/// Video settings.
#[derive(
Clone, Copy, Debug, Default, Deserialize, Serialize, Resource, Reflect, InspectorOptions,
)]
#[reflect(InspectorOptions)]
#[allow(clippy::module_name_repetitions)]
pub struct VideoSettings {
/// Display scale.
pub display_scale: CameraScaleLevel,
/// HUD scale.
pub hud_scale: f32,
}
/// Gameplay settings.
#[derive(
Clone,
Copy,
Debug,
Default,
Deserialize,
PartialEq,
Eq,
Serialize,
Resource,
Reflect,
InspectorOptions,
)]
#[reflect(InspectorOptions)]
#[allow(clippy::module_name_repetitions)]
pub struct GameplaySettings {
/// Auto-aim.
pub auto_aim: bool,
/// Auto-cast.
pub auto_cast: bool,
}
/// Accessibility settings.
#[derive(
Clone,
Copy,
Debug,
Default,
Deserialize,
PartialEq,
Eq,
Serialize,
Resource,
Reflect,
InspectorOptions,
)]
#[reflect(InspectorOptions)]
#[allow(clippy::module_name_repetitions)]
pub struct AccessibilitySettings {
/// Display Font choice (default, dyslexic, sans-serif).
pub display_font_family: FontFamily,
/// Interface Font choice (default, dyslexic, sans-serif).
pub interface_font_family: FontFamily,
/// Main Font choice (default, dyslexic, sans-serif).
pub main_font_family: FontFamily,
}
/// Rotates through the font choices.
///
/// If given `FontChoice::All`, it will return `FontChoice::Display` (All is not a valid choice).
///
/// # Example
///
/// ```
/// use game_library::{font_resource::FontChoice, settings::next_font_choice};
///
/// assert_eq!(next_font_choice(FontChoice::Display), FontChoice::Interface);
/// assert_eq!(next_font_choice(FontChoice::Interface), FontChoice::Main);
/// assert_eq!(next_font_choice(FontChoice::Main), FontChoice::Console);
/// assert_eq!(next_font_choice(FontChoice::Console), FontChoice::Display);
/// assert_eq!(next_font_choice(FontChoice::All), FontChoice::Display);
/// ```
#[must_use]
pub const fn next_font_choice(font_choice: FontChoice) -> FontChoice {
match font_choice {
FontChoice::Display => FontChoice::Interface,
FontChoice::Interface => FontChoice::Main,
FontChoice::Main => FontChoice::Console,
FontChoice::Console | FontChoice::All => FontChoice::Display,
}
}
/// Rotates through the font families. This will not return `FontFamily::Display` because
/// that is a special font family used for the game logo.
///
/// # Example
///
/// ```
/// use game_library::{font_resource::FontFamily, settings::next_font_family};
///
/// assert_eq!(next_font_family(FontFamily::Display), FontFamily::Dyslexic);
/// assert_eq!(next_font_family(FontFamily::Fancy), FontFamily::Dyslexic);
/// assert_eq!(next_font_family(FontFamily::Dyslexic), FontFamily::SansSerif);
/// assert_eq!(next_font_family(FontFamily::SansSerif), FontFamily::Monospace);
/// assert_eq!(next_font_family(FontFamily::Monospace), FontFamily::Fancy);
/// ```
#[must_use]
pub const fn next_font_family(font_family: FontFamily) -> FontFamily {
match font_family {
FontFamily::Display | FontFamily::Fancy => FontFamily::Dyslexic,
FontFamily::Dyslexic => FontFamily::SansSerif,
FontFamily::SansSerif => FontFamily::Monospace,
FontFamily::Monospace => FontFamily::Fancy,
}
}
/// Plugin for settings which will register the settings resources and run the `first_load` system.
///
/// This also registers the [`SettingChanged`] event and a system to flush the settings to the
/// [`bevy_pkv::PkvStore`] when the [`SettingChanged`] event is sent.
///
/// This will take care of initializing the [`bevy_pkv::PkvStore`] and loading the settings from
/// disk. If you do not set the organization and application name, it will use the default
/// organization and application name.
#[allow(clippy::module_name_repetitions)]
pub struct SettingsPlugin {
/// The organization name. This is the directory that will be created on the disk, and contain a
/// subdirectory for the application name, which then has the database file.
pub organization: String,
/// The application name.
pub application: String,
}
impl Default for SettingsPlugin {
fn default() -> Self {
Self {
organization: "Bevy".into(),
application: "bevy_game".into(),
}
}
}
impl Plugin for SettingsPlugin {
fn build(&self, app: &mut App) {
// Initialize the PKV store
app.insert_resource(PkvStore::new(
self.organization.as_str(),
self.application.as_str(),
));
app
// SettingChanged is a helper event for responding to button interaction
.add_event::<SettingChanged>()
// Register the settings resources
.init_resource::<VolumeSettings>()
.init_resource::<VideoSettings>()
.init_resource::<GameplaySettings>()
.init_resource::<AccessibilitySettings>()
// The first load system will load the settings from the PKV store
.add_systems(Startup, first_load)
// The flush settings system will save the settings to the PKV store
.add_systems(Update, flush_settings_to_store);
}
}
impl SettingsPlugin {
/// Set the application name.
#[must_use]
pub fn with_application<S: ToString>(self, application: &S) -> Self {
let application = application.to_string();
Self {
application,
..self
}
}
/// Set the organization name.
#[must_use]
pub fn with_organization<S: ToString>(self, organization: &S) -> Self {
let organization = organization.to_string();
Self {
organization,
..self
}
}
/// Set the organization and application name.
#[must_use]
pub fn with_structure<S: ToString>(self, organization: &S, application: &S) -> Self {
let organization = organization.to_string();
let application = application.to_string();
Self {
organization,
application,
}
}
}
/// Event to indicate a setting was changed.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Reflect, Event)]
pub struct SettingChanged(pub SettingCategory);
/// The category of a setting.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Reflect)]
pub enum SettingCategory {
/// Volume settings.
Volume,
/// Video settings.
Video,
/// Gameplay settings.
Gameplay,
/// Accessibility settings.
Accessibility,
}
impl SettingCategory {
/// Returns the name of the setting category.
///
/// This could be used as a key to save in the [`bevy_pkv::PkvStore`].
///
/// # Example
///
/// ```
/// use game_library::settings::SettingCategory;
///
/// assert_eq!(SettingCategory::Volume.name(), "Volume");
/// ```
#[must_use]
pub const fn name(&self) -> &'static str {
match self {
Self::Volume => "Volume",
Self::Video => "Video",
Self::Gameplay => "Gameplay",
Self::Accessibility => "Accessibility",
}
}
}
/// System to run on the first load of the game. It will either load the settings from the
/// [`bevy_pkv::PkvStore`] or store default settings in the [`bevy_pkv::PkvStore`].
fn first_load(
mut volume_settings: ResMut<VolumeSettings>,
mut video_settings: ResMut<VideoSettings>,
mut gameplay_settings: ResMut<GameplaySettings>,
mut accessibility_settings: ResMut<AccessibilitySettings>,
mut pkv_store: ResMut<PkvStore>,
) {
// Load the settings from the pkv store.
if let Ok(volume) = pkv_store.get::<VolumeSettings>(SettingCategory::Volume.name()) {
*volume_settings = volume;
} else {
let _ = pkv_store
.set(SettingCategory::Volume.name(), &VolumeSettings::default())
.map_err(|err| {
tracing::error!("failed to save volume settings to disk: {}", err);
});
}
if let Ok(video) = pkv_store.get::<VideoSettings>(SettingCategory::Video.name()) {
*video_settings = video;
} else {
let _ = pkv_store
.set(SettingCategory::Video.name(), &VideoSettings::default())
.map_err(|err| {
tracing::error!("failed to save video settings to disk: {}", err);
});
}
if let Ok(gameplay) = pkv_store.get::<GameplaySettings>(SettingCategory::Gameplay.name()) {
*gameplay_settings = gameplay;
} else {
let _ = pkv_store
.set(
SettingCategory::Gameplay.name(),
&GameplaySettings::default(),
)
.map_err(|err| {
tracing::error!("failed to save gameplay settings to disk: {}", err);
});
}
if let Ok(accessibility) =
pkv_store.get::<AccessibilitySettings>(SettingCategory::Accessibility.name())
{
*accessibility_settings = accessibility;
} else {
let _ = pkv_store
.set(
SettingCategory::Accessibility.name(),
&AccessibilitySettings::default(),
)
.map_err(|err| {
tracing::error!("failed to save accessibility settings to disk: {}", err);
});
}
}
/// System that runs on [`Update`] and reacts to the [`SettingChanged`] event.
///
/// This will save the settings to the [`bevy_pkv::PkvStore`].
#[allow(clippy::needless_pass_by_value)]
fn flush_settings_to_store(
volume_settings: Res<VolumeSettings>,
video_settings: Res<VideoSettings>,
gameplay_settings: Res<GameplaySettings>,
accessibility_settings: Res<AccessibilitySettings>,
mut pkv_store: ResMut<PkvStore>,
mut setting_changed_events: EventReader<SettingChanged>,
) {
for setting_changed_event in setting_changed_events.read() {
match setting_changed_event.0 {
SettingCategory::Volume => {
let _ = pkv_store
.set(SettingCategory::Volume.name(), &*volume_settings)
.map_err(|err| {
tracing::error!("failed to save volume settings to disk: {}", err);
});
}
SettingCategory::Video => {
let _ = pkv_store
.set(SettingCategory::Video.name(), &*video_settings)
.map_err(|err| {
tracing::error!("failed to save video settings to disk: {}", err);
});
}
SettingCategory::Gameplay => {
let _ = pkv_store
.set(SettingCategory::Gameplay.name(), &*gameplay_settings)
.map_err(|err| {
tracing::error!("failed to save gameplay settings to disk: {}", err);
});
}
SettingCategory::Accessibility => {
let _ = pkv_store
.set(
SettingCategory::Accessibility.name(),
&*accessibility_settings,
)
.map_err(|err| {
tracing::error!("failed to save accessibility settings to disk: {}", err);
});
}
}
}
}