2024-04-21 16:23:40 +00:00
|
|
|
// ▄████████▄ + ███ + ▄█████████ ███ +
|
|
|
|
// ███▀ ▀███ + + ███ ███▀ + ███ + +
|
|
|
|
// ███ + ███ ███ ███ █████████ ███ ███ ███ ███
|
2024-04-21 17:34:00 +00:00
|
|
|
// ███ +███ ███ ███ ███ ███▐██████ ███ ███ ███
|
2024-04-21 16:23:40 +00:00
|
|
|
// ███ + ███ ███+ ███ +███ ███ + ███ ███ + ███
|
|
|
|
// ███▄ ▄███ ███▄ ███ ███ + ███ + ███ ███▄ ███
|
|
|
|
// ▀████████▀ + ▀███████ ███▄ ███▄ ▀████ ▀███████
|
|
|
|
// + + + ███
|
|
|
|
// + ▀████████████████████████████████████████████████████▀
|
2024-04-23 15:33:36 +00:00
|
|
|
//
|
|
|
|
// This module manages sound effects and music.
|
2024-04-21 16:23:40 +00:00
|
|
|
|
2024-03-16 19:53:57 +00:00
|
|
|
use bevy::prelude::*;
|
2024-03-31 00:07:35 +00:00
|
|
|
use bevy::audio::{PlaybackMode, Volume};
|
2024-05-12 21:42:56 +00:00
|
|
|
use crate::prelude::*;
|
2024-05-13 02:20:18 +00:00
|
|
|
use std::collections::HashMap;
|
2024-03-18 01:15:44 +00:00
|
|
|
|
2024-03-17 23:04:23 +00:00
|
|
|
pub struct AudioPlugin;
|
|
|
|
impl Plugin for AudioPlugin {
|
|
|
|
fn build(&self, app: &mut App) {
|
|
|
|
app.add_systems(Startup, setup);
|
|
|
|
app.add_systems(Update, toggle_bgm);
|
2024-04-25 02:15:57 +00:00
|
|
|
app.add_systems(Update, play_zoom_sfx);
|
2024-03-18 01:15:44 +00:00
|
|
|
app.add_systems(PostUpdate, play_sfx);
|
2024-03-18 02:01:47 +00:00
|
|
|
app.add_systems(PostUpdate, update_music);
|
2024-03-19 02:18:16 +00:00
|
|
|
app.add_event::<PlaySfxEvent>();
|
2024-03-18 02:01:47 +00:00
|
|
|
app.add_event::<ToggleMusicEvent>();
|
2024-04-25 02:15:57 +00:00
|
|
|
app.insert_resource(ZoomTimer(
|
|
|
|
Timer::from_seconds(0.09, TimerMode::Repeating)));
|
2024-03-17 23:04:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-25 02:15:57 +00:00
|
|
|
#[derive(Resource)] pub struct ZoomTimer(Timer);
|
|
|
|
|
2024-05-13 02:20:18 +00:00
|
|
|
const PATHS: &[(SfxType, Sfx, &str)] = &[
|
|
|
|
(SfxType::BGM, Sfx::BGM, "music/Aleksey Chistilin - Cinematic Cello.ogg"),
|
|
|
|
(SfxType::LoopSfx, Sfx::ElectricMotor, "sounds/electricmotor.ogg"),
|
|
|
|
(SfxType::LoopSfx, Sfx::Ion, "sounds/ion.ogg"),
|
|
|
|
(SfxType::LoopSfx, Sfx::Rocket, "sounds/rocket.ogg"),
|
|
|
|
(SfxType::LoopSfx, Sfx::Thruster, "sounds/thruster.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::Click, "sounds/click-button-140881-crop.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::Connect, "sounds/connect.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::Crash, "sounds/crash.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::EnterVehicle, "sounds/bikestart.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::IncomingChatMessage, "sounds/connect.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::Ping, "sounds/connect.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::Switch, "sounds/typosonic-typing-192811-crop.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::WakeUp, "sounds/wakeup.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::Woosh, "sounds/woosh.ogg"),
|
|
|
|
(SfxType::OneOff, Sfx::Zoom, "sounds/zoom.ogg"),
|
|
|
|
];
|
|
|
|
|
|
|
|
#[derive(Component, PartialEq, Hash, Eq, Copy, Clone)]
|
2024-03-19 02:18:16 +00:00
|
|
|
pub enum Sfx {
|
2024-05-13 02:20:18 +00:00
|
|
|
BGM,
|
2024-03-19 02:18:16 +00:00
|
|
|
Click,
|
2024-03-19 05:24:27 +00:00
|
|
|
Connect,
|
2024-03-29 15:58:42 +00:00
|
|
|
Crash,
|
2024-05-13 02:20:18 +00:00
|
|
|
ElectricMotor,
|
|
|
|
EnterVehicle,
|
|
|
|
IncomingChatMessage,
|
|
|
|
Ion,
|
|
|
|
Ping,
|
|
|
|
Rocket,
|
|
|
|
Switch,
|
|
|
|
Thruster,
|
2024-04-05 01:31:52 +00:00
|
|
|
WakeUp,
|
2024-05-13 02:20:18 +00:00
|
|
|
Woosh,
|
|
|
|
Zoom,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn str2sfx(sfx_label: &str) -> Sfx {
|
|
|
|
return match sfx_label {
|
|
|
|
"switch" => Sfx::Switch,
|
|
|
|
"click" => Sfx::Click,
|
|
|
|
"woosh" => Sfx::Woosh,
|
|
|
|
"zoom" => Sfx::Zoom,
|
|
|
|
"chat" => Sfx::IncomingChatMessage,
|
|
|
|
"ping" => Sfx::Ping,
|
|
|
|
"connect" => Sfx::Connect,
|
|
|
|
"entervehicle" => Sfx::EnterVehicle,
|
|
|
|
"crash" => Sfx::Ping,
|
|
|
|
_ => Sfx::Click,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum SfxType {
|
|
|
|
BGM,
|
|
|
|
LoopSfx,
|
|
|
|
OneOff,
|
2024-03-19 02:18:16 +00:00
|
|
|
}
|
2024-03-18 00:52:41 +00:00
|
|
|
|
2024-03-19 02:18:16 +00:00
|
|
|
#[derive(Event)] pub struct PlaySfxEvent(pub Sfx);
|
|
|
|
#[derive(Event)] pub struct ToggleMusicEvent();
|
2024-05-13 02:20:18 +00:00
|
|
|
#[derive(Resource)] pub struct Sounds(HashMap<Sfx, Handle<AudioSource>>);
|
2024-03-18 01:15:44 +00:00
|
|
|
|
2024-03-16 19:53:57 +00:00
|
|
|
pub fn setup(
|
|
|
|
mut commands: Commands,
|
2024-04-14 12:55:00 +00:00
|
|
|
settings: Res<var::Settings>,
|
2024-03-16 19:53:57 +00:00
|
|
|
asset_server: Res<AssetServer>,
|
|
|
|
) {
|
2024-05-13 02:20:18 +00:00
|
|
|
let mut map = HashMap::new();
|
|
|
|
for (sfxtype, sfx, path) in PATHS {
|
|
|
|
let source = asset_server.load(*path);
|
|
|
|
map.insert(*sfx, source.clone());
|
|
|
|
match sfxtype {
|
|
|
|
SfxType::BGM => {
|
|
|
|
commands.spawn((
|
|
|
|
*sfx,
|
|
|
|
AudioBundle {
|
|
|
|
source,
|
|
|
|
settings: PlaybackSettings {
|
|
|
|
mode: PlaybackMode::Loop,
|
|
|
|
paused: settings.mute_music,
|
|
|
|
..default()
|
|
|
|
},
|
|
|
|
},
|
|
|
|
));
|
2024-03-29 03:36:20 +00:00
|
|
|
},
|
2024-05-13 02:20:18 +00:00
|
|
|
SfxType::LoopSfx => {
|
|
|
|
commands.spawn((
|
|
|
|
*sfx,
|
|
|
|
AudioBundle {
|
|
|
|
source,
|
|
|
|
settings: PlaybackSettings {
|
|
|
|
mode: PlaybackMode::Loop,
|
|
|
|
volume: Volume::new(0.0),
|
|
|
|
paused: true,
|
|
|
|
..default()
|
|
|
|
},
|
|
|
|
},
|
|
|
|
));
|
2024-03-28 13:10:10 +00:00
|
|
|
},
|
2024-05-13 02:20:18 +00:00
|
|
|
SfxType::OneOff => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
commands.insert_resource(Sounds(map));
|
2024-03-16 19:53:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn toggle_bgm(
|
|
|
|
keyboard_input: Res<ButtonInput<KeyCode>>,
|
2024-03-18 02:01:47 +00:00
|
|
|
mut evwriter_toggle: EventWriter<ToggleMusicEvent>,
|
2024-03-19 02:18:16 +00:00
|
|
|
mut evwriter_sfx: EventWriter<PlaySfxEvent>,
|
2024-04-14 12:55:00 +00:00
|
|
|
mut settings: ResMut<var::Settings>,
|
2024-03-16 19:53:57 +00:00
|
|
|
) {
|
2024-04-20 02:48:17 +00:00
|
|
|
if keyboard_input.just_pressed(settings.key_toggle_music) {
|
2024-03-18 02:01:47 +00:00
|
|
|
settings.mute_music ^= true;
|
2024-03-19 02:18:16 +00:00
|
|
|
evwriter_sfx.send(PlaySfxEvent(Sfx::Click));
|
2024-03-18 02:01:47 +00:00
|
|
|
evwriter_toggle.send(ToggleMusicEvent());
|
2024-03-16 19:53:57 +00:00
|
|
|
}
|
2024-04-20 02:48:17 +00:00
|
|
|
if keyboard_input.just_pressed(settings.key_toggle_sfx) {
|
2024-03-18 03:10:08 +00:00
|
|
|
settings.mute_sfx ^= true;
|
2024-03-19 02:18:16 +00:00
|
|
|
evwriter_sfx.send(PlaySfxEvent(Sfx::Click));
|
2024-03-18 03:10:08 +00:00
|
|
|
evwriter_toggle.send(ToggleMusicEvent());
|
|
|
|
}
|
2024-03-16 19:53:57 +00:00
|
|
|
}
|
2024-03-18 00:52:41 +00:00
|
|
|
|
2024-03-18 01:15:44 +00:00
|
|
|
pub fn play_sfx(
|
2024-03-18 00:52:41 +00:00
|
|
|
mut commands: Commands,
|
2024-04-14 12:55:00 +00:00
|
|
|
settings: Res<var::Settings>,
|
2024-03-19 02:18:16 +00:00
|
|
|
mut events_sfx: EventReader<PlaySfxEvent>,
|
2024-05-13 02:20:18 +00:00
|
|
|
sounds: Res<Sounds>,
|
2024-03-18 00:52:41 +00:00
|
|
|
) {
|
2024-03-19 02:18:16 +00:00
|
|
|
if settings.mute_sfx && !events_sfx.is_empty() {
|
|
|
|
events_sfx.clear();
|
2024-03-18 01:15:44 +00:00
|
|
|
}
|
2024-03-19 02:18:16 +00:00
|
|
|
for sfx in events_sfx.read() {
|
2024-05-13 02:20:18 +00:00
|
|
|
if let Some(source) = sounds.0.get(&sfx.0) {
|
|
|
|
commands.spawn(AudioBundle {
|
|
|
|
source: source.clone(),
|
|
|
|
settings: PlaybackSettings::DESPAWN,
|
|
|
|
});
|
2024-03-20 05:42:39 +00:00
|
|
|
}
|
2024-03-18 00:52:41 +00:00
|
|
|
}
|
|
|
|
}
|
2024-03-18 02:01:47 +00:00
|
|
|
|
|
|
|
pub fn update_music(
|
|
|
|
mut events: EventReader<ToggleMusicEvent>,
|
2024-05-13 02:20:18 +00:00
|
|
|
q_audiosinks: Query<(&AudioSink, &Sfx)>,
|
2024-04-14 12:55:00 +00:00
|
|
|
settings: Res<var::Settings>,
|
2024-03-18 02:01:47 +00:00
|
|
|
) {
|
|
|
|
if !events.is_empty() {
|
|
|
|
events.clear();
|
2024-05-13 02:20:18 +00:00
|
|
|
for (bgm_sink, sfx) in &q_audiosinks {
|
|
|
|
if *sfx != Sfx::BGM {
|
|
|
|
continue;
|
|
|
|
}
|
2024-03-28 19:03:40 +00:00
|
|
|
if settings.mute_music {
|
|
|
|
bgm_sink.pause();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bgm_sink.play();
|
2024-03-18 02:01:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-25 02:15:57 +00:00
|
|
|
|
|
|
|
pub fn play_zoom_sfx(
|
|
|
|
time: Res<Time>,
|
|
|
|
mut timer: ResMut<ZoomTimer>,
|
|
|
|
mut last_zoom_level: Local<f64>,
|
|
|
|
mapcam: Res<camera::MapCam>,
|
|
|
|
mut ew_sfx: EventWriter<PlaySfxEvent>,
|
|
|
|
settings: Res<var::Settings>,
|
|
|
|
) {
|
|
|
|
if !timer.0.tick(time.delta()).just_finished() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if settings.map_active && (*last_zoom_level - mapcam.target_zoom_level).abs() > mapcam.target_zoom_level * 0.2 {
|
|
|
|
if *last_zoom_level != 0.0 && mapcam.target_zoom_level != camera::INITIAL_ZOOM_LEVEL {
|
|
|
|
ew_sfx.send(PlaySfxEvent(Sfx::Zoom));
|
|
|
|
}
|
|
|
|
*last_zoom_level = mapcam.target_zoom_level;
|
|
|
|
}
|
|
|
|
}
|