diff --git a/assets/voxygen/audio/sfx.ron b/assets/voxygen/audio/sfx.ron index 3eb3a6d828..cecb6f25d0 100644 --- a/assets/voxygen/audio/sfx.ron +++ b/assets/voxygen/audio/sfx.ron @@ -831,11 +831,24 @@ ], threshold: 0.2, ), - Utterance(Angry, BipedLarge((species: Wendigo, body_type: Female))): ( + Utterance(Angry, Wendigo): ( files: [ "voxygen.audio.sfx.utterance.wendigo_angry", ], threshold: 4.0, ), + Utterance(Angry, BipedLarge): ( + files: [ + "voxygen.audio.sfx.utterance.ogre_angry", + "voxygen.audio.sfx.utterance.ogre_angry2", + ], + threshold: 4.0, + ), + Utterance(Angry, Saurok): ( + files: [ + "voxygen.audio.sfx.utterance.saurok_angry", + ], + threshold: 4.0, + ), } ) diff --git a/assets/voxygen/audio/sfx/utterance/ogre_angry2.ogg b/assets/voxygen/audio/sfx/utterance/ogre_angry2.ogg index 05d9f248d8..a334d1a6ea 100644 Binary files a/assets/voxygen/audio/sfx/utterance/ogre_angry2.ogg and b/assets/voxygen/audio/sfx/utterance/ogre_angry2.ogg differ diff --git a/assets/voxygen/audio/sfx/utterance/ogre_angry3.ogg b/assets/voxygen/audio/sfx/utterance/ogre_angry3.ogg deleted file mode 100644 index 830f70d6d2..0000000000 Binary files a/assets/voxygen/audio/sfx/utterance/ogre_angry3.ogg and /dev/null differ diff --git a/assets/voxygen/audio/sfx/utterance/saurok_angry.ogg b/assets/voxygen/audio/sfx/utterance/saurok_angry.ogg new file mode 100644 index 0000000000..bc8c3cae83 Binary files /dev/null and b/assets/voxygen/audio/sfx/utterance/saurok_angry.ogg differ diff --git a/assets/voxygen/audio/sfx/utterance/wendigo_angry.mp3 b/assets/voxygen/audio/sfx/utterance/wendigo_angry.mp3 deleted file mode 100644 index 87d5aec70f..0000000000 Binary files a/assets/voxygen/audio/sfx/utterance/wendigo_angry.mp3 and /dev/null differ diff --git a/common/src/comp/mod.rs b/common/src/comp/mod.rs index c8998b4a7d..2242ad236e 100644 --- a/common/src/comp/mod.rs +++ b/common/src/comp/mod.rs @@ -67,7 +67,8 @@ pub use self::{ combo::Combo, controller::{ Climb, ControlAction, ControlEvent, Controller, ControllerInputs, GroupManip, InputAttr, - InputKind, InventoryAction, InventoryEvent, InventoryManip, MountState, Mounting, UtteranceKind, + InputKind, InventoryAction, InventoryEvent, InventoryManip, MountState, Mounting, + UtteranceKind, }, energy::{Energy, EnergyChange, EnergySource}, fluid_dynamics::Fluid, diff --git a/common/systems/src/controller.rs b/common/systems/src/controller.rs index daeb8f36e3..c576e22dc6 100644 --- a/common/systems/src/controller.rs +++ b/common/systems/src/controller.rs @@ -1,5 +1,8 @@ use common::{ - comp::{BuffChange, ControlEvent, Controller, Pos, Body, agent::{Sound, SoundKind}}, + comp::{ + agent::{Sound, SoundKind}, + Body, BuffChange, ControlEvent, Controller, Pos, + }, event::{EventBus, ServerEvent}, uid::UidAllocator, }; @@ -7,7 +10,7 @@ use common_ecs::{Job, Origin, Phase, System}; use specs::{ saveload::{Marker, MarkerAllocator}, shred::ResourceId, - Entities, Join, Read, SystemData, World, WriteStorage, ReadStorage, + Entities, Join, Read, ReadStorage, SystemData, World, WriteStorage, }; use vek::*; diff --git a/server/src/events/interaction.rs b/server/src/events/interaction.rs index f3b380f231..3a04f63aec 100644 --- a/server/src/events/interaction.rs +++ b/server/src/events/interaction.rs @@ -6,7 +6,7 @@ use common::{ assets, comp::{ self, - agent::{AgentEvent, Sound, MAX_LISTEN_DIST, SoundKind}, + agent::{AgentEvent, Sound, SoundKind, MAX_LISTEN_DIST}, dialogue::Subject, inventory::slot::EquipSlot, item, @@ -386,7 +386,8 @@ pub fn handle_sound(server: &mut Server, sound: &Sound) { let positions = &ecs.read_storage::(); let agents = &mut ecs.write_storage::(); - // TODO: Reduce the complexity of this problem by using spatial partitioning system + // TODO: Reduce the complexity of this problem by using spatial partitioning + // system for (agent, agent_pos) in (agents, positions).join() { // TODO: Use pathfinding for more dropoff around obstacles let agent_dist_sqrd = agent_pos.0.distance_squared(sound.pos); @@ -413,9 +414,7 @@ pub fn handle_sound(server: &mut Server, sound: &Sound) { }), _ => None, } { - ecs - .write_resource::>() - .push(outcome); + ecs.write_resource::>().push(outcome); } } } diff --git a/server/src/sys/agent.rs b/server/src/sys/agent.rs index 67dc39634d..b0b3d88e34 100644 --- a/server/src/sys/agent.rs +++ b/server/src/sys/agent.rs @@ -21,7 +21,7 @@ use common::{ Agent, Alignment, BehaviorCapability, BehaviorState, Body, CharacterAbility, CharacterState, ControlAction, ControlEvent, Controller, Energy, Health, HealthChange, InputKind, Inventory, InventoryAction, LightEmitter, MountState, Ori, PhysicsState, Pos, - Scale, SkillSet, Stats, UnresolvedChatMsg, Vel, UtteranceKind, + Scale, SkillSet, Stats, UnresolvedChatMsg, UtteranceKind, Vel, }, consts::GRAVITY, effect::{BuffEffect, Effect}, diff --git a/voxygen/src/audio/sfx/mod.rs b/voxygen/src/audio/sfx/mod.rs index 57198031ed..782825d0a4 100644 --- a/voxygen/src/audio/sfx/mod.rs +++ b/voxygen/src/audio/sfx/mod.rs @@ -91,12 +91,11 @@ use client::Client; use common::{ assets::{self, AssetExt, AssetHandle}, comp::{ - beam, + beam, biped_large, item::{ItemKind, ToolKind}, object, poise::PoiseState, - Body, CharacterAbilityType, InventoryUpdateEvent, - UtteranceKind, + Body, CharacterAbilityType, InventoryUpdateEvent, UtteranceKind, }, outcome::Outcome, terrain::{BlockKind, TerrainChunk}, @@ -183,7 +182,29 @@ pub enum SfxEvent { FlameThrower, PoiseChange(PoiseState), GroundSlam, - Utterance(UtteranceKind, Body), + Utterance(UtteranceKind, VoiceKind), +} + +#[derive(Clone, Debug, PartialEq, Deserialize, Hash, Eq)] +pub enum VoiceKind { + Mute, + Human, + BipedLarge, + Wendigo, + Saurok, +} + +fn body_to_voice(body: &Body) -> VoiceKind { + match body { + Body::BipedLarge(body) => match body.species { + biped_large::Species::Wendigo => VoiceKind::Wendigo, + biped_large::Species::Occultsaurok + | biped_large::Species::Mightysaurok + | biped_large::Species::Slysaurok => VoiceKind::Saurok, + _ => VoiceKind::BipedLarge, + }, + _ => VoiceKind::Mute, + } } #[derive(Clone, Debug, PartialEq, Deserialize, Hash, Eq)] @@ -455,8 +476,9 @@ impl SfxMgr { }, }, Outcome::Utterance { pos, kind, body } => { - let sfx_trigger_item = triggers.get_key_value(&SfxEvent::Utterance(*kind, *body)); - audio.emit_sfx(sfx_trigger_item, *pos, None, false); + let sfx_trigger_item = + triggers.get_key_value(&SfxEvent::Utterance(*kind, body_to_voice(body))); + audio.emit_sfx(sfx_trigger_item, *pos, Some(2.5), false); }, Outcome::ExpChange { .. } | Outcome::ComboChange { .. }