Compare commits

..

No commits in common. "47429c2df255966d105bee3280b112dbef0abbb0" and "32734f31d56d16f0e3bc06d51fcfcde0957ac38d" have entirely different histories.

3 changed files with 23 additions and 23 deletions

View File

@ -2,17 +2,14 @@ kind: pipeline
type: docker
name: default
environment:
DEPENDENCIES: cmake pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev
steps:
- name: test
image: rust:bullseye
pull: always
commands:
- apt-get update -qq
- apt-get install -qqy $DEPENDENCIES
- rustup component add clippy rustfmt
- apt-get update -qq
- apt-get install -qqy cmake pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev
- cargo fmt --check
- cargo test
- cargo clippy
@ -21,7 +18,7 @@ steps:
pull: always
commands:
- apt-get update -qq
- apt-get install -qqy $DEPENDENCIES
- apt-get install -qqy cmake pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev
- cargo publish --no-verify
when:
ref:

View File

@ -64,11 +64,12 @@ fn rotate_listener(time: Res<Time>, mut query: Query<(&mut RotationTimer, &mut T
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugin(SynthizerPlugin {
.insert_resource(SynthizerConfig {
default_panner_strategy: Some(bevy_synthizer::syz::PannerStrategy::Hrtf),
default_distance_model: Some(bevy_synthizer::syz::DistanceModel::Inverse),
..default()
})
.add_plugin(SynthizerPlugin)
.add_system(bevy::window::close_on_esc)
.init_resource::<AssetHandles>()
.add_startup_system(setup)

View File

@ -563,6 +563,19 @@ fn remove_sound(mut last_buffer: ResMut<LastBuffer>, removed: RemovedComponents<
}
}
#[derive(Resource, Clone, Default, Debug)]
pub struct SynthizerConfig {
pub default_panner_strategy: Option<syz::PannerStrategy>,
pub default_distance_model: Option<syz::DistanceModel>,
pub default_distance_ref: Option<f64>,
pub default_distance_max: Option<f64>,
pub default_rolloff: Option<f64>,
pub default_closeness_boost: Option<f64>,
pub default_closeness_boost_distance: Option<f64>,
pub log_level: syz::LogLevel,
pub log_to_stderr: bool,
}
#[derive(Resource, Debug)]
pub struct SynthizerDefaults {
pub panner_strategy: syz::PannerStrategy,
@ -576,7 +589,7 @@ pub struct SynthizerDefaults {
fn sync_config(
context: Res<Context>,
config: Res<SynthizerPlugin>,
config: Res<SynthizerConfig>,
defaults: Res<SynthizerDefaults>,
) {
if config.is_changed() {
@ -669,25 +682,14 @@ pub enum SynthizerSystems {
#[derive(Resource)]
struct InitializationGuard(syz::InitializationGuard);
#[derive(Resource, Clone, Default, Debug)]
pub struct SynthizerPlugin {
pub default_panner_strategy: Option<syz::PannerStrategy>,
pub default_distance_model: Option<syz::DistanceModel>,
pub default_distance_ref: Option<f64>,
pub default_distance_max: Option<f64>,
pub default_rolloff: Option<f64>,
pub default_closeness_boost: Option<f64>,
pub default_closeness_boost_distance: Option<f64>,
pub log_level: syz::LogLevel,
pub log_to_stderr: bool,
}
pub struct SynthizerPlugin;
impl Plugin for SynthizerPlugin {
fn build(&self, app: &mut App) {
if !app.world.contains_resource::<SynthizerPlugin>() {
app.insert_resource(self.clone());
if !app.world.contains_resource::<SynthizerConfig>() {
app.insert_resource(SynthizerConfig::default());
}
let config = app.world.get_resource::<SynthizerPlugin>().unwrap().clone();
let config = app.world.get_resource::<SynthizerConfig>().unwrap().clone();
let mut syz_config = syz::LibraryConfig::new();
syz_config.log_level(config.log_level);
if config.log_to_stderr {