2024-03-16 19:53:57 +00:00
|
|
|
use bevy::prelude::*;
|
2024-03-16 23:41:06 +00:00
|
|
|
use bevy::audio::PlaybackMode;
|
2024-03-16 19:53:57 +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-03-16 19:53:57 +00:00
|
|
|
#[derive(Component)]
|
|
|
|
pub struct ComponentBGM;
|
|
|
|
|
2024-03-16 23:41:06 +00:00
|
|
|
#[derive(Component)]
|
|
|
|
pub struct ComponentThrusterSound;
|
|
|
|
|
2024-03-16 19:53:57 +00:00
|
|
|
#[derive(Resource)]
|
|
|
|
struct SoundBGM(Handle<AudioSource>);
|
|
|
|
|
|
|
|
pub fn setup(
|
|
|
|
mut commands: Commands,
|
|
|
|
asset_server: Res<AssetServer>,
|
|
|
|
) {
|
2024-03-17 19:28:23 +00:00
|
|
|
let bgm = SoundBGM(asset_server.load("tmp/FTL - Faster Than Light (2012) OST - 12 - Void (Explore)-edQw2yYXQJM.ogg"));
|
2024-03-16 19:53:57 +00:00
|
|
|
commands.spawn((
|
|
|
|
AudioBundle {
|
|
|
|
source: bgm.0.clone(),
|
|
|
|
settings: PlaybackSettings::LOOP,
|
|
|
|
},
|
|
|
|
ComponentBGM,
|
|
|
|
));
|
|
|
|
commands.insert_resource(bgm);
|
|
|
|
commands.spawn((
|
|
|
|
AudioBundle {
|
|
|
|
source: asset_server.load("sounds/wakeup.ogg"),
|
|
|
|
settings: PlaybackSettings::DESPAWN,
|
|
|
|
},
|
|
|
|
));
|
2024-03-16 23:41:06 +00:00
|
|
|
commands.spawn((
|
|
|
|
ComponentThrusterSound,
|
|
|
|
AudioBundle {
|
2024-03-17 19:28:23 +00:00
|
|
|
source: asset_server.load("tmp/loopingthrust-95548.ogg"),
|
2024-03-16 23:41:06 +00:00
|
|
|
settings: PlaybackSettings {
|
|
|
|
mode: PlaybackMode::Loop,
|
|
|
|
paused: true,
|
|
|
|
..default()
|
|
|
|
},
|
|
|
|
},
|
|
|
|
));
|
2024-03-16 19:53:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn toggle_bgm(
|
|
|
|
keyboard_input: Res<ButtonInput<KeyCode>>,
|
|
|
|
bgm_controller: Query<&AudioSink, With<ComponentBGM>>,
|
|
|
|
) {
|
|
|
|
if keyboard_input.just_pressed(KeyCode::KeyT) {
|
|
|
|
if let Ok(sink) = bgm_controller.get_single() {
|
|
|
|
sink.toggle()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|