diff --git a/assets/voxygen/audio/soundtrack/Ethereal_Bonds.ogg b/assets/voxygen/audio/soundtrack/Ethereal_Bonds.ogg new file mode 100644 index 0000000000..e3baf53eb6 Binary files /dev/null and b/assets/voxygen/audio/soundtrack/Ethereal_Bonds.ogg differ diff --git a/assets/voxygen/audio/soundtrack/Mineral_Deposits.ogg b/assets/voxygen/audio/soundtrack/Mineral_Deposits.ogg new file mode 100644 index 0000000000..23f21f1978 Binary files /dev/null and b/assets/voxygen/audio/soundtrack/Mineral_Deposits.ogg differ diff --git a/assets/voxygen/audio/soundtrack/Ruination.ogg b/assets/voxygen/audio/soundtrack/Ruination.ogg new file mode 100644 index 0000000000..e71d2f5b58 Binary files /dev/null and b/assets/voxygen/audio/soundtrack/Ruination.ogg differ diff --git a/assets/voxygen/audio/soundtrack/Snowtop.ogg b/assets/voxygen/audio/soundtrack/Snowtop.ogg new file mode 100644 index 0000000000..e0de7328ce Binary files /dev/null and b/assets/voxygen/audio/soundtrack/Snowtop.ogg differ diff --git a/assets/voxygen/audio/soundtrack/fiesta_del_pueblo.ogg b/assets/voxygen/audio/soundtrack/fiesta_del_pueblo.ogg new file mode 100644 index 0000000000..e6dd703b3b Binary files /dev/null and b/assets/voxygen/audio/soundtrack/fiesta_del_pueblo.ogg differ diff --git a/assets/voxygen/audio/soundtrack/library_theme_with_harpsichord.ogg b/assets/voxygen/audio/soundtrack/library_theme_with_harpsichord.ogg new file mode 100644 index 0000000000..3a0fd33050 Binary files /dev/null and b/assets/voxygen/audio/soundtrack/library_theme_with_harpsichord.ogg differ diff --git a/assets/voxygen/audio/soundtrack/sacred_temple.ogg b/assets/voxygen/audio/soundtrack/sacred_temple.ogg new file mode 100644 index 0000000000..04917609ba Binary files /dev/null and b/assets/voxygen/audio/soundtrack/sacred_temple.ogg differ diff --git a/assets/voxygen/audio/soundtrack/veloren_title_tune-3.ogg b/assets/voxygen/audio/soundtrack/veloren_title_tune-3.ogg new file mode 100644 index 0000000000..eb530c91ad Binary files /dev/null and b/assets/voxygen/audio/soundtrack/veloren_title_tune-3.ogg differ diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 9334546e4f..27d32d90b4 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -24,6 +24,10 @@ conrod_core = { git = "https://gitlab.com/veloren/conrod.git" } conrod_winit = { git = "https://gitlab.com/veloren/conrod.git" } euc = "0.2" +# Audio +rodio = "0.8" +lewton = "0.9" + # ECS specs = "0.14" diff --git a/voxygen/src/audio/mod.rs b/voxygen/src/audio/mod.rs new file mode 100644 index 0000000000..1f904aecdb --- /dev/null +++ b/voxygen/src/audio/mod.rs @@ -0,0 +1,94 @@ +//extern crate byteorder; +extern crate lewton; +extern crate rodio; + +use common::assets; +use rodio::{Decoder, Device, Source, SpatialSink}; +use std::{ + collections::HashMap, + fs::File, + io::BufReader, + path::PathBuf, + sync::mpsc::{channel, Receiver, Sender, TryRecvError}, + thread, + thread::{sleep, JoinHandle}, + time::Duration, +}; +use vek::*; + +#[derive(Clone, Debug, PartialEq)] +pub struct Position { + pub relative: bool, + pub pos: Vec3, + pub vel: Vec3, +} + +#[derive(Clone, Debug, PartialEq)] +pub struct Fade { + pub in_duration: Duration, + pub out_duration: Duration, +} + +#[derive(Clone, Debug, PartialEq)] +pub struct Stream { + pub buffer: u64, + pub start_tick: Duration, + pub duration: Duration, + pub volume: f32, + pub repeat: Option<()>, + pub positional: Option, + pub fading: Option, +} + +#[derive(Clone, Debug, PartialEq)] +pub enum Buffer { + File(PathBuf), + Raw(Vec), +} + +enum Msg { + Position(Vec3, Vec3, Mat4), + CreateSource(Buffer), + Stop, +} + +pub struct AudioFrontend { + device: Device, + streams: HashMap, //always use SpatialSink even if no possition is used for now +} + +impl AudioFrontend { + pub fn new() -> Self { + let mut device = rodio::default_output_device().unwrap(); + + for d in rodio::devices() { + if d.name().contains("jack") { + continue; + } + + device = d; + break; + } + + AudioFrontend { + device, + streams: HashMap::::new(), + } + } + + pub fn play_music(&mut self, path: &str) { + let file = File::open(format!("assets/{}", path)).unwrap(); + let src = Decoder::new(BufReader::new(file)).unwrap(); + + let mut sink = rodio::SpatialSink::new( + &self.device, + [0.0, 0.0, 0.0], + [1.0, 0.0, 0.0], + [-1.0, 0.0, 0.0], + ); + + sink.append(src); + + self.streams.insert(path.to_string(), sink); + } +} diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index d69eafb3b2..fff5c6c223 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -4,6 +4,7 @@ #[macro_use] pub mod ui; pub mod anim; +pub mod audio; pub mod error; pub mod hud; pub mod key_state; @@ -19,7 +20,7 @@ pub mod window; // Reexports pub use crate::error::Error; -use crate::{menu::main::MainMenuState, settings::Settings, window::Window}; +use crate::{audio::AudioFrontend, menu::main::MainMenuState, settings::Settings, window::Window}; use log; use simplelog::{CombinedLogger, Config, TermLogger, WriteLogger}; use std::{fs::File, mem, panic, str::FromStr, thread}; @@ -31,6 +32,7 @@ const DEFAULT_PUBLIC_SERVER: &'static str = "server.veloren.net"; pub struct GlobalState { settings: Settings, window: Window, + audio: AudioFrontend, } impl GlobalState { @@ -91,7 +93,9 @@ fn main() { ]) .unwrap(); - // Set up panic handler to relay swish panic messages to the user. + let audio = AudioFrontend::new(); + + // Set up panic handler to relay swish panic messages to the user let settings_clone = settings.clone(); let default_hook = panic::take_hook(); panic::set_hook(Box::new(move |panic_info| { @@ -153,7 +157,11 @@ fn main() { default_hook(panic_info); })); - let mut global_state = GlobalState { settings, window }; + let mut global_state = GlobalState { + settings, + window, + audio, + }; // Set up the initial play state. let mut states: Vec> = vec![Box::new(MainMenuState::new(&mut global_state))]; diff --git a/voxygen/src/menu/main/mod.rs b/voxygen/src/menu/main/mod.rs index 41c3b1e7bd..318c991df2 100644 --- a/voxygen/src/menu/main/mod.rs +++ b/voxygen/src/menu/main/mod.rs @@ -47,6 +47,10 @@ impl PlayState for MainMenuState { // Used for client creation. let mut client_init: Option = None; + global_state + .audio + .play_music("voxygen/audio/soundtrack/veloren_title_tune-3.ogg"); + loop { // Handle window events. for event in global_state.window.fetch_events() {