From a46789013c550bd144f9554ce4771c16f0e0bea4 Mon Sep 17 00:00:00 2001 From: Imbris Date: Wed, 17 Jun 2020 03:49:14 -0400 Subject: [PATCH 1/6] Hotreload animations using libloading --- Cargo.lock | 12 ++ Cargo.toml | 1 + voxygen/Cargo.toml | 3 + voxygen/src/anim/Cargo.toml | 23 +++ voxygen/src/anim/mod.rs | 75 --------- .../src/anim/{ => src}/biped_large/idle.rs | 0 .../src/anim/{ => src}/biped_large/jump.rs | 0 voxygen/src/anim/{ => src}/biped_large/mod.rs | 3 +- voxygen/src/anim/{ => src}/biped_large/run.rs | 0 voxygen/src/anim/{ => src}/bird_medium/fly.rs | 0 .../src/anim/{ => src}/bird_medium/idle.rs | 0 voxygen/src/anim/{ => src}/bird_medium/mod.rs | 3 +- voxygen/src/anim/{ => src}/bird_medium/run.rs | 0 voxygen/src/anim/{ => src}/bird_small/idle.rs | 0 voxygen/src/anim/{ => src}/bird_small/jump.rs | 0 voxygen/src/anim/{ => src}/bird_small/mod.rs | 3 +- voxygen/src/anim/{ => src}/bird_small/run.rs | 0 voxygen/src/anim/{ => src}/character/alpha.rs | 0 voxygen/src/anim/{ => src}/character/beta.rs | 0 voxygen/src/anim/{ => src}/character/block.rs | 0 .../src/anim/{ => src}/character/blockidle.rs | 0 .../src/anim/{ => src}/character/charge.rs | 0 voxygen/src/anim/{ => src}/character/climb.rs | 0 voxygen/src/anim/{ => src}/character/dance.rs | 0 voxygen/src/anim/{ => src}/character/dash.rs | 0 voxygen/src/anim/{ => src}/character/equip.rs | 0 .../src/anim/{ => src}/character/gliding.rs | 0 voxygen/src/anim/{ => src}/character/idle.rs | 0 voxygen/src/anim/{ => src}/character/jump.rs | 0 voxygen/src/anim/{ => src}/character/mod.rs | 3 +- voxygen/src/anim/{ => src}/character/roll.rs | 0 voxygen/src/anim/{ => src}/character/run.rs | 0 voxygen/src/anim/{ => src}/character/shoot.rs | 0 voxygen/src/anim/{ => src}/character/sit.rs | 0 voxygen/src/anim/{ => src}/character/spin.rs | 0 voxygen/src/anim/{ => src}/character/stand.rs | 0 voxygen/src/anim/{ => src}/character/swim.rs | 0 voxygen/src/anim/{ => src}/character/wield.rs | 0 voxygen/src/anim/{ => src}/critter/idle.rs | 0 voxygen/src/anim/{ => src}/critter/jump.rs | 0 voxygen/src/anim/{ => src}/critter/mod.rs | 3 +- voxygen/src/anim/{ => src}/critter/run.rs | 0 voxygen/src/anim/{ => src}/dragon/fly.rs | 0 voxygen/src/anim/{ => src}/dragon/idle.rs | 0 voxygen/src/anim/{ => src}/dragon/mod.rs | 3 +- voxygen/src/anim/{ => src}/dragon/run.rs | 0 voxygen/src/anim/src/dyn_lib.rs | 109 ++++++++++++ .../src/anim/{ => src}/fish_medium/idle.rs | 0 .../src/anim/{ => src}/fish_medium/jump.rs | 0 voxygen/src/anim/{ => src}/fish_medium/mod.rs | 3 +- voxygen/src/anim/{ => src}/fish_medium/run.rs | 0 voxygen/src/anim/{ => src}/fish_small/idle.rs | 0 voxygen/src/anim/{ => src}/fish_small/jump.rs | 0 voxygen/src/anim/{ => src}/fish_small/mod.rs | 3 +- voxygen/src/anim/{ => src}/fish_small/run.rs | 0 voxygen/src/anim/{ => src}/fixture/mod.rs | 3 +- voxygen/src/anim/{ => src}/golem/idle.rs | 0 voxygen/src/anim/{ => src}/golem/jump.rs | 0 voxygen/src/anim/{ => src}/golem/mod.rs | 3 +- voxygen/src/anim/{ => src}/golem/run.rs | 0 voxygen/src/anim/src/lib.rs | 158 ++++++++++++++++++ voxygen/src/anim/{ => src}/object/mod.rs | 3 +- .../anim/{ => src}/quadruped_medium/idle.rs | 6 +- .../anim/{ => src}/quadruped_medium/jump.rs | 6 +- .../anim/{ => src}/quadruped_medium/mod.rs | 9 +- .../anim/{ => src}/quadruped_medium/run.rs | 6 +- .../anim/{ => src}/quadruped_small/idle.rs | 6 +- .../anim/{ => src}/quadruped_small/jump.rs | 6 +- .../src/anim/{ => src}/quadruped_small/mod.rs | 9 +- .../src/anim/{ => src}/quadruped_small/run.rs | 6 +- voxygen/src/lib.rs | 1 - voxygen/src/main.rs | 4 + voxygen/src/render/mod.rs | 1 - voxygen/src/render/pipelines/figure.rs | 6 +- voxygen/src/render/pipelines/mod.rs | 7 +- voxygen/src/render/pipelines/sprite.rs | 4 +- voxygen/src/render/util.rs | 10 -- voxygen/src/scene/figure/cache.rs | 2 +- voxygen/src/scene/figure/mod.rs | 42 ++++- voxygen/src/scene/mod.rs | 2 +- voxygen/src/scene/simple.rs | 10 +- 81 files changed, 411 insertions(+), 146 deletions(-) create mode 100644 voxygen/src/anim/Cargo.toml delete mode 100644 voxygen/src/anim/mod.rs rename voxygen/src/anim/{ => src}/biped_large/idle.rs (100%) rename voxygen/src/anim/{ => src}/biped_large/jump.rs (100%) rename voxygen/src/anim/{ => src}/biped_large/mod.rs (98%) rename voxygen/src/anim/{ => src}/biped_large/run.rs (100%) rename voxygen/src/anim/{ => src}/bird_medium/fly.rs (100%) rename voxygen/src/anim/{ => src}/bird_medium/idle.rs (100%) rename voxygen/src/anim/{ => src}/bird_medium/mod.rs (98%) rename voxygen/src/anim/{ => src}/bird_medium/run.rs (100%) rename voxygen/src/anim/{ => src}/bird_small/idle.rs (100%) rename voxygen/src/anim/{ => src}/bird_small/jump.rs (100%) rename voxygen/src/anim/{ => src}/bird_small/mod.rs (97%) rename voxygen/src/anim/{ => src}/bird_small/run.rs (100%) rename voxygen/src/anim/{ => src}/character/alpha.rs (100%) rename voxygen/src/anim/{ => src}/character/beta.rs (100%) rename voxygen/src/anim/{ => src}/character/block.rs (100%) rename voxygen/src/anim/{ => src}/character/blockidle.rs (100%) rename voxygen/src/anim/{ => src}/character/charge.rs (100%) rename voxygen/src/anim/{ => src}/character/climb.rs (100%) rename voxygen/src/anim/{ => src}/character/dance.rs (100%) rename voxygen/src/anim/{ => src}/character/dash.rs (100%) rename voxygen/src/anim/{ => src}/character/equip.rs (100%) rename voxygen/src/anim/{ => src}/character/gliding.rs (100%) rename voxygen/src/anim/{ => src}/character/idle.rs (100%) rename voxygen/src/anim/{ => src}/character/jump.rs (100%) rename voxygen/src/anim/{ => src}/character/mod.rs (99%) rename voxygen/src/anim/{ => src}/character/roll.rs (100%) rename voxygen/src/anim/{ => src}/character/run.rs (100%) rename voxygen/src/anim/{ => src}/character/shoot.rs (100%) rename voxygen/src/anim/{ => src}/character/sit.rs (100%) rename voxygen/src/anim/{ => src}/character/spin.rs (100%) rename voxygen/src/anim/{ => src}/character/stand.rs (100%) rename voxygen/src/anim/{ => src}/character/swim.rs (100%) rename voxygen/src/anim/{ => src}/character/wield.rs (100%) rename voxygen/src/anim/{ => src}/critter/idle.rs (100%) rename voxygen/src/anim/{ => src}/critter/jump.rs (100%) rename voxygen/src/anim/{ => src}/critter/mod.rs (98%) rename voxygen/src/anim/{ => src}/critter/run.rs (100%) rename voxygen/src/anim/{ => src}/dragon/fly.rs (100%) rename voxygen/src/anim/{ => src}/dragon/idle.rs (100%) rename voxygen/src/anim/{ => src}/dragon/mod.rs (99%) rename voxygen/src/anim/{ => src}/dragon/run.rs (100%) create mode 100644 voxygen/src/anim/src/dyn_lib.rs rename voxygen/src/anim/{ => src}/fish_medium/idle.rs (100%) rename voxygen/src/anim/{ => src}/fish_medium/jump.rs (100%) rename voxygen/src/anim/{ => src}/fish_medium/mod.rs (97%) rename voxygen/src/anim/{ => src}/fish_medium/run.rs (100%) rename voxygen/src/anim/{ => src}/fish_small/idle.rs (100%) rename voxygen/src/anim/{ => src}/fish_small/jump.rs (100%) rename voxygen/src/anim/{ => src}/fish_small/mod.rs (97%) rename voxygen/src/anim/{ => src}/fish_small/run.rs (100%) rename voxygen/src/anim/{ => src}/fixture/mod.rs (96%) rename voxygen/src/anim/{ => src}/golem/idle.rs (100%) rename voxygen/src/anim/{ => src}/golem/jump.rs (100%) rename voxygen/src/anim/{ => src}/golem/mod.rs (98%) rename voxygen/src/anim/{ => src}/golem/run.rs (100%) create mode 100644 voxygen/src/anim/src/lib.rs rename voxygen/src/anim/{ => src}/object/mod.rs (96%) rename voxygen/src/anim/{ => src}/quadruped_medium/idle.rs (95%) rename voxygen/src/anim/{ => src}/quadruped_medium/jump.rs (93%) rename voxygen/src/anim/{ => src}/quadruped_medium/mod.rs (96%) rename voxygen/src/anim/{ => src}/quadruped_medium/run.rs (96%) rename voxygen/src/anim/{ => src}/quadruped_small/idle.rs (93%) rename voxygen/src/anim/{ => src}/quadruped_small/jump.rs (91%) rename voxygen/src/anim/{ => src}/quadruped_small/mod.rs (95%) rename voxygen/src/anim/{ => src}/quadruped_small/run.rs (92%) delete mode 100644 voxygen/src/render/util.rs diff --git a/Cargo.lock b/Cargo.lock index 50414f1559..6d3b85f8e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4594,11 +4594,23 @@ dependencies = [ "veloren-client", "veloren-common", "veloren-server", + "veloren-voxygen-anim", "veloren-world", "winit", "winres", ] +[[package]] +name = "veloren-voxygen-anim" +version = "0.6.0" +dependencies = [ + "lazy_static", + "libloading 0.6.2", + "notify", + "vek", + "veloren-common", +] + [[package]] name = "veloren-world" version = "0.6.0" diff --git a/Cargo.toml b/Cargo.toml index a5fa2b3da3..277aa6d984 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ members = [ "voxygen", "world", "network", + "voxygen/src/anim" ] # default profile for devs, fast to compile, okay enough to run, no debug information diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index fb9862bee2..bd96e5c9f4 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -12,6 +12,7 @@ default-run = "veloren-voxygen" gl = ["gfx_device_gl"] singleplayer = ["server"] tweak = ["const-tweaker"] +hot-anim = ["anim/use-dyn-lib"] default = ["gl", "singleplayer", "msgbox"] @@ -19,6 +20,8 @@ default = ["gl", "singleplayer", "msgbox"] common = { package = "veloren-common", path = "../common" } client = { package = "veloren-client", path = "../client" } +anim = { package = "veloren-voxygen-anim", path = "src/anim", default-features = false } + # Graphics gfx = "0.18.2" gfx_device_gl = { version = "0.16.2", optional = true } diff --git a/voxygen/src/anim/Cargo.toml b/voxygen/src/anim/Cargo.toml new file mode 100644 index 0000000000..b515860a7c --- /dev/null +++ b/voxygen/src/anim/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "veloren-voxygen-anim" +version = "0.6.0" +authors = ["Joshua Barretto ", "Imbris "] +edition = "2018" + +[lib] +name = "voxygen_anim" +crate-type = ["lib", "cdylib"] + +[features] +use-dyn-lib = ["libloading", "notify", "lazy_static"] +be-dyn-lib = [] + +default = ["be-dyn-lib"] + +[dependencies] +vek = { version = "0.11.2", features = ["serde"] } +common = { package = "veloren-common", path = "../../../common" } +libloading = { version = "0.6.2", optional = true } +notify = { version = "5.0.0-pre.2", optional = true } +lazy_static = { version = "1.4.0", optional = true } + diff --git a/voxygen/src/anim/mod.rs b/voxygen/src/anim/mod.rs deleted file mode 100644 index 3682db6374..0000000000 --- a/voxygen/src/anim/mod.rs +++ /dev/null @@ -1,75 +0,0 @@ -pub mod biped_large; -pub mod bird_medium; -pub mod bird_small; -pub mod character; -pub mod critter; -pub mod dragon; -pub mod fish_medium; -pub mod fish_small; -pub mod fixture; -pub mod golem; -pub mod object; -pub mod quadruped_medium; -pub mod quadruped_small; - -use crate::render::FigureBoneData; -use vek::*; - -#[derive(Copy, Clone, Debug)] -pub struct Bone { - pub offset: Vec3, - pub ori: Quaternion, - pub scale: Vec3, -} - -impl Default for Bone { - fn default() -> Self { - Self { - offset: Vec3::zero(), - ori: Quaternion::identity(), - scale: Vec3::broadcast(1.0 / 11.0), - } - } -} - -impl Bone { - pub fn compute_base_matrix(&self) -> Mat4 { - Mat4::::translation_3d(self.offset) - * Mat4::scaling_3d(self.scale) - * Mat4::from(self.ori) - } - - /// Change the current bone to be more like `target`. - fn interpolate(&mut self, target: &Bone, dt: f32) { - // TODO: Make configurable. - let factor = (15.0 * dt).min(1.0); - self.offset += (target.offset - self.offset) * factor; - self.ori = vek::Slerp::slerp(self.ori, target.ori, factor); - self.scale += (target.scale - self.scale) * factor; - } -} - -pub trait Skeleton: Send + Sync + 'static { - type Attr; - - fn bone_count(&self) -> usize { 16 } - - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3); - - /// Change the current skeleton to be more like `target`. - fn interpolate(&mut self, target: &Self, dt: f32); -} - -pub trait Animation { - type Skeleton: Skeleton; - type Dependency; - - /// Returns a new skeleton that is generated by the animation. - fn update_skeleton( - skeleton: &Self::Skeleton, - dependency: Self::Dependency, - anim_time: f64, - rate: &mut f32, - skeleton_attr: &<::Skeleton as Skeleton>::Attr, - ) -> Self::Skeleton; -} diff --git a/voxygen/src/anim/biped_large/idle.rs b/voxygen/src/anim/src/biped_large/idle.rs similarity index 100% rename from voxygen/src/anim/biped_large/idle.rs rename to voxygen/src/anim/src/biped_large/idle.rs diff --git a/voxygen/src/anim/biped_large/jump.rs b/voxygen/src/anim/src/biped_large/jump.rs similarity index 100% rename from voxygen/src/anim/biped_large/jump.rs rename to voxygen/src/anim/src/biped_large/jump.rs diff --git a/voxygen/src/anim/biped_large/mod.rs b/voxygen/src/anim/src/biped_large/mod.rs similarity index 98% rename from voxygen/src/anim/biped_large/mod.rs rename to voxygen/src/anim/src/biped_large/mod.rs index e5b3c38776..fc85fd7b03 100644 --- a/voxygen/src/anim/biped_large/mod.rs +++ b/voxygen/src/anim/src/biped_large/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; diff --git a/voxygen/src/anim/biped_large/run.rs b/voxygen/src/anim/src/biped_large/run.rs similarity index 100% rename from voxygen/src/anim/biped_large/run.rs rename to voxygen/src/anim/src/biped_large/run.rs diff --git a/voxygen/src/anim/bird_medium/fly.rs b/voxygen/src/anim/src/bird_medium/fly.rs similarity index 100% rename from voxygen/src/anim/bird_medium/fly.rs rename to voxygen/src/anim/src/bird_medium/fly.rs diff --git a/voxygen/src/anim/bird_medium/idle.rs b/voxygen/src/anim/src/bird_medium/idle.rs similarity index 100% rename from voxygen/src/anim/bird_medium/idle.rs rename to voxygen/src/anim/src/bird_medium/idle.rs diff --git a/voxygen/src/anim/bird_medium/mod.rs b/voxygen/src/anim/src/bird_medium/mod.rs similarity index 98% rename from voxygen/src/anim/bird_medium/mod.rs rename to voxygen/src/anim/src/bird_medium/mod.rs index 9d561c477a..d0a40a351b 100644 --- a/voxygen/src/anim/bird_medium/mod.rs +++ b/voxygen/src/anim/src/bird_medium/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{fly::FlyAnimation, idle::IdleAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; diff --git a/voxygen/src/anim/bird_medium/run.rs b/voxygen/src/anim/src/bird_medium/run.rs similarity index 100% rename from voxygen/src/anim/bird_medium/run.rs rename to voxygen/src/anim/src/bird_medium/run.rs diff --git a/voxygen/src/anim/bird_small/idle.rs b/voxygen/src/anim/src/bird_small/idle.rs similarity index 100% rename from voxygen/src/anim/bird_small/idle.rs rename to voxygen/src/anim/src/bird_small/idle.rs diff --git a/voxygen/src/anim/bird_small/jump.rs b/voxygen/src/anim/src/bird_small/jump.rs similarity index 100% rename from voxygen/src/anim/bird_small/jump.rs rename to voxygen/src/anim/src/bird_small/jump.rs diff --git a/voxygen/src/anim/bird_small/mod.rs b/voxygen/src/anim/src/bird_small/mod.rs similarity index 97% rename from voxygen/src/anim/bird_small/mod.rs rename to voxygen/src/anim/src/bird_small/mod.rs index 61202ed213..7937e99b4b 100644 --- a/voxygen/src/anim/bird_small/mod.rs +++ b/voxygen/src/anim/src/bird_small/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; diff --git a/voxygen/src/anim/bird_small/run.rs b/voxygen/src/anim/src/bird_small/run.rs similarity index 100% rename from voxygen/src/anim/bird_small/run.rs rename to voxygen/src/anim/src/bird_small/run.rs diff --git a/voxygen/src/anim/character/alpha.rs b/voxygen/src/anim/src/character/alpha.rs similarity index 100% rename from voxygen/src/anim/character/alpha.rs rename to voxygen/src/anim/src/character/alpha.rs diff --git a/voxygen/src/anim/character/beta.rs b/voxygen/src/anim/src/character/beta.rs similarity index 100% rename from voxygen/src/anim/character/beta.rs rename to voxygen/src/anim/src/character/beta.rs diff --git a/voxygen/src/anim/character/block.rs b/voxygen/src/anim/src/character/block.rs similarity index 100% rename from voxygen/src/anim/character/block.rs rename to voxygen/src/anim/src/character/block.rs diff --git a/voxygen/src/anim/character/blockidle.rs b/voxygen/src/anim/src/character/blockidle.rs similarity index 100% rename from voxygen/src/anim/character/blockidle.rs rename to voxygen/src/anim/src/character/blockidle.rs diff --git a/voxygen/src/anim/character/charge.rs b/voxygen/src/anim/src/character/charge.rs similarity index 100% rename from voxygen/src/anim/character/charge.rs rename to voxygen/src/anim/src/character/charge.rs diff --git a/voxygen/src/anim/character/climb.rs b/voxygen/src/anim/src/character/climb.rs similarity index 100% rename from voxygen/src/anim/character/climb.rs rename to voxygen/src/anim/src/character/climb.rs diff --git a/voxygen/src/anim/character/dance.rs b/voxygen/src/anim/src/character/dance.rs similarity index 100% rename from voxygen/src/anim/character/dance.rs rename to voxygen/src/anim/src/character/dance.rs diff --git a/voxygen/src/anim/character/dash.rs b/voxygen/src/anim/src/character/dash.rs similarity index 100% rename from voxygen/src/anim/character/dash.rs rename to voxygen/src/anim/src/character/dash.rs diff --git a/voxygen/src/anim/character/equip.rs b/voxygen/src/anim/src/character/equip.rs similarity index 100% rename from voxygen/src/anim/character/equip.rs rename to voxygen/src/anim/src/character/equip.rs diff --git a/voxygen/src/anim/character/gliding.rs b/voxygen/src/anim/src/character/gliding.rs similarity index 100% rename from voxygen/src/anim/character/gliding.rs rename to voxygen/src/anim/src/character/gliding.rs diff --git a/voxygen/src/anim/character/idle.rs b/voxygen/src/anim/src/character/idle.rs similarity index 100% rename from voxygen/src/anim/character/idle.rs rename to voxygen/src/anim/src/character/idle.rs diff --git a/voxygen/src/anim/character/jump.rs b/voxygen/src/anim/src/character/jump.rs similarity index 100% rename from voxygen/src/anim/character/jump.rs rename to voxygen/src/anim/src/character/jump.rs diff --git a/voxygen/src/anim/character/mod.rs b/voxygen/src/anim/src/character/mod.rs similarity index 99% rename from voxygen/src/anim/character/mod.rs rename to voxygen/src/anim/src/character/mod.rs index bbc0d3bfa3..7aefc2f5bf 100644 --- a/voxygen/src/anim/character/mod.rs +++ b/voxygen/src/anim/src/character/mod.rs @@ -31,8 +31,7 @@ pub use self::{ wield::WieldAnimation, }; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp; use vek::{Vec3, Vec4}; diff --git a/voxygen/src/anim/character/roll.rs b/voxygen/src/anim/src/character/roll.rs similarity index 100% rename from voxygen/src/anim/character/roll.rs rename to voxygen/src/anim/src/character/roll.rs diff --git a/voxygen/src/anim/character/run.rs b/voxygen/src/anim/src/character/run.rs similarity index 100% rename from voxygen/src/anim/character/run.rs rename to voxygen/src/anim/src/character/run.rs diff --git a/voxygen/src/anim/character/shoot.rs b/voxygen/src/anim/src/character/shoot.rs similarity index 100% rename from voxygen/src/anim/character/shoot.rs rename to voxygen/src/anim/src/character/shoot.rs diff --git a/voxygen/src/anim/character/sit.rs b/voxygen/src/anim/src/character/sit.rs similarity index 100% rename from voxygen/src/anim/character/sit.rs rename to voxygen/src/anim/src/character/sit.rs diff --git a/voxygen/src/anim/character/spin.rs b/voxygen/src/anim/src/character/spin.rs similarity index 100% rename from voxygen/src/anim/character/spin.rs rename to voxygen/src/anim/src/character/spin.rs diff --git a/voxygen/src/anim/character/stand.rs b/voxygen/src/anim/src/character/stand.rs similarity index 100% rename from voxygen/src/anim/character/stand.rs rename to voxygen/src/anim/src/character/stand.rs diff --git a/voxygen/src/anim/character/swim.rs b/voxygen/src/anim/src/character/swim.rs similarity index 100% rename from voxygen/src/anim/character/swim.rs rename to voxygen/src/anim/src/character/swim.rs diff --git a/voxygen/src/anim/character/wield.rs b/voxygen/src/anim/src/character/wield.rs similarity index 100% rename from voxygen/src/anim/character/wield.rs rename to voxygen/src/anim/src/character/wield.rs diff --git a/voxygen/src/anim/critter/idle.rs b/voxygen/src/anim/src/critter/idle.rs similarity index 100% rename from voxygen/src/anim/critter/idle.rs rename to voxygen/src/anim/src/critter/idle.rs diff --git a/voxygen/src/anim/critter/jump.rs b/voxygen/src/anim/src/critter/jump.rs similarity index 100% rename from voxygen/src/anim/critter/jump.rs rename to voxygen/src/anim/src/critter/jump.rs diff --git a/voxygen/src/anim/critter/mod.rs b/voxygen/src/anim/src/critter/mod.rs similarity index 98% rename from voxygen/src/anim/critter/mod.rs rename to voxygen/src/anim/src/critter/mod.rs index 85268c3f06..80b9d3cd12 100644 --- a/voxygen/src/anim/critter/mod.rs +++ b/voxygen/src/anim/src/critter/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; diff --git a/voxygen/src/anim/critter/run.rs b/voxygen/src/anim/src/critter/run.rs similarity index 100% rename from voxygen/src/anim/critter/run.rs rename to voxygen/src/anim/src/critter/run.rs diff --git a/voxygen/src/anim/dragon/fly.rs b/voxygen/src/anim/src/dragon/fly.rs similarity index 100% rename from voxygen/src/anim/dragon/fly.rs rename to voxygen/src/anim/src/dragon/fly.rs diff --git a/voxygen/src/anim/dragon/idle.rs b/voxygen/src/anim/src/dragon/idle.rs similarity index 100% rename from voxygen/src/anim/dragon/idle.rs rename to voxygen/src/anim/src/dragon/idle.rs diff --git a/voxygen/src/anim/dragon/mod.rs b/voxygen/src/anim/src/dragon/mod.rs similarity index 99% rename from voxygen/src/anim/dragon/mod.rs rename to voxygen/src/anim/src/dragon/mod.rs index 8e4ea6ff40..e949f44a69 100644 --- a/voxygen/src/anim/dragon/mod.rs +++ b/voxygen/src/anim/src/dragon/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{fly::FlyAnimation, idle::IdleAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; diff --git a/voxygen/src/anim/dragon/run.rs b/voxygen/src/anim/src/dragon/run.rs similarity index 100% rename from voxygen/src/anim/dragon/run.rs rename to voxygen/src/anim/src/dragon/run.rs diff --git a/voxygen/src/anim/src/dyn_lib.rs b/voxygen/src/anim/src/dyn_lib.rs new file mode 100644 index 0000000000..b870ca1c26 --- /dev/null +++ b/voxygen/src/anim/src/dyn_lib.rs @@ -0,0 +1,109 @@ +use lazy_static::lazy_static; +use libloading::Library; +use notify::{ + event::{AccessKind, AccessMode}, + immediate_watcher, EventKind, RecursiveMode, Watcher, +}; +use std::{ + process::{Command, Stdio}, + sync::Mutex, +}; + +lazy_static! { + pub static ref LIB: Mutex> = Mutex::new(Some(LoadedLib::compile_load())); +} + +pub struct LoadedLib { + pub lib: Library, +} + +impl LoadedLib { + fn compile_load() -> Self { + // Compile + let _output = Command::new("cargo") + .stderr(Stdio::inherit()) + .stdout(Stdio::inherit()) + .arg("build") + .arg("--release") + .arg("--package") + .arg("veloren-voxygen-anim") + .output() + .unwrap(); + + Self::load() + } + + fn load() -> Self { + #[cfg(target_os = "windows")] + let lib = Library::new("../target/release/libvoxygen_anim.dll").unwrap(); + #[cfg(not(target_os = "windows"))] + let lib = Library::new("../target/release/libvoxygen_anim.so").unwrap(); + + Self { lib } + } +} + +// Starts up watcher test test2 test3 test4 test5 +pub fn init() { + // Start watcher + let mut watcher = immediate_watcher(event_fn).unwrap(); + watcher.watch("src/anim", RecursiveMode::Recursive).unwrap(); + + // Let the watcher live forever + std::mem::forget(watcher); +} + +// Recompiles and hotreloads the lib if the source is changed +// Note: designed with voxygen dir as working dir, could be made more flexible +fn event_fn(res: notify::Result) { + match res { + Ok(event) => match event.kind { + EventKind::Access(AccessKind::Close(AccessMode::Write)) => { + if event + .paths + .iter() + .any(|p| p.extension().map(|e| e == "rs").unwrap_or(false)) + { + println!( + "Hot reloading animations because these files were modified:\n{:?}", + event.paths + ); + reload(); + } + }, + _ => {}, + }, + Err(e) => println!("watch error: {:?}", e), + } +} + +fn reload() { + // Compile + let output = Command::new("cargo") + .stderr(Stdio::inherit()) + .stdout(Stdio::inherit()) + .arg("build") + .arg("--release") + .arg("--package") + .arg("veloren-voxygen-anim") + .output() + .unwrap(); + + // Stop if recompile failed + if !output.status.success() { + println!("Failed to compile anim crate"); + return; + } + + println!("Compile Success!!"); + + let mut lock = LIB.lock().unwrap(); + + // Close lib + lock.take().unwrap().lib.close().unwrap(); + + // Open new lib + *lock = Some(LoadedLib::load()); + + println!("Updated"); +} diff --git a/voxygen/src/anim/fish_medium/idle.rs b/voxygen/src/anim/src/fish_medium/idle.rs similarity index 100% rename from voxygen/src/anim/fish_medium/idle.rs rename to voxygen/src/anim/src/fish_medium/idle.rs diff --git a/voxygen/src/anim/fish_medium/jump.rs b/voxygen/src/anim/src/fish_medium/jump.rs similarity index 100% rename from voxygen/src/anim/fish_medium/jump.rs rename to voxygen/src/anim/src/fish_medium/jump.rs diff --git a/voxygen/src/anim/fish_medium/mod.rs b/voxygen/src/anim/src/fish_medium/mod.rs similarity index 97% rename from voxygen/src/anim/fish_medium/mod.rs rename to voxygen/src/anim/src/fish_medium/mod.rs index 4693f0fea9..04533f5a04 100644 --- a/voxygen/src/anim/fish_medium/mod.rs +++ b/voxygen/src/anim/src/fish_medium/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; diff --git a/voxygen/src/anim/fish_medium/run.rs b/voxygen/src/anim/src/fish_medium/run.rs similarity index 100% rename from voxygen/src/anim/fish_medium/run.rs rename to voxygen/src/anim/src/fish_medium/run.rs diff --git a/voxygen/src/anim/fish_small/idle.rs b/voxygen/src/anim/src/fish_small/idle.rs similarity index 100% rename from voxygen/src/anim/fish_small/idle.rs rename to voxygen/src/anim/src/fish_small/idle.rs diff --git a/voxygen/src/anim/fish_small/jump.rs b/voxygen/src/anim/src/fish_small/jump.rs similarity index 100% rename from voxygen/src/anim/fish_small/jump.rs rename to voxygen/src/anim/src/fish_small/jump.rs diff --git a/voxygen/src/anim/fish_small/mod.rs b/voxygen/src/anim/src/fish_small/mod.rs similarity index 97% rename from voxygen/src/anim/fish_small/mod.rs rename to voxygen/src/anim/src/fish_small/mod.rs index 547e376ccf..d201989b99 100644 --- a/voxygen/src/anim/fish_small/mod.rs +++ b/voxygen/src/anim/src/fish_small/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; diff --git a/voxygen/src/anim/fish_small/run.rs b/voxygen/src/anim/src/fish_small/run.rs similarity index 100% rename from voxygen/src/anim/fish_small/run.rs rename to voxygen/src/anim/src/fish_small/run.rs diff --git a/voxygen/src/anim/fixture/mod.rs b/voxygen/src/anim/src/fixture/mod.rs similarity index 96% rename from voxygen/src/anim/fixture/mod.rs rename to voxygen/src/anim/src/fixture/mod.rs index 89ddd153af..a95bcb9729 100644 --- a/voxygen/src/anim/fixture/mod.rs +++ b/voxygen/src/anim/src/fixture/mod.rs @@ -1,5 +1,4 @@ -use super::Skeleton; -use crate::render::FigureBoneData; +use super::{FigureBoneData, Skeleton}; use vek::Vec3; #[derive(Clone)] diff --git a/voxygen/src/anim/golem/idle.rs b/voxygen/src/anim/src/golem/idle.rs similarity index 100% rename from voxygen/src/anim/golem/idle.rs rename to voxygen/src/anim/src/golem/idle.rs diff --git a/voxygen/src/anim/golem/jump.rs b/voxygen/src/anim/src/golem/jump.rs similarity index 100% rename from voxygen/src/anim/golem/jump.rs rename to voxygen/src/anim/src/golem/jump.rs diff --git a/voxygen/src/anim/golem/mod.rs b/voxygen/src/anim/src/golem/mod.rs similarity index 98% rename from voxygen/src/anim/golem/mod.rs rename to voxygen/src/anim/src/golem/mod.rs index 415b93f631..7329bff0e8 100644 --- a/voxygen/src/anim/golem/mod.rs +++ b/voxygen/src/anim/src/golem/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; diff --git a/voxygen/src/anim/golem/run.rs b/voxygen/src/anim/src/golem/run.rs similarity index 100% rename from voxygen/src/anim/golem/run.rs rename to voxygen/src/anim/src/golem/run.rs diff --git a/voxygen/src/anim/src/lib.rs b/voxygen/src/anim/src/lib.rs new file mode 100644 index 0000000000..17bec61d54 --- /dev/null +++ b/voxygen/src/anim/src/lib.rs @@ -0,0 +1,158 @@ +// TODO: we could probably avoid the need for this +#[cfg(all(feature = "be-dyn-lib", feature = "use-dyn-lib"))] +compile_error!("Can't use both \"be-dyn-lib\" and \"use-dyn-lib\" features at once"); + +pub mod biped_large; +pub mod bird_medium; +pub mod bird_small; +pub mod character; +pub mod critter; +pub mod dragon; +#[cfg(feature = "use-dyn-lib")] pub mod dyn_lib; +pub mod fish_medium; +pub mod fish_small; +pub mod fixture; +pub mod golem; +pub mod object; +pub mod quadruped_medium; +pub mod quadruped_small; + +#[cfg(feature = "use-dyn-lib")] +pub use dyn_lib::init; + +use vek::*; + +// TODO: replace with inner type everywhere +pub struct FigureBoneData(pub Mat4); +impl FigureBoneData { + pub fn new(mat: Mat4) -> Self { Self(mat) } + + pub fn default() -> Self { Self(Mat4::identity()) } +} + +#[derive(Copy, Clone, Debug)] +pub struct Bone { + pub offset: Vec3, + pub ori: Quaternion, + pub scale: Vec3, +} + +impl Default for Bone { + fn default() -> Self { + Self { + offset: Vec3::zero(), + ori: Quaternion::identity(), + scale: Vec3::broadcast(1.0 / 11.0), + } + } +} + +impl Bone { + pub fn compute_base_matrix(&self) -> Mat4 { + Mat4::::translation_3d(self.offset) + * Mat4::scaling_3d(self.scale) + * Mat4::from(self.ori) + } + + /// Change the current bone to be more like `target`. + fn interpolate(&mut self, target: &Bone, dt: f32) { + // TODO: Make configurable. + let factor = (15.0 * dt).min(1.0); + self.offset += (target.offset - self.offset) * factor; + self.ori = vek::Slerp::slerp(self.ori, target.ori, factor); + self.scale += (target.scale - self.scale) * factor; + } +} + +pub trait Skeleton: Send + Sync + 'static { + type Attr; + + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"\0"; + + fn bone_count(&self) -> usize { 16 } + + fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg(not(feature = "use-dyn-lib"))] + { + Self::compute_matrices_inner(self) + } + #[cfg(feature = "use-dyn-lib")] + { + let lock = dyn_lib::LIB.lock().unwrap(); + let lib = &lock.as_ref().unwrap().lib; + + let compute_fn: libloading::Symbol ([FigureBoneData; 16], Vec3)> = + unsafe { lib.get(Self::COMPUTE_FN).unwrap() }; + + compute_fn(self) + } + } + + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { + panic!( + "Neither compute_matrices_inner nor compute_matrices override present in Animation \ + impl" + ) + } + + /// Change the current skeleton to be more like `target`. + fn interpolate(&mut self, target: &Self, dt: f32); +} + +pub trait Animation { + type Skeleton: Skeleton; + type Dependency; + + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"\0"; + + /// Returns a new skeleton that is generated by the animation. + fn update_skeleton( + skeleton: &Self::Skeleton, + dependency: Self::Dependency, + anim_time: f64, + rate: &mut f32, + skeleton_attr: &<::Skeleton as Skeleton>::Attr, + ) -> Self::Skeleton { + #[cfg(not(feature = "use-dyn-lib"))] + { + Self::update_skeleton_inner(skeleton, dependency, anim_time, rate, skeleton_attr) + } + #[cfg(feature = "use-dyn-lib")] + { + let lock = dyn_lib::LIB.lock().unwrap(); + let lib = &lock.as_ref().unwrap().lib; + + let update_fn: libloading::Symbol< + fn( + &Self::Skeleton, + Self::Dependency, + f64, + &mut f32, + &::Attr, + ) -> Self::Skeleton, + > = unsafe { + //let start = std::time::Instant::now(); + // Overhead of 0.5-5 us (could use hashmap to mitigate if this is an issue) + let f = lib.get(Self::UPDATE_FN).unwrap(); + //println!("{}", start.elapsed().as_nanos()); + f + }; + + update_fn(skeleton, dependency, anim_time, rate, skeleton_attr) + } + } + + fn update_skeleton_inner( + _skeleton: &Self::Skeleton, + _dependency: Self::Dependency, + _anim_time: f64, + _rate: &mut f32, + _skeleton_attr: &<::Skeleton as Skeleton>::Attr, + ) -> Self::Skeleton { + panic!( + "Neither update_skeleton_inner nor update_skeleton override present in Animation impl" + ) + } +} diff --git a/voxygen/src/anim/object/mod.rs b/voxygen/src/anim/src/object/mod.rs similarity index 96% rename from voxygen/src/anim/object/mod.rs rename to voxygen/src/anim/src/object/mod.rs index ec84809741..8b5b213429 100644 --- a/voxygen/src/anim/object/mod.rs +++ b/voxygen/src/anim/src/object/mod.rs @@ -1,5 +1,4 @@ -use super::Skeleton; -use crate::render::FigureBoneData; +use super::{FigureBoneData, Skeleton}; use vek::*; #[derive(Clone)] diff --git a/voxygen/src/anim/quadruped_medium/idle.rs b/voxygen/src/anim/src/quadruped_medium/idle.rs similarity index 95% rename from voxygen/src/anim/quadruped_medium/idle.rs rename to voxygen/src/anim/src/quadruped_medium/idle.rs index d47848cca1..99815d01a3 100644 --- a/voxygen/src/anim/quadruped_medium/idle.rs +++ b/voxygen/src/anim/src/quadruped_medium/idle.rs @@ -8,7 +8,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = QuadrupedMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"quadruped_medium_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_medium_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/quadruped_medium/jump.rs b/voxygen/src/anim/src/quadruped_medium/jump.rs similarity index 93% rename from voxygen/src/anim/quadruped_medium/jump.rs rename to voxygen/src/anim/src/quadruped_medium/jump.rs index da66316fa0..09be93ca59 100644 --- a/voxygen/src/anim/quadruped_medium/jump.rs +++ b/voxygen/src/anim/src/quadruped_medium/jump.rs @@ -7,7 +7,11 @@ impl Animation for JumpAnimation { type Dependency = (f32, f64); type Skeleton = QuadrupedMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"quadruped_medium_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_medium_jump")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs similarity index 96% rename from voxygen/src/anim/quadruped_medium/mod.rs rename to voxygen/src/anim/src/quadruped_medium/mod.rs index e69cfe6fb1..bf65ab0750 100644 --- a/voxygen/src/anim/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; @@ -32,9 +31,13 @@ impl QuadrupedMediumSkeleton { impl Skeleton for QuadrupedMediumSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"quadruped_medium_compute_mats\0"; + fn bone_count(&self) -> usize { 11 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_medium_compute_mats")] + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let ears_mat = self.ears.compute_base_matrix(); let head_upper_mat = self.head_upper.compute_base_matrix(); let head_lower_mat = self.head_lower.compute_base_matrix(); diff --git a/voxygen/src/anim/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs similarity index 96% rename from voxygen/src/anim/quadruped_medium/run.rs rename to voxygen/src/anim/src/quadruped_medium/run.rs index d87deabc56..07ca660220 100644 --- a/voxygen/src/anim/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -8,7 +8,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = QuadrupedMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"quadruped_medium_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_medium_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/quadruped_small/idle.rs b/voxygen/src/anim/src/quadruped_small/idle.rs similarity index 93% rename from voxygen/src/anim/quadruped_small/idle.rs rename to voxygen/src/anim/src/quadruped_small/idle.rs index 38706e65c7..1aa53671b4 100644 --- a/voxygen/src/anim/quadruped_small/idle.rs +++ b/voxygen/src/anim/src/quadruped_small/idle.rs @@ -8,7 +8,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = QuadrupedSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"quadruped_small_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_small_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/quadruped_small/jump.rs b/voxygen/src/anim/src/quadruped_small/jump.rs similarity index 91% rename from voxygen/src/anim/quadruped_small/jump.rs rename to voxygen/src/anim/src/quadruped_small/jump.rs index 9ad8c16499..fd52280d8e 100644 --- a/voxygen/src/anim/quadruped_small/jump.rs +++ b/voxygen/src/anim/src/quadruped_small/jump.rs @@ -7,7 +7,11 @@ impl Animation for JumpAnimation { type Dependency = (f32, f64); type Skeleton = QuadrupedSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"quadruped_small_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_small_jump")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, _global_time): Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/quadruped_small/mod.rs b/voxygen/src/anim/src/quadruped_small/mod.rs similarity index 95% rename from voxygen/src/anim/quadruped_small/mod.rs rename to voxygen/src/anim/src/quadruped_small/mod.rs index 3254412fb7..4031671b40 100644 --- a/voxygen/src/anim/quadruped_small/mod.rs +++ b/voxygen/src/anim/src/quadruped_small/mod.rs @@ -5,8 +5,7 @@ pub mod run; // Reexports pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; -use super::{Bone, Skeleton}; -use crate::render::FigureBoneData; +use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; @@ -28,9 +27,13 @@ impl QuadrupedSmallSkeleton { impl Skeleton for QuadrupedSmallSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"quadruped_small_compute_mats\0"; + fn bone_count(&self) -> usize { 7 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_small_compute_mats")] + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let chest_mat = self.chest.compute_base_matrix(); ( [ diff --git a/voxygen/src/anim/quadruped_small/run.rs b/voxygen/src/anim/src/quadruped_small/run.rs similarity index 92% rename from voxygen/src/anim/quadruped_small/run.rs rename to voxygen/src/anim/src/quadruped_small/run.rs index 7e6daa30a1..a2b26d938c 100644 --- a/voxygen/src/anim/quadruped_small/run.rs +++ b/voxygen/src/anim/src/quadruped_small/run.rs @@ -8,7 +8,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = QuadrupedSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"quadruped_small_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_small_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/lib.rs b/voxygen/src/lib.rs index de25dc82ed..02bc36d053 100644 --- a/voxygen/src/lib.rs +++ b/voxygen/src/lib.rs @@ -5,7 +5,6 @@ #[macro_use] pub mod ui; -pub mod anim; pub mod audio; pub mod controller; mod ecs; diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index 54fdd777dd..2f2b37ec20 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -162,6 +162,10 @@ fn main() { default_hook(panic_info); })); + // Initialise watcher for animation hotreloading + #[cfg(feature = "hot-anim")] + anim::init(); + // Set up the initial play state. let mut states: Vec> = vec![Box::new(MainMenuState::new(&mut global_state))]; states diff --git a/voxygen/src/render/mod.rs b/voxygen/src/render/mod.rs index 605ca1e4e2..9bf74d5aa9 100644 --- a/voxygen/src/render/mod.rs +++ b/voxygen/src/render/mod.rs @@ -7,7 +7,6 @@ pub mod model; pub mod pipelines; pub mod renderer; pub mod texture; -mod util; // Reexports pub use self::{ diff --git a/voxygen/src/render/pipelines/figure.rs b/voxygen/src/render/pipelines/figure.rs index 94d1272112..e0226d0aa0 100644 --- a/voxygen/src/render/pipelines/figure.rs +++ b/voxygen/src/render/pipelines/figure.rs @@ -1,5 +1,5 @@ use super::{ - super::{util::arr_to_mat, Pipeline, TgtColorFmt, TgtDepthStencilFmt}, + super::{Pipeline, TgtColorFmt, TgtDepthStencilFmt}, Globals, Light, Shadow, }; use gfx::{ @@ -81,7 +81,7 @@ impl Locals { flags |= is_player as u32; Self { - model_mat: arr_to_mat(model_mat.into_col_array()), + model_mat: model_mat.into_col_arrays(), model_col: col.into_array(), flags, } @@ -95,7 +95,7 @@ impl Default for Locals { impl BoneData { pub fn new(bone_mat: Mat4) -> Self { Self { - bone_mat: arr_to_mat(bone_mat.into_col_array()), + bone_mat: bone_mat.into_col_arrays(), } } diff --git a/voxygen/src/render/pipelines/mod.rs b/voxygen/src/render/pipelines/mod.rs index 3f661a2cdc..81ef76456f 100644 --- a/voxygen/src/render/pipelines/mod.rs +++ b/voxygen/src/render/pipelines/mod.rs @@ -6,7 +6,6 @@ pub mod sprite; pub mod terrain; pub mod ui; -use super::util::arr_to_mat; use crate::scene::camera::CameraMode; use common::terrain::BlockKind; use gfx::{self, gfx_constant_struct_meta, gfx_defines, gfx_impl_struct_meta}; @@ -64,9 +63,9 @@ impl Globals { sprite_render_distance: f32, ) -> Self { Self { - view_mat: arr_to_mat(view_mat.into_col_array()), - proj_mat: arr_to_mat(proj_mat.into_col_array()), - all_mat: arr_to_mat((proj_mat * view_mat).into_col_array()), + view_mat: view_mat.into_col_arrays(), + proj_mat: proj_mat.into_col_arrays(), + all_mat: (proj_mat * view_mat).into_col_arrays(), cam_pos: Vec4::from(cam_pos).into_array(), focus_pos: Vec4::from(focus_pos).into_array(), view_distance: [view_distance; 4], diff --git a/voxygen/src/render/pipelines/sprite.rs b/voxygen/src/render/pipelines/sprite.rs index c0747faa88..9eb562eb49 100644 --- a/voxygen/src/render/pipelines/sprite.rs +++ b/voxygen/src/render/pipelines/sprite.rs @@ -1,5 +1,5 @@ use super::{ - super::{util::arr_to_mat, Pipeline, TgtColorFmt, TgtDepthStencilFmt}, + super::{Pipeline, TgtColorFmt, TgtDepthStencilFmt}, Globals, Light, Shadow, }; use gfx::{ @@ -67,7 +67,7 @@ impl Vertex { impl Instance { pub fn new(mat: Mat4, col: Rgb, wind_sway: f32) -> Self { - let mat_arr = arr_to_mat(mat.into_col_array()); + let mat_arr = mat.into_col_arrays(); Self { inst_mat0: mat_arr[0], inst_mat1: mat_arr[1], diff --git a/voxygen/src/render/util.rs b/voxygen/src/render/util.rs deleted file mode 100644 index 68b52f671a..0000000000 --- a/voxygen/src/render/util.rs +++ /dev/null @@ -1,10 +0,0 @@ -// TODO: Get rid of this ugliness. -#[rustfmt::skip] -pub fn arr_to_mat(arr: [f32; 16]) -> [[f32; 4]; 4] { - [ - [arr[ 0], arr[ 1], arr[ 2], arr[ 3]], - [arr[ 4], arr[ 5], arr[ 6], arr[ 7]], - [arr[ 8], arr[ 9], arr[10], arr[11]], - [arr[12], arr[13], arr[14], arr[15]], - ] -} diff --git a/voxygen/src/scene/figure/cache.rs b/voxygen/src/scene/figure/cache.rs index cb89da0a1d..25fbeea417 100644 --- a/voxygen/src/scene/figure/cache.rs +++ b/voxygen/src/scene/figure/cache.rs @@ -1,10 +1,10 @@ use super::load::*; use crate::{ - anim::{self, Skeleton}, mesh::Meshable, render::{FigurePipeline, Mesh, Model, Renderer}, scene::camera::CameraMode, }; +use anim::{Skeleton}; use common::{ assets::watch::ReloadIndicator, comp::{ diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index c8f2fd3b27..50c1f1f630 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -5,13 +5,6 @@ pub use cache::FigureModelCache; pub use load::load_mesh; // TODO: Don't make this public. use crate::{ - anim::{ - self, biped_large::BipedLargeSkeleton, bird_medium::BirdMediumSkeleton, - bird_small::BirdSmallSkeleton, character::CharacterSkeleton, critter::CritterSkeleton, - dragon::DragonSkeleton, fish_medium::FishMediumSkeleton, fish_small::FishSmallSkeleton, - golem::GolemSkeleton, object::ObjectSkeleton, quadruped_medium::QuadrupedMediumSkeleton, - quadruped_small::QuadrupedSmallSkeleton, Animation, Skeleton, - }, ecs::comp::Interpolated, render::{Consts, FigureBoneData, FigureLocals, Globals, Light, Renderer, Shadow}, scene::{ @@ -19,6 +12,13 @@ use crate::{ SceneData, }, }; +use anim::{ + biped_large::BipedLargeSkeleton, bird_medium::BirdMediumSkeleton, + bird_small::BirdSmallSkeleton, character::CharacterSkeleton, critter::CritterSkeleton, + dragon::DragonSkeleton, fish_medium::FishMediumSkeleton, fish_small::FishSmallSkeleton, + golem::GolemSkeleton, object::ObjectSkeleton, quadruped_medium::QuadrupedMediumSkeleton, + quadruped_small::QuadrupedSmallSkeleton, Animation, Skeleton, +}; use common::{ comp::{ item::ItemKind, Body, CharacterState, Last, LightAnimation, LightEmitter, Loadout, Ori, @@ -2037,7 +2037,8 @@ pub struct FigureState { impl FigureState { pub fn new(renderer: &mut Renderer, skeleton: S) -> Self { - let (bone_consts, lantern_offset) = skeleton.compute_matrices(); + let (bone_mats, lantern_offset) = skeleton.compute_matrices(); + let bone_consts = figure_bone_data_from_anim(bone_mats); Self { bone_consts: renderer.create_consts(&bone_consts).unwrap(), locals: renderer.create_consts(&[FigureLocals::default()]).unwrap(), @@ -2081,7 +2082,9 @@ impl FigureState { let locals = FigureLocals::new(mat, col, is_player); renderer.update_consts(&mut self.locals, &[locals]).unwrap(); - let (new_bone_consts, lantern_offset) = self.skeleton.compute_matrices(); + let (new_bone_mats, lantern_offset) = self.skeleton.compute_matrices(); + let new_bone_consts = figure_bone_data_from_anim(new_bone_mats); + renderer .update_consts( &mut self.bone_consts, @@ -2097,3 +2100,24 @@ impl FigureState { pub fn skeleton_mut(&mut self) -> &mut S { &mut self.skeleton } } + +fn figure_bone_data_from_anim(mats: [anim::FigureBoneData; 16]) -> [FigureBoneData; 16] { + [ + FigureBoneData::new(mats[0].0), + FigureBoneData::new(mats[1].0), + FigureBoneData::new(mats[2].0), + FigureBoneData::new(mats[3].0), + FigureBoneData::new(mats[4].0), + FigureBoneData::new(mats[5].0), + FigureBoneData::new(mats[6].0), + FigureBoneData::new(mats[7].0), + FigureBoneData::new(mats[8].0), + FigureBoneData::new(mats[9].0), + FigureBoneData::new(mats[10].0), + FigureBoneData::new(mats[11].0), + FigureBoneData::new(mats[12].0), + FigureBoneData::new(mats[13].0), + FigureBoneData::new(mats[14].0), + FigureBoneData::new(mats[15].0), + ] +} diff --git a/voxygen/src/scene/mod.rs b/voxygen/src/scene/mod.rs index 914b5e98f0..31923d547a 100644 --- a/voxygen/src/scene/mod.rs +++ b/voxygen/src/scene/mod.rs @@ -9,7 +9,6 @@ use self::{ terrain::Terrain, }; use crate::{ - anim::character::SkeletonAttr, audio::{music::MusicMgr, sfx::SfxMgr, AudioFrontend}, render::{ create_pp_mesh, create_skybox_mesh, Consts, Globals, Light, Model, PostProcessLocals, @@ -17,6 +16,7 @@ use crate::{ }, window::{AnalogGameInput, Event}, }; +use anim::character::SkeletonAttr; use common::{ comp, state::State, diff --git a/voxygen/src/scene/simple.rs b/voxygen/src/scene/simple.rs index c4c8f4e235..22e971d1ed 100644 --- a/voxygen/src/scene/simple.rs +++ b/voxygen/src/scene/simple.rs @@ -1,9 +1,4 @@ use crate::{ - anim::{ - character::{CharacterSkeleton, IdleAnimation, SkeletonAttr}, - fixture::FixtureSkeleton, - Animation, Skeleton, - }, mesh::Meshable, render::{ create_pp_mesh, create_skybox_mesh, Consts, FigurePipeline, Globals, Light, Mesh, Model, @@ -15,6 +10,11 @@ use crate::{ }, window::{Event, PressState}, }; +use anim::{ + character::{CharacterSkeleton, IdleAnimation, SkeletonAttr}, + fixture::FixtureSkeleton, + Animation, Skeleton, +}; use common::{ comp::{humanoid, Body, Loadout}, figure::Segment, From 16cc1c62a1a9d5f81cb1911eef2a33b43a5b5ab0 Mon Sep 17 00:00:00 2001 From: Imbris Date: Wed, 17 Jun 2020 20:09:12 -0400 Subject: [PATCH 2/6] Use debug, try to fix windows path --- voxygen/src/anim/src/dyn_lib.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/voxygen/src/anim/src/dyn_lib.rs b/voxygen/src/anim/src/dyn_lib.rs index b870ca1c26..b783be9a17 100644 --- a/voxygen/src/anim/src/dyn_lib.rs +++ b/voxygen/src/anim/src/dyn_lib.rs @@ -24,7 +24,6 @@ impl LoadedLib { .stderr(Stdio::inherit()) .stdout(Stdio::inherit()) .arg("build") - .arg("--release") .arg("--package") .arg("veloren-voxygen-anim") .output() @@ -35,9 +34,9 @@ impl LoadedLib { fn load() -> Self { #[cfg(target_os = "windows")] - let lib = Library::new("../target/release/libvoxygen_anim.dll").unwrap(); + let lib = Library::new("../target/debug/voxygen_anim.dll").unwrap(); #[cfg(not(target_os = "windows"))] - let lib = Library::new("../target/release/libvoxygen_anim.so").unwrap(); + let lib = Library::new("../target/debug/libvoxygen_anim.so").unwrap(); Self { lib } } @@ -83,7 +82,6 @@ fn reload() { .stderr(Stdio::inherit()) .stdout(Stdio::inherit()) .arg("build") - .arg("--release") .arg("--package") .arg("veloren-voxygen-anim") .output() From 2be5d0746dc3d9c49af4537ed511bc066423a5af Mon Sep 17 00:00:00 2001 From: Imbris Date: Wed, 17 Jun 2020 21:16:27 -0400 Subject: [PATCH 3/6] Switch to using modify events with 300ms delay to prevent double reloading when notify produces multiple events at once --- voxygen/src/anim/src/dyn_lib.rs | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/voxygen/src/anim/src/dyn_lib.rs b/voxygen/src/anim/src/dyn_lib.rs index b783be9a17..790899273d 100644 --- a/voxygen/src/anim/src/dyn_lib.rs +++ b/voxygen/src/anim/src/dyn_lib.rs @@ -1,9 +1,6 @@ use lazy_static::lazy_static; use libloading::Library; -use notify::{ - event::{AccessKind, AccessMode}, - immediate_watcher, EventKind, RecursiveMode, Watcher, -}; +use notify::{immediate_watcher, EventKind, RecursiveMode, Watcher}; use std::{ process::{Command, Stdio}, sync::Mutex, @@ -42,22 +39,38 @@ impl LoadedLib { } } -// Starts up watcher test test2 test3 test4 test5 +// Starts up watcher pub fn init() { + // TODO: use crossbeam + let (reload_send, reload_recv) = std::sync::mpsc::channel(); + // Start watcher - let mut watcher = immediate_watcher(event_fn).unwrap(); + let mut watcher = immediate_watcher(move |res| event_fn(res, &reload_send)).unwrap(); watcher.watch("src/anim", RecursiveMode::Recursive).unwrap(); + // Start reloader that watcher signals + // "Debounces" events since I can't find the option to do this in the latest + // `notify` + std::thread::spawn(move || { + while let Ok(()) = reload_recv.recv() { + // Wait for another modify event before reloading + while let Ok(()) = reload_recv.recv_timeout(std::time::Duration::from_millis(300)) {} + + // Reload + reload(); + } + }); + // Let the watcher live forever std::mem::forget(watcher); } // Recompiles and hotreloads the lib if the source is changed // Note: designed with voxygen dir as working dir, could be made more flexible -fn event_fn(res: notify::Result) { +fn event_fn(res: notify::Result, sender: &std::sync::mpsc::Sender<()>) { match res { Ok(event) => match event.kind { - EventKind::Access(AccessKind::Close(AccessMode::Write)) => { + EventKind::Modify(_) => { if event .paths .iter() @@ -67,7 +80,9 @@ fn event_fn(res: notify::Result) { "Hot reloading animations because these files were modified:\n{:?}", event.paths ); - reload(); + + // Signal reloader + let _ = sender.send(()); } }, _ => {}, From 64421942c6d428fccc5d40a56e97e4f1193480d6 Mon Sep 17 00:00:00 2001 From: Imbris Date: Thu, 18 Jun 2020 02:45:49 -0400 Subject: [PATCH 4/6] Windows is weird, cargo is weird..... (also tidy up a few things) --- Cargo.lock | 1 + voxygen/src/anim/Cargo.toml | 4 +- voxygen/src/anim/src/dyn_lib.rs | 119 +++++++++++++++++++----------- voxygen/src/anim/src/lib.rs | 27 ++++++- voxygen/src/scene/figure/cache.rs | 2 +- voxygen/src/scene/figure/mod.rs | 32 ++++---- 6 files changed, 120 insertions(+), 65 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d3b85f8e0..7a15df740c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4606,6 +4606,7 @@ version = "0.6.0" dependencies = [ "lazy_static", "libloading 0.6.2", + "log", "notify", "vek", "veloren-common", diff --git a/voxygen/src/anim/Cargo.toml b/voxygen/src/anim/Cargo.toml index b515860a7c..c2b2b72633 100644 --- a/voxygen/src/anim/Cargo.toml +++ b/voxygen/src/anim/Cargo.toml @@ -9,7 +9,7 @@ name = "voxygen_anim" crate-type = ["lib", "cdylib"] [features] -use-dyn-lib = ["libloading", "notify", "lazy_static"] +use-dyn-lib = ["libloading", "notify", "lazy_static", "log"] be-dyn-lib = [] default = ["be-dyn-lib"] @@ -20,4 +20,4 @@ common = { package = "veloren-common", path = "../../../common" } libloading = { version = "0.6.2", optional = true } notify = { version = "5.0.0-pre.2", optional = true } lazy_static = { version = "1.4.0", optional = true } - +log = { version = "0.4.8", optional = true } diff --git a/voxygen/src/anim/src/dyn_lib.rs b/voxygen/src/anim/src/dyn_lib.rs index 790899273d..6474819212 100644 --- a/voxygen/src/anim/src/dyn_lib.rs +++ b/voxygen/src/anim/src/dyn_lib.rs @@ -3,7 +3,9 @@ use libloading::Library; use notify::{immediate_watcher, EventKind, RecursiveMode, Watcher}; use std::{ process::{Command, Stdio}, - sync::Mutex, + sync::{mpsc, Mutex}, + thread, + time::Duration, }; lazy_static! { @@ -17,21 +19,17 @@ pub struct LoadedLib { impl LoadedLib { fn compile_load() -> Self { // Compile - let _output = Command::new("cargo") - .stderr(Stdio::inherit()) - .stdout(Stdio::inherit()) - .arg("build") - .arg("--package") - .arg("veloren-voxygen-anim") - .output() - .unwrap(); + compile(); + + #[cfg(target_os = "windows")] + copy(); Self::load() } fn load() -> Self { #[cfg(target_os = "windows")] - let lib = Library::new("../target/debug/voxygen_anim.dll").unwrap(); + let lib = Library::new("../target/debug/voxygen_anim_active.dll").unwrap(); #[cfg(not(target_os = "windows"))] let lib = Library::new("../target/debug/libvoxygen_anim.so").unwrap(); @@ -41,8 +39,11 @@ impl LoadedLib { // Starts up watcher pub fn init() { + // Make sure first compile is done + drop(LIB.lock()); + // TODO: use crossbeam - let (reload_send, reload_recv) = std::sync::mpsc::channel(); + let (reload_send, reload_recv) = mpsc::channel(); // Start watcher let mut watcher = immediate_watcher(move |res| event_fn(res, &reload_send)).unwrap(); @@ -51,10 +52,24 @@ pub fn init() { // Start reloader that watcher signals // "Debounces" events since I can't find the option to do this in the latest // `notify` - std::thread::spawn(move || { - while let Ok(()) = reload_recv.recv() { - // Wait for another modify event before reloading - while let Ok(()) = reload_recv.recv_timeout(std::time::Duration::from_millis(300)) {} + thread::spawn(move || { + let mut modified_paths = std::collections::HashSet::new(); + + while let Ok(path) = reload_recv.recv() { + modified_paths.insert(path); + // Wait for to see if there are more modify events before reloading + while let Ok(path) = reload_recv.recv_timeout(Duration::from_millis(300)) { + modified_paths.insert(path); + } + + let mut info = "Hot reloading animations because these files were modified:".to_owned(); + for path in std::mem::take(&mut modified_paths) { + info.push('\n'); + info.push('\"'); + info.push_str(&path); + info.push('\"'); + } + log::warn!("{}", info); // Reload reload(); @@ -67,32 +82,48 @@ pub fn init() { // Recompiles and hotreloads the lib if the source is changed // Note: designed with voxygen dir as working dir, could be made more flexible -fn event_fn(res: notify::Result, sender: &std::sync::mpsc::Sender<()>) { +fn event_fn(res: notify::Result, sender: &mpsc::Sender) { match res { Ok(event) => match event.kind { EventKind::Modify(_) => { - if event + event .paths .iter() - .any(|p| p.extension().map(|e| e == "rs").unwrap_or(false)) - { - println!( - "Hot reloading animations because these files were modified:\n{:?}", - event.paths - ); - + .filter(|p| p.extension().map(|e| e == "rs").unwrap_or(false)) + .map(|p| p.to_string_lossy().into_owned()) // Signal reloader - let _ = sender.send(()); - } + .for_each(|p| { let _ = sender.send(p); }); }, _ => {}, }, - Err(e) => println!("watch error: {:?}", e), + Err(e) => log::error!("Animation hotreload watch error: {:?}", e), } } fn reload() { - // Compile + // Stop if recompile failed + if !compile() { + return; + } + + let mut lock = LIB.lock().unwrap(); + + // Close lib + lock.take().unwrap().lib.close().unwrap(); + + // Rename lib file on windows + // Called after closing lib so file will be unlocked + #[cfg(target_os = "windows")] + copy(); + + // Open new lib + *lock = Some(LoadedLib::load()); + + log::warn!("Updated animations"); +} + +// Returns false if compile failed +fn compile() -> bool { let output = Command::new("cargo") .stderr(Stdio::inherit()) .stdout(Stdio::inherit()) @@ -102,21 +133,23 @@ fn reload() { .output() .unwrap(); - // Stop if recompile failed + // If compile failed if !output.status.success() { - println!("Failed to compile anim crate"); - return; + log::error!("Failed to compile anim crate"); + false + } else { + log::warn!("Animation recompile success!!"); + true } - - println!("Compile Success!!"); - - let mut lock = LIB.lock().unwrap(); - - // Close lib - lock.take().unwrap().lib.close().unwrap(); - - // Open new lib - *lock = Some(LoadedLib::load()); - - println!("Updated"); +} + +// Copy lib file if on windows since loading the lib locks the file blocking +// future compilation +#[cfg(target_os = "windows")] +fn copy() { + std::fs::copy( + "../target/debug/voxygen_anim.dll", + "../target/debug/voxygen_anim_active.dll", + ) + .expect("Failed to rename animations dll"); } diff --git a/voxygen/src/anim/src/lib.rs b/voxygen/src/anim/src/lib.rs index 17bec61d54..9b8a833ac2 100644 --- a/voxygen/src/anim/src/lib.rs +++ b/voxygen/src/anim/src/lib.rs @@ -20,6 +20,8 @@ pub mod quadruped_small; #[cfg(feature = "use-dyn-lib")] pub use dyn_lib::init; +#[cfg(feature = "use-dyn-lib")] +use std::ffi::CStr; use vek::*; // TODO: replace with inner type everywhere @@ -83,7 +85,16 @@ pub trait Skeleton: Send + Sync + 'static { let lib = &lock.as_ref().unwrap().lib; let compute_fn: libloading::Symbol ([FigureBoneData; 16], Vec3)> = - unsafe { lib.get(Self::COMPUTE_FN).unwrap() }; + unsafe { lib.get(Self::COMPUTE_FN) }.unwrap_or_else(|err| { + panic!( + "Trying to use: {} but had error: {:?}", + CStr::from_bytes_with_nul(Self::COMPUTE_FN) + .map(CStr::to_str) + .unwrap() + .unwrap(), + err + ) + }); compute_fn(self) } @@ -135,10 +146,20 @@ pub trait Animation { > = unsafe { //let start = std::time::Instant::now(); // Overhead of 0.5-5 us (could use hashmap to mitigate if this is an issue) - let f = lib.get(Self::UPDATE_FN).unwrap(); + let f = lib.get(Self::UPDATE_FN); //println!("{}", start.elapsed().as_nanos()); f - }; + } + .unwrap_or_else(|err| { + panic!( + "Trying to use: {} but had error: {:?}", + CStr::from_bytes_with_nul(Self::UPDATE_FN) + .map(CStr::to_str) + .unwrap() + .unwrap(), + err + ) + }); update_fn(skeleton, dependency, anim_time, rate, skeleton_attr) } diff --git a/voxygen/src/scene/figure/cache.rs b/voxygen/src/scene/figure/cache.rs index 25fbeea417..0af88d92d5 100644 --- a/voxygen/src/scene/figure/cache.rs +++ b/voxygen/src/scene/figure/cache.rs @@ -4,7 +4,7 @@ use crate::{ render::{FigurePipeline, Mesh, Model, Renderer}, scene::camera::CameraMode, }; -use anim::{Skeleton}; +use anim::Skeleton; use common::{ assets::watch::ReloadIndicator, comp::{ diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 50c1f1f630..0408cbc275 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -2103,21 +2103,21 @@ impl FigureState { fn figure_bone_data_from_anim(mats: [anim::FigureBoneData; 16]) -> [FigureBoneData; 16] { [ - FigureBoneData::new(mats[0].0), - FigureBoneData::new(mats[1].0), - FigureBoneData::new(mats[2].0), - FigureBoneData::new(mats[3].0), - FigureBoneData::new(mats[4].0), - FigureBoneData::new(mats[5].0), - FigureBoneData::new(mats[6].0), - FigureBoneData::new(mats[7].0), - FigureBoneData::new(mats[8].0), - FigureBoneData::new(mats[9].0), - FigureBoneData::new(mats[10].0), - FigureBoneData::new(mats[11].0), - FigureBoneData::new(mats[12].0), - FigureBoneData::new(mats[13].0), - FigureBoneData::new(mats[14].0), - FigureBoneData::new(mats[15].0), + FigureBoneData::new(mats[0].0), + FigureBoneData::new(mats[1].0), + FigureBoneData::new(mats[2].0), + FigureBoneData::new(mats[3].0), + FigureBoneData::new(mats[4].0), + FigureBoneData::new(mats[5].0), + FigureBoneData::new(mats[6].0), + FigureBoneData::new(mats[7].0), + FigureBoneData::new(mats[8].0), + FigureBoneData::new(mats[9].0), + FigureBoneData::new(mats[10].0), + FigureBoneData::new(mats[11].0), + FigureBoneData::new(mats[12].0), + FigureBoneData::new(mats[13].0), + FigureBoneData::new(mats[14].0), + FigureBoneData::new(mats[15].0), ] } From 55c3a51534c7fad723c55c179342954dec84f70b Mon Sep 17 00:00:00 2001 From: jshipsey Date: Thu, 18 Jun 2020 23:33:30 -0400 Subject: [PATCH 5/6] add hotloads to all anims --- voxygen/src/anim/src/biped_large/idle.rs | 6 +- voxygen/src/anim/src/biped_large/jump.rs | 6 +- voxygen/src/anim/src/biped_large/mod.rs | 6 +- voxygen/src/anim/src/biped_large/run.rs | 6 +- voxygen/src/anim/src/bird_medium/fly.rs | 6 +- voxygen/src/anim/src/bird_medium/idle.rs | 7 +- voxygen/src/anim/src/bird_medium/mod.rs | 7 +- voxygen/src/anim/src/bird_medium/run.rs | 6 +- voxygen/src/anim/src/bird_small/idle.rs | 6 +- voxygen/src/anim/src/bird_small/jump.rs | 6 +- voxygen/src/anim/src/bird_small/mod.rs | 7 +- voxygen/src/anim/src/bird_small/run.rs | 6 +- voxygen/src/anim/src/character/alpha.rs | 6 +- voxygen/src/anim/src/character/beta.rs | 6 +- voxygen/src/anim/src/character/block.rs | 6 +- voxygen/src/anim/src/character/blockidle.rs | 6 +- voxygen/src/anim/src/character/charge.rs | 6 +- voxygen/src/anim/src/character/climb.rs | 6 +- voxygen/src/anim/src/character/dance.rs | 6 +- voxygen/src/anim/src/character/dash.rs | 6 +- voxygen/src/anim/src/character/equip.rs | 6 +- voxygen/src/anim/src/character/glidewield.rs | 308 +++++++++++++++++++ voxygen/src/anim/src/character/gliding.rs | 6 +- voxygen/src/anim/src/character/idle.rs | 6 +- voxygen/src/anim/src/character/jump.rs | 6 +- voxygen/src/anim/src/character/mod.rs | 7 +- voxygen/src/anim/src/character/roll.rs | 6 +- voxygen/src/anim/src/character/run.rs | 6 +- voxygen/src/anim/src/character/shoot.rs | 6 +- voxygen/src/anim/src/character/sit.rs | 6 +- voxygen/src/anim/src/character/spin.rs | 6 +- voxygen/src/anim/src/character/stand.rs | 6 +- voxygen/src/anim/src/character/swim.rs | 6 +- voxygen/src/anim/src/character/wield.rs | 6 +- voxygen/src/anim/src/critter/idle.rs | 6 +- voxygen/src/anim/src/critter/jump.rs | 6 +- voxygen/src/anim/src/critter/mod.rs | 7 +- voxygen/src/anim/src/critter/run.rs | 6 +- voxygen/src/anim/src/dragon/fly.rs | 6 +- voxygen/src/anim/src/dragon/idle.rs | 6 +- voxygen/src/anim/src/dragon/mod.rs | 7 +- voxygen/src/anim/src/dragon/run.rs | 6 +- voxygen/src/anim/src/fish_medium/idle.rs | 6 +- voxygen/src/anim/src/fish_medium/jump.rs | 6 +- voxygen/src/anim/src/fish_medium/mod.rs | 6 +- voxygen/src/anim/src/fish_medium/run.rs | 6 +- voxygen/src/anim/src/fish_small/idle.rs | 6 +- voxygen/src/anim/src/fish_small/jump.rs | 6 +- voxygen/src/anim/src/fish_small/mod.rs | 7 +- voxygen/src/anim/src/fish_small/run.rs | 6 +- voxygen/src/anim/src/fixture/mod.rs | 7 +- voxygen/src/anim/src/golem/idle.rs | 7 +- voxygen/src/anim/src/golem/jump.rs | 7 +- voxygen/src/anim/src/golem/mod.rs | 27 +- voxygen/src/anim/src/golem/run.rs | 7 +- voxygen/src/anim/src/lib.rs | 36 +-- voxygen/src/anim/src/object/mod.rs | 8 +- 57 files changed, 613 insertions(+), 95 deletions(-) create mode 100644 voxygen/src/anim/src/character/glidewield.rs diff --git a/voxygen/src/anim/src/biped_large/idle.rs b/voxygen/src/anim/src/biped_large/idle.rs index 79f778c92b..7c7fdfa976 100644 --- a/voxygen/src/anim/src/biped_large/idle.rs +++ b/voxygen/src/anim/src/biped_large/idle.rs @@ -8,7 +8,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = BipedLargeSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"biped_large_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "biped_large_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/biped_large/jump.rs b/voxygen/src/anim/src/biped_large/jump.rs index 1c9d4c987c..650db18ffb 100644 --- a/voxygen/src/anim/src/biped_large/jump.rs +++ b/voxygen/src/anim/src/biped_large/jump.rs @@ -8,7 +8,11 @@ impl Animation for JumpAnimation { type Dependency = (f32, f64); type Skeleton = BipedLargeSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"biped_large_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "biped_large_jump")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/biped_large/mod.rs b/voxygen/src/anim/src/biped_large/mod.rs index fc85fd7b03..29405a89e9 100644 --- a/voxygen/src/anim/src/biped_large/mod.rs +++ b/voxygen/src/anim/src/biped_large/mod.rs @@ -32,9 +32,13 @@ impl BipedLargeSkeleton { impl Skeleton for BipedLargeSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"biped_large_compute_mats\0"; + fn bone_count(&self) -> usize { 11 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "biped_large_compute_mats")] + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let upper_torso_mat = self.upper_torso.compute_base_matrix(); let shoulder_l_mat = self.shoulder_l.compute_base_matrix(); let shoulder_r_mat = self.shoulder_r.compute_base_matrix(); diff --git a/voxygen/src/anim/src/biped_large/run.rs b/voxygen/src/anim/src/biped_large/run.rs index 6927c85cbf..b02dade71b 100644 --- a/voxygen/src/anim/src/biped_large/run.rs +++ b/voxygen/src/anim/src/biped_large/run.rs @@ -8,7 +8,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = BipedLargeSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"biped_large_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "biped_large_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/bird_medium/fly.rs b/voxygen/src/anim/src/bird_medium/fly.rs index 163a996109..23477c3671 100644 --- a/voxygen/src/anim/src/bird_medium/fly.rs +++ b/voxygen/src/anim/src/bird_medium/fly.rs @@ -8,7 +8,11 @@ impl Animation for FlyAnimation { type Dependency = (f32, f64); type Skeleton = BirdMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"bird_medium_fly\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_medium_fly")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/bird_medium/idle.rs b/voxygen/src/anim/src/bird_medium/idle.rs index 86b776720e..33b430636b 100644 --- a/voxygen/src/anim/src/bird_medium/idle.rs +++ b/voxygen/src/anim/src/bird_medium/idle.rs @@ -8,7 +8,12 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = BirdMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"bird_medium_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_medium_idle")] + + fn update_skeleton_inner( skeleton: &Self::Skeleton, global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/bird_medium/mod.rs b/voxygen/src/anim/src/bird_medium/mod.rs index d0a40a351b..d759616c7a 100644 --- a/voxygen/src/anim/src/bird_medium/mod.rs +++ b/voxygen/src/anim/src/bird_medium/mod.rs @@ -27,9 +27,14 @@ impl BirdMediumSkeleton { impl Skeleton for BirdMediumSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"bird_medium_compute_mats\0"; + fn bone_count(&self) -> usize { 7 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_medium_compute_mats")] + + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let torso_mat = self.torso.compute_base_matrix(); ( diff --git a/voxygen/src/anim/src/bird_medium/run.rs b/voxygen/src/anim/src/bird_medium/run.rs index 930f16a9ae..c86f16a86b 100644 --- a/voxygen/src/anim/src/bird_medium/run.rs +++ b/voxygen/src/anim/src/bird_medium/run.rs @@ -8,7 +8,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = BirdMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"bird_medium_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_medium_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/bird_small/idle.rs b/voxygen/src/anim/src/bird_small/idle.rs index a7de9bf1a1..f25b9a8810 100644 --- a/voxygen/src/anim/src/bird_small/idle.rs +++ b/voxygen/src/anim/src/bird_small/idle.rs @@ -8,7 +8,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = BirdSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"bird_small_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_small_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/bird_small/jump.rs b/voxygen/src/anim/src/bird_small/jump.rs index 58b6de31c4..059480cc4a 100644 --- a/voxygen/src/anim/src/bird_small/jump.rs +++ b/voxygen/src/anim/src/bird_small/jump.rs @@ -8,7 +8,11 @@ impl Animation for JumpAnimation { type Dependency = (f32, f64); type Skeleton = BirdSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"bird_small_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_small_jump")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/bird_small/mod.rs b/voxygen/src/anim/src/bird_small/mod.rs index 7937e99b4b..dde8a69b6f 100644 --- a/voxygen/src/anim/src/bird_small/mod.rs +++ b/voxygen/src/anim/src/bird_small/mod.rs @@ -32,9 +32,14 @@ impl BirdSmallSkeleton { impl Skeleton for BirdSmallSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"bird_small_compute_mats\0"; + fn bone_count(&self) -> usize { 4 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_small_compute_mats")] + + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let torso_mat = self.torso.compute_base_matrix(); ( diff --git a/voxygen/src/anim/src/bird_small/run.rs b/voxygen/src/anim/src/bird_small/run.rs index 2db15fb2bc..167889c0d0 100644 --- a/voxygen/src/anim/src/bird_small/run.rs +++ b/voxygen/src/anim/src/bird_small/run.rs @@ -8,7 +8,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = BirdSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"bird_small_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_small_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, _global_time): Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/character/alpha.rs b/voxygen/src/anim/src/character/alpha.rs index be0b10846d..4e79bb340e 100644 --- a/voxygen/src/anim/src/character/alpha.rs +++ b/voxygen/src/anim/src/character/alpha.rs @@ -9,8 +9,12 @@ impl Animation for AlphaAnimation { type Dependency = (Option, f32, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_alpha\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_alpha")] #[allow(clippy::approx_constant)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, velocity, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/beta.rs b/voxygen/src/anim/src/character/beta.rs index 5ea06b431f..d8a638f4ba 100644 --- a/voxygen/src/anim/src/character/beta.rs +++ b/voxygen/src/anim/src/character/beta.rs @@ -8,7 +8,11 @@ impl Animation for BetaAnimation { type Dependency = (Option, f32, f64); type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_beta\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_beta")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, _velocity, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/block.rs b/voxygen/src/anim/src/character/block.rs index 54b5b57c12..7dc6f6b382 100644 --- a/voxygen/src/anim/src/character/block.rs +++ b/voxygen/src/anim/src/character/block.rs @@ -12,7 +12,11 @@ impl Animation for BlockAnimation { type Dependency = (Option, f64); type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_block\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_block")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/blockidle.rs b/voxygen/src/anim/src/character/blockidle.rs index b29f4ff2df..bc36193dc3 100644 --- a/voxygen/src/anim/src/character/blockidle.rs +++ b/voxygen/src/anim/src/character/blockidle.rs @@ -12,7 +12,11 @@ impl Animation for BlockIdleAnimation { type Dependency = (Option, f64); type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_blockidle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_blockidle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/charge.rs b/voxygen/src/anim/src/character/charge.rs index 4e71e03e85..b5b225f290 100644 --- a/voxygen/src/anim/src/character/charge.rs +++ b/voxygen/src/anim/src/character/charge.rs @@ -9,9 +9,13 @@ impl Animation for ChargeAnimation { type Dependency = (Option, f32, Vec3, Vec3, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_charge\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_charge")] #[allow(clippy::approx_constant)] // TODO: Pending review in #587 #[allow(clippy::identity_conversion)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, velocity, orientation, last_ori, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/climb.rs b/voxygen/src/anim/src/character/climb.rs index 0cc29d97a1..cc3ff78184 100644 --- a/voxygen/src/anim/src/character/climb.rs +++ b/voxygen/src/anim/src/character/climb.rs @@ -9,7 +9,11 @@ impl Animation for ClimbAnimation { type Dependency = (Option, Vec3, Vec3, f64); type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_climb\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_climb")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, velocity, _orientation, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/dance.rs b/voxygen/src/anim/src/character/dance.rs index fd0b919e5b..fd9ce57de3 100644 --- a/voxygen/src/anim/src/character/dance.rs +++ b/voxygen/src/anim/src/character/dance.rs @@ -9,7 +9,11 @@ impl Animation for DanceAnimation { type Dependency = (Option, f64); type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_dance\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_dance")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/dash.rs b/voxygen/src/anim/src/character/dash.rs index 6bab9a07fd..173232d93c 100644 --- a/voxygen/src/anim/src/character/dash.rs +++ b/voxygen/src/anim/src/character/dash.rs @@ -11,8 +11,12 @@ impl Animation for DashAnimation { type Dependency = (Option, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_dash\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_dash")] #[allow(clippy::single_match)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/equip.rs b/voxygen/src/anim/src/character/equip.rs index 1a6a1e95ab..02676b33e3 100644 --- a/voxygen/src/anim/src/character/equip.rs +++ b/voxygen/src/anim/src/character/equip.rs @@ -10,8 +10,12 @@ impl Animation for EquipAnimation { type Dependency = (Option, f32, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_equip\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_equip")] #[allow(clippy::approx_constant)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, velocity, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/glidewield.rs b/voxygen/src/anim/src/character/glidewield.rs new file mode 100644 index 0000000000..8ccb95b7ac --- /dev/null +++ b/voxygen/src/anim/src/character/glidewield.rs @@ -0,0 +1,308 @@ +use super::{super::Animation, CharacterSkeleton, SkeletonAttr}; +use common::comp::item::ToolKind; +use std::{f32::consts::PI, ops::Mul}; +use vek::*; + +pub struct GlideWieldAnimation; + +impl Animation for GlideWieldAnimation { + type Dependency = (Option, Vec3, Vec3, Vec3, f64); + type Skeleton = CharacterSkeleton; + + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_glidewield\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_glidewield")] + #[allow(clippy::identity_conversion)] // TODO: Pending review in #587 + fn update_skeleton_inner( + skeleton: &Self::Skeleton, + (_active_tool_kind, velocity, orientation, last_ori, global_time): Self::Dependency, + anim_time: f64, + rate: &mut f32, + skeleton_attr: &SkeletonAttr, + ) -> Self::Skeleton { + let mut next = (*skeleton).clone(); + let speed = Vec2::::from(velocity).magnitude(); + *rate = 1.0; + let slow = (anim_time as f32 * 1.0).sin(); + let breathe = ((anim_time as f32 * 0.5).sin()).abs(); + let walkintensity = if speed > 5.0 { 1.0 } else { 0.45 }; + let walk = if speed > 5.0 { 1.0 } else { 0.5 }; + let lower = if speed > 5.0 { 0.0 } else { 1.0 }; + let _snapfoot = if speed > 5.0 { 1.1 } else { 2.0 }; + let lab = 1.0; + let foothoril = (anim_time as f32 * 16.0 * walk * lab as f32 + PI * 1.45).sin(); + let foothorir = (anim_time as f32 * 16.0 * walk * lab as f32 + PI * (0.45)).sin(); + + let footvertl = (anim_time as f32 * 16.0 * walk * lab as f32).sin(); + let footvertr = (anim_time as f32 * 16.0 * walk * lab as f32 + PI).sin(); + + let footrotl = (((5.0) + / (2.5 + + (2.5) + * ((anim_time as f32 * 16.0 * walk * lab as f32 + PI * 1.4).sin()) + .powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * 16.0 * walk * lab as f32 + PI * 1.4).sin()); + + let footrotr = (((5.0) + / (1.0 + + (4.0) + * ((anim_time as f32 * 16.0 * walk * lab as f32 + PI * 0.4).sin()) + .powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * 16.0 * walk * lab as f32 + PI * 0.4).sin()); + + let short = (((5.0) + / (1.5 + + 3.5 * ((anim_time as f32 * lab as f32 * 16.0 * walk).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * lab as f32 * 16.0 * walk).sin()); + let noisea = (anim_time as f32 * 11.0 + PI / 6.0).sin(); + let noiseb = (anim_time as f32 * 19.0 + PI / 4.0).sin(); + + let shorte = (((5.0) + / (4.0 + + 1.0 * ((anim_time as f32 * lab as f32 * 16.0 * walk).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * lab as f32 * 16.0 * walk).sin()); + + let shortalt = (anim_time as f32 * lab as f32 * 16.0 * walk + PI / 2.0).sin(); + let shortalter = (anim_time as f32 * lab as f32 * 16.0 * walk + PI / -2.0).sin(); + + let wave_stop = (anim_time as f32 * 26.0).min(PI / 2.0 / 2.0).sin(); + + let head_look = Vec2::new( + ((global_time + anim_time) as f32 / 18.0) + .floor() + .mul(7331.0) + .sin() + * 0.2, + ((global_time + anim_time) as f32 / 18.0) + .floor() + .mul(1337.0) + .sin() + * 0.1, + ); + + let ori = Vec2::from(orientation); + let last_ori = Vec2::from(last_ori); + let tilt = if Vec2::new(ori, last_ori) + .map(|o| Vec2::::from(o).magnitude_squared()) + .map(|m| m > 0.001 && m.is_finite()) + .reduce_and() + && ori.angle_between(last_ori).is_finite() + { + ori.angle_between(last_ori).min(0.2) + * last_ori.determine_side(Vec2::zero(), ori).signum() + } else { + 0.0 + } * 1.3; + + next.l_hand.offset = Vec3::new( + -2.0 - skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2 + 15.0, + ); + next.l_hand.ori = Quaternion::rotation_x(3.35); + next.l_hand.scale = Vec3::one(); + + next.r_hand.offset = Vec3::new( + 2.0 + skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2 + 15.0, + ); + next.r_hand.ori = Quaternion::rotation_x(3.35); + next.r_hand.scale = Vec3::one(); + + if speed > 0.5 { + next.head.offset = Vec3::new( + 0.0, + -3.0 + skeleton_attr.head.0, + skeleton_attr.head.1 + short * 0.1, + ); + next.head.ori = Quaternion::rotation_z(tilt * -2.5 + head_look.x * 0.2 - short * 0.1) + * Quaternion::rotation_x(head_look.y + 0.45 - lower * 0.35); + next.head.scale = Vec3::one() * skeleton_attr.head_scale; + + next.chest.offset = Vec3::new( + 0.0, + skeleton_attr.chest.0, + skeleton_attr.chest.1 + 2.0 + shortalt * -1.5 - lower, + ); + next.chest.ori = Quaternion::rotation_z(short * 0.10 * walkintensity + tilt * -1.0) + * Quaternion::rotation_y(tilt * 2.2) + * Quaternion::rotation_x( + shortalter * 0.035 + wave_stop * speed * -0.1 + (tilt.abs()), + ); + next.chest.scale = Vec3::one(); + + next.belt.offset = Vec3::new(0.0, skeleton_attr.belt.0, skeleton_attr.belt.1); + next.belt.ori = Quaternion::rotation_z(short * 0.1 + tilt * -1.1) + * Quaternion::rotation_y(tilt * 0.5); + next.belt.scale = Vec3::one(); + + next.glider.ori = Quaternion::rotation_x(0.8); + next.glider.offset = Vec3::new(0.0, -10.0, 15.0); + next.glider.scale = Vec3::one() * 1.0; + + next.back.offset = Vec3::new(0.0, skeleton_attr.back.0, skeleton_attr.back.1); + next.back.ori = + Quaternion::rotation_x(-0.25 + short * 0.1 + noisea * 0.1 + noiseb * 0.1); + next.back.scale = Vec3::one() * 1.02; + + next.shorts.offset = Vec3::new(0.0, skeleton_attr.shorts.0, skeleton_attr.shorts.1); + next.shorts.ori = Quaternion::rotation_z(short * 0.25 + tilt * -1.5) + * Quaternion::rotation_y(tilt * 0.7); + next.shorts.scale = Vec3::one(); + + next.l_foot.offset = Vec3::new( + -skeleton_attr.foot.0, + -1.5 + skeleton_attr.foot.1 + foothoril * -8.5 * walkintensity - lower * 1.0, + 2.0 + skeleton_attr.foot.2 + ((footvertl * -2.7).max(-1.0)) * walkintensity, + ); + next.l_foot.ori = Quaternion::rotation_x(-0.2 + footrotl * -1.2 * walkintensity) + * Quaternion::rotation_y(tilt * 1.8); + next.l_foot.scale = Vec3::one(); + + next.r_foot.offset = Vec3::new( + skeleton_attr.foot.0, + -1.5 + skeleton_attr.foot.1 + foothorir * -8.5 * walkintensity - lower * 1.0, + 2.0 + skeleton_attr.foot.2 + ((footvertr * -2.7).max(-1.0)) * walkintensity, + ); + next.r_foot.ori = Quaternion::rotation_x(-0.2 + footrotr * -1.2 * walkintensity) + * Quaternion::rotation_y(tilt * 1.8); + next.r_foot.scale = Vec3::one(); + + next.l_shoulder.offset = Vec3::new( + -skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.l_shoulder.ori = Quaternion::rotation_x(short * 0.15 * walkintensity); + next.l_shoulder.scale = Vec3::one() * 1.1; + + next.r_shoulder.offset = Vec3::new( + skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.r_shoulder.ori = Quaternion::rotation_x(short * -0.15 * walkintensity); + next.r_shoulder.scale = Vec3::one() * 1.1; + + next.main.offset = Vec3::new(-7.0, -6.5, 15.0); + next.main.ori = + Quaternion::rotation_y(2.5) * Quaternion::rotation_z(1.57 + short * 0.25); + next.main.scale = Vec3::one(); + + next.second.scale = Vec3::one() * 0.0; + + next.lantern.offset = Vec3::new( + skeleton_attr.lantern.0, + skeleton_attr.lantern.1, + skeleton_attr.lantern.2, + ); + next.lantern.ori = + Quaternion::rotation_x(shorte * 0.7 + 0.4) * Quaternion::rotation_y(shorte * 0.4); + next.lantern.scale = Vec3::one() * 0.65; + + next.torso.offset = Vec3::new(0.0, 0.0, 0.0) * skeleton_attr.scaler; + next.torso.ori = Quaternion::rotation_y(0.0); + next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler; + + next.control.offset = Vec3::new(0.0, 0.0, 0.0); + next.control.ori = Quaternion::rotation_x(0.0); + next.control.scale = Vec3::one(); + + next.l_control.scale = Vec3::one(); + + next.r_control.scale = Vec3::one(); + } else { + next.head.offset = Vec3::new( + 0.0, + -3.0 + skeleton_attr.head.0, + skeleton_attr.head.1 + slow * 0.3 + breathe * -0.05, + ); + next.head.ori = + Quaternion::rotation_z(head_look.x) * Quaternion::rotation_x(head_look.y.abs()); + next.head.scale = Vec3::one() * skeleton_attr.head_scale + breathe * -0.05; + + next.chest.offset = Vec3::new( + 0.0, + skeleton_attr.chest.0, + skeleton_attr.chest.1 + slow * 0.3, + ); + next.chest.ori = Quaternion::rotation_z(head_look.x * 0.6); + next.chest.scale = Vec3::one() * 1.01 + breathe * 0.03; + + next.belt.offset = Vec3::new(0.0, skeleton_attr.belt.0, skeleton_attr.belt.1); + next.belt.ori = Quaternion::rotation_z(head_look.x * -0.1); + next.belt.scale = Vec3::one() + breathe * -0.03; + + next.glider.ori = Quaternion::rotation_x(0.35); + next.glider.offset = Vec3::new(0.0, -9.0, 17.0); + next.glider.scale = Vec3::one() * 1.0; + + next.back.offset = Vec3::new(0.0, skeleton_attr.back.0, skeleton_attr.back.1); + next.back.scale = Vec3::one() * 1.02; + + next.shorts.offset = Vec3::new(0.0, skeleton_attr.shorts.0, skeleton_attr.shorts.1); + next.shorts.ori = Quaternion::rotation_z(head_look.x * -0.2); + next.shorts.scale = Vec3::one() + breathe * -0.03; + + next.l_foot.offset = Vec3::new( + -skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, + ); + next.l_foot.scale = Vec3::one(); + + next.r_foot.offset = Vec3::new( + skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, + ); + next.r_foot.scale = Vec3::one(); + + next.l_shoulder.offset = Vec3::new( + -skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.l_shoulder.scale = (Vec3::one() + breathe * -0.05) * 1.15; + + next.r_shoulder.offset = Vec3::new( + skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.r_shoulder.scale = (Vec3::one() + breathe * -0.05) * 1.15; + + next.main.offset = Vec3::new(-7.0, -5.0, 15.0); + next.main.ori = Quaternion::rotation_y(2.5) * Quaternion::rotation_z(1.57); + next.main.scale = Vec3::one(); + + next.second.offset = Vec3::new(0.0, 0.0, 0.0); + next.second.scale = Vec3::one() * 0.0; + + next.lantern.offset = Vec3::new( + skeleton_attr.lantern.0, + skeleton_attr.lantern.1, + skeleton_attr.lantern.2, + ); + next.lantern.ori = Quaternion::rotation_x(0.1) * Quaternion::rotation_y(0.1); + next.lantern.scale = Vec3::one() * 0.65; + + next.torso.offset = Vec3::new(0.0, 0.0, 0.0) * skeleton_attr.scaler; + next.torso.ori = Quaternion::rotation_x(0.0); + next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler; + + next.control.scale = Vec3::one(); + + next.l_control.scale = Vec3::one(); + + next.r_control.scale = Vec3::one(); + } + next + } +} diff --git a/voxygen/src/anim/src/character/gliding.rs b/voxygen/src/anim/src/character/gliding.rs index 4f9a89cdb4..896fba32f8 100644 --- a/voxygen/src/anim/src/character/gliding.rs +++ b/voxygen/src/anim/src/character/gliding.rs @@ -9,8 +9,12 @@ impl Animation for GlidingAnimation { type Dependency = (Option, Vec3, Vec3, Vec3, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_gliding\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_gliding")] #[allow(clippy::identity_conversion)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, velocity, orientation, last_ori, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/idle.rs b/voxygen/src/anim/src/character/idle.rs index db4fa6093b..f1b8c7c27c 100644 --- a/voxygen/src/anim/src/character/idle.rs +++ b/voxygen/src/anim/src/character/idle.rs @@ -8,7 +8,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: f64, anim_time: f64, diff --git a/voxygen/src/anim/src/character/jump.rs b/voxygen/src/anim/src/character/jump.rs index 56b56a31f3..7ca28e6e9d 100644 --- a/voxygen/src/anim/src/character/jump.rs +++ b/voxygen/src/anim/src/character/jump.rs @@ -7,8 +7,12 @@ impl Animation for JumpAnimation { type Dependency = (Option, Vec3, Vec3, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_jump")] #[allow(clippy::identity_conversion)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, orientation, last_ori, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/mod.rs b/voxygen/src/anim/src/character/mod.rs index 7aefc2f5bf..e4cd029dbd 100644 --- a/voxygen/src/anim/src/character/mod.rs +++ b/voxygen/src/anim/src/character/mod.rs @@ -66,9 +66,14 @@ impl CharacterSkeleton { impl Skeleton for CharacterSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"character_compute_mats\0"; + fn bone_count(&self) -> usize { 16 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_compute_mats")] + + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let chest_mat = self.chest.compute_base_matrix(); let torso_mat = self.torso.compute_base_matrix(); let l_hand_mat = self.l_hand.compute_base_matrix(); diff --git a/voxygen/src/anim/src/character/roll.rs b/voxygen/src/anim/src/character/roll.rs index 4813aaa4b4..17b2bac556 100644 --- a/voxygen/src/anim/src/character/roll.rs +++ b/voxygen/src/anim/src/character/roll.rs @@ -8,8 +8,12 @@ impl Animation for RollAnimation { type Dependency = (Option, Vec3, Vec3, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_roll\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_roll")] #[allow(clippy::identity_conversion)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, orientation, last_ori, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/run.rs b/voxygen/src/anim/src/character/run.rs index e15e2df631..595010670e 100644 --- a/voxygen/src/anim/src/character/run.rs +++ b/voxygen/src/anim/src/character/run.rs @@ -9,8 +9,12 @@ impl Animation for RunAnimation { type Dependency = (Option, Vec3, Vec3, Vec3, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_run")] #[allow(clippy::identity_conversion)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, velocity, orientation, last_ori, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/shoot.rs b/voxygen/src/anim/src/character/shoot.rs index 5dc41d5716..b9d82d5786 100644 --- a/voxygen/src/anim/src/character/shoot.rs +++ b/voxygen/src/anim/src/character/shoot.rs @@ -8,8 +8,12 @@ impl Animation for ShootAnimation { type Dependency = (Option, f32, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_shoot\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_shoot")] #[allow(clippy::approx_constant)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, velocity, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/sit.rs b/voxygen/src/anim/src/character/sit.rs index 34ffeb1cb8..bef428103e 100644 --- a/voxygen/src/anim/src/character/sit.rs +++ b/voxygen/src/anim/src/character/sit.rs @@ -9,7 +9,11 @@ impl Animation for SitAnimation { type Dependency = (Option, f64); type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_sit\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_sit")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/spin.rs b/voxygen/src/anim/src/character/spin.rs index 92432ac88f..2ab47f316e 100644 --- a/voxygen/src/anim/src/character/spin.rs +++ b/voxygen/src/anim/src/character/spin.rs @@ -12,7 +12,11 @@ impl Animation for SpinAnimation { type Dependency = (Option, f64); type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_spin\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_spin")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/stand.rs b/voxygen/src/anim/src/character/stand.rs index c424ff7c86..645ce60f2f 100644 --- a/voxygen/src/anim/src/character/stand.rs +++ b/voxygen/src/anim/src/character/stand.rs @@ -9,7 +9,11 @@ impl Animation for StandAnimation { type Dependency = (Option, f64); type Skeleton = CharacterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_stand\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_stand")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/swim.rs b/voxygen/src/anim/src/character/swim.rs index 649efbb9fc..71147021fb 100644 --- a/voxygen/src/anim/src/character/swim.rs +++ b/voxygen/src/anim/src/character/swim.rs @@ -9,8 +9,12 @@ impl Animation for SwimAnimation { type Dependency = (Option, Vec3, Vec3, Vec3, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_swim\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_swim")] #[allow(clippy::identity_conversion)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_active_tool_kind, velocity, orientation, last_ori, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/character/wield.rs b/voxygen/src/anim/src/character/wield.rs index 2c52c6153a..dbf11016bf 100644 --- a/voxygen/src/anim/src/character/wield.rs +++ b/voxygen/src/anim/src/character/wield.rs @@ -9,8 +9,12 @@ impl Animation for WieldAnimation { type Dependency = (Option, f32, f64); type Skeleton = CharacterSkeleton; + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"character_wield\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_wield")] #[allow(clippy::approx_constant)] // TODO: Pending review in #587 - fn update_skeleton( + fn update_skeleton_inner( skeleton: &Self::Skeleton, (active_tool_kind, velocity, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/critter/idle.rs b/voxygen/src/anim/src/critter/idle.rs index fe9827bb4c..68f864ea2d 100644 --- a/voxygen/src/anim/src/critter/idle.rs +++ b/voxygen/src/anim/src/critter/idle.rs @@ -9,7 +9,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = CritterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"critter_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "critter_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/critter/jump.rs b/voxygen/src/anim/src/critter/jump.rs index 506a6d4309..b4c5a0b57f 100644 --- a/voxygen/src/anim/src/critter/jump.rs +++ b/voxygen/src/anim/src/critter/jump.rs @@ -8,7 +8,11 @@ impl Animation for JumpAnimation { type Dependency = (f32, f64); type Skeleton = CritterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"critter_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "critter_jump")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/critter/mod.rs b/voxygen/src/anim/src/critter/mod.rs index 80b9d3cd12..b83114adc1 100644 --- a/voxygen/src/anim/src/critter/mod.rs +++ b/voxygen/src/anim/src/critter/mod.rs @@ -32,9 +32,14 @@ impl CritterSkeleton { impl Skeleton for CritterSkeleton { type Attr = CritterAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"critter_compute_mats\0"; + fn bone_count(&self) -> usize { 5 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "critter_compute_mats")] + + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { ( [ FigureBoneData::new(self.head.compute_base_matrix()), diff --git a/voxygen/src/anim/src/critter/run.rs b/voxygen/src/anim/src/critter/run.rs index a2918c958e..fac82204cc 100644 --- a/voxygen/src/anim/src/critter/run.rs +++ b/voxygen/src/anim/src/critter/run.rs @@ -9,7 +9,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = CritterSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"critter_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "critter_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/dragon/fly.rs b/voxygen/src/anim/src/dragon/fly.rs index a996e89775..14379e7a42 100644 --- a/voxygen/src/anim/src/dragon/fly.rs +++ b/voxygen/src/anim/src/dragon/fly.rs @@ -8,7 +8,11 @@ impl Animation for FlyAnimation { type Dependency = (f32, f64); type Skeleton = DragonSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"dragon_fly\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "dragon_fly")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/dragon/idle.rs b/voxygen/src/anim/src/dragon/idle.rs index 9e97adb4c3..f7967928d0 100644 --- a/voxygen/src/anim/src/dragon/idle.rs +++ b/voxygen/src/anim/src/dragon/idle.rs @@ -8,7 +8,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = DragonSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"dragon_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "dragon_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/dragon/mod.rs b/voxygen/src/anim/src/dragon/mod.rs index e949f44a69..ba01e7a5b9 100644 --- a/voxygen/src/anim/src/dragon/mod.rs +++ b/voxygen/src/anim/src/dragon/mod.rs @@ -35,9 +35,14 @@ impl DragonSkeleton { impl Skeleton for DragonSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"dragon_compute_mats\0"; + fn bone_count(&self) -> usize { 15 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "dragon_compute_mats")] + + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let head_upper_mat = self.head_upper.compute_base_matrix(); let head_lower_mat = self.head_lower.compute_base_matrix(); let chest_front_mat = self.chest_front.compute_base_matrix(); diff --git a/voxygen/src/anim/src/dragon/run.rs b/voxygen/src/anim/src/dragon/run.rs index 6bb74df52c..626728d83c 100644 --- a/voxygen/src/anim/src/dragon/run.rs +++ b/voxygen/src/anim/src/dragon/run.rs @@ -8,7 +8,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = DragonSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"dragon_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "dragon_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/fish_medium/idle.rs b/voxygen/src/anim/src/fish_medium/idle.rs index b5258b283f..a61c284abd 100644 --- a/voxygen/src/anim/src/fish_medium/idle.rs +++ b/voxygen/src/anim/src/fish_medium/idle.rs @@ -8,7 +8,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = FishMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"fish_medium_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "fish_medium_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/fish_medium/jump.rs b/voxygen/src/anim/src/fish_medium/jump.rs index 2950ea82a4..2858c2ba23 100644 --- a/voxygen/src/anim/src/fish_medium/jump.rs +++ b/voxygen/src/anim/src/fish_medium/jump.rs @@ -8,7 +8,11 @@ impl Animation for JumpAnimation { type Dependency = (f32, f64); type Skeleton = FishMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"fish_medium_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "fish_medium_jump")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/fish_medium/mod.rs b/voxygen/src/anim/src/fish_medium/mod.rs index 04533f5a04..7e3741d4c5 100644 --- a/voxygen/src/anim/src/fish_medium/mod.rs +++ b/voxygen/src/anim/src/fish_medium/mod.rs @@ -36,9 +36,13 @@ impl FishMediumSkeleton { impl Skeleton for FishMediumSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"fish_medium_compute_mats\0"; + fn bone_count(&self) -> usize { 6 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "fish_medium_compute_mats")] + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let torso_mat = self.torso.compute_base_matrix(); let rear_mat = self.rear.compute_base_matrix(); diff --git a/voxygen/src/anim/src/fish_medium/run.rs b/voxygen/src/anim/src/fish_medium/run.rs index 6aec82cfed..47219f1b31 100644 --- a/voxygen/src/anim/src/fish_medium/run.rs +++ b/voxygen/src/anim/src/fish_medium/run.rs @@ -8,7 +8,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = FishMediumSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"fish_medium_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "fish_medium_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/fish_small/idle.rs b/voxygen/src/anim/src/fish_small/idle.rs index fbfe1a3dac..4262a42db9 100644 --- a/voxygen/src/anim/src/fish_small/idle.rs +++ b/voxygen/src/anim/src/fish_small/idle.rs @@ -8,7 +8,11 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = FishSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"fish_small_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "fish_small_idle")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/fish_small/jump.rs b/voxygen/src/anim/src/fish_small/jump.rs index efeb5927a2..90bca46ade 100644 --- a/voxygen/src/anim/src/fish_small/jump.rs +++ b/voxygen/src/anim/src/fish_small/jump.rs @@ -8,7 +8,11 @@ impl Animation for JumpAnimation { type Dependency = (f32, f64); type Skeleton = FishSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"fish_small_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "fish_small_jump")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/fish_small/mod.rs b/voxygen/src/anim/src/fish_small/mod.rs index d201989b99..7821d8b446 100644 --- a/voxygen/src/anim/src/fish_small/mod.rs +++ b/voxygen/src/anim/src/fish_small/mod.rs @@ -28,9 +28,14 @@ impl FishSmallSkeleton { impl Skeleton for FishSmallSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"fish_small_compute_mats\0"; + fn bone_count(&self) -> usize { 2 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "fish_small_compute_mats")] + + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let torso_mat = self.torso.compute_base_matrix(); ( diff --git a/voxygen/src/anim/src/fish_small/run.rs b/voxygen/src/anim/src/fish_small/run.rs index 797e760634..8e93a3ae7c 100644 --- a/voxygen/src/anim/src/fish_small/run.rs +++ b/voxygen/src/anim/src/fish_small/run.rs @@ -8,7 +8,11 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = FishSmallSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"fish_small_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "fish_small_run")] + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, _global_time): Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/fixture/mod.rs b/voxygen/src/anim/src/fixture/mod.rs index a95bcb9729..40fe3095fc 100644 --- a/voxygen/src/anim/src/fixture/mod.rs +++ b/voxygen/src/anim/src/fixture/mod.rs @@ -14,9 +14,14 @@ impl FixtureSkeleton { impl Skeleton for FixtureSkeleton { type Attr = SkeletonAttr; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"fixture_compute_mats\0"; + fn bone_count(&self) -> usize { 1 } - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg_attr(feature = "be-dyn-lib", export_name = "fixture_compute_mats")] + + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { ( [ FigureBoneData::new(vek::Mat4::identity()), // <-- This is actually a bone! diff --git a/voxygen/src/anim/src/golem/idle.rs b/voxygen/src/anim/src/golem/idle.rs index 6df1b9c34a..cbdfe7b05e 100644 --- a/voxygen/src/anim/src/golem/idle.rs +++ b/voxygen/src/anim/src/golem/idle.rs @@ -8,7 +8,12 @@ impl Animation for IdleAnimation { type Dependency = f64; type Skeleton = GolemSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"golem_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "golem_idle")] + + fn update_skeleton_inner( skeleton: &Self::Skeleton, global_time: Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/golem/jump.rs b/voxygen/src/anim/src/golem/jump.rs index e7ba85f450..ac294f59dc 100644 --- a/voxygen/src/anim/src/golem/jump.rs +++ b/voxygen/src/anim/src/golem/jump.rs @@ -8,7 +8,12 @@ impl Animation for JumpAnimation { type Dependency = (f32, f64); type Skeleton = GolemSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"golem_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "golem_jump")] + + fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, _anim_time: f64, diff --git a/voxygen/src/anim/src/golem/mod.rs b/voxygen/src/anim/src/golem/mod.rs index 7329bff0e8..5bd5861d1b 100644 --- a/voxygen/src/anim/src/golem/mod.rs +++ b/voxygen/src/anim/src/golem/mod.rs @@ -9,7 +9,7 @@ use super::{Bone, FigureBoneData, Skeleton}; use common::comp::{self}; use vek::Vec3; -#[derive(Clone)] +#[derive(Clone, Default)] pub struct GolemSkeleton { head: Bone, upper_torso: Bone, @@ -25,28 +25,19 @@ pub struct GolemSkeleton { } impl GolemSkeleton { - #[allow(clippy::new_without_default)] // TODO: Pending review in #587 - pub fn new() -> Self { - Self { - head: Bone::default(), - upper_torso: Bone::default(), - shoulder_l: Bone::default(), - shoulder_r: Bone::default(), - hand_l: Bone::default(), - hand_r: Bone::default(), - leg_l: Bone::default(), - leg_r: Bone::default(), - foot_l: Bone::default(), - foot_r: Bone::default(), - torso: Bone::default(), - } - } + pub fn new() -> Self { Self::default() } } impl Skeleton for GolemSkeleton { type Attr = SkeletonAttr; - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"golem_compute_mats\0"; + + fn bone_count(&self) -> usize { 15 } + + #[cfg_attr(feature = "be-dyn-lib", export_name = "golem_compute_mats")] + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { let upper_torso_mat = self.upper_torso.compute_base_matrix(); let shoulder_l_mat = self.shoulder_l.compute_base_matrix(); let shoulder_r_mat = self.shoulder_r.compute_base_matrix(); diff --git a/voxygen/src/anim/src/golem/run.rs b/voxygen/src/anim/src/golem/run.rs index 9dc8bd71e7..c5d1c0f6ec 100644 --- a/voxygen/src/anim/src/golem/run.rs +++ b/voxygen/src/anim/src/golem/run.rs @@ -8,7 +8,12 @@ impl Animation for RunAnimation { type Dependency = (f32, f64); type Skeleton = GolemSkeleton; - fn update_skeleton( + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"golem_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "golem_run")] + + fn update_skeleton_inner( skeleton: &Self::Skeleton, (_velocity, _global_time): Self::Dependency, anim_time: f64, diff --git a/voxygen/src/anim/src/lib.rs b/voxygen/src/anim/src/lib.rs index 9b8a833ac2..44942a0aa2 100644 --- a/voxygen/src/anim/src/lib.rs +++ b/voxygen/src/anim/src/lib.rs @@ -1,4 +1,3 @@ -// TODO: we could probably avoid the need for this #[cfg(all(feature = "be-dyn-lib", feature = "use-dyn-lib"))] compile_error!("Can't use both \"be-dyn-lib\" and \"use-dyn-lib\" features at once"); @@ -70,10 +69,12 @@ pub trait Skeleton: Send + Sync + 'static { type Attr; #[cfg(feature = "use-dyn-lib")] - const COMPUTE_FN: &'static [u8] = b"\0"; + const COMPUTE_FN: &'static [u8]; fn bone_count(&self) -> usize { 16 } + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3); + fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { #[cfg(not(feature = "use-dyn-lib"))] { @@ -100,13 +101,6 @@ pub trait Skeleton: Send + Sync + 'static { } } - fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { - panic!( - "Neither compute_matrices_inner nor compute_matrices override present in Animation \ - impl" - ) - } - /// Change the current skeleton to be more like `target`. fn interpolate(&mut self, target: &Self, dt: f32); } @@ -116,9 +110,19 @@ pub trait Animation { type Dependency; #[cfg(feature = "use-dyn-lib")] - const UPDATE_FN: &'static [u8] = b"\0"; + const UPDATE_FN: &'static [u8]; /// Returns a new skeleton that is generated by the animation. + fn update_skeleton_inner( + _skeleton: &Self::Skeleton, + _dependency: Self::Dependency, + _anim_time: f64, + _rate: &mut f32, + _skeleton_attr: &<::Skeleton as Skeleton>::Attr, + ) -> Self::Skeleton; + + /// Calls `update_skeleton_inner` either directly or via `libloading` to + /// produce generate the new skeleton. fn update_skeleton( skeleton: &Self::Skeleton, dependency: Self::Dependency, @@ -164,16 +168,4 @@ pub trait Animation { update_fn(skeleton, dependency, anim_time, rate, skeleton_attr) } } - - fn update_skeleton_inner( - _skeleton: &Self::Skeleton, - _dependency: Self::Dependency, - _anim_time: f64, - _rate: &mut f32, - _skeleton_attr: &<::Skeleton as Skeleton>::Attr, - ) -> Self::Skeleton { - panic!( - "Neither update_skeleton_inner nor update_skeleton override present in Animation impl" - ) - } } diff --git a/voxygen/src/anim/src/object/mod.rs b/voxygen/src/anim/src/object/mod.rs index 8b5b213429..398e6d80be 100644 --- a/voxygen/src/anim/src/object/mod.rs +++ b/voxygen/src/anim/src/object/mod.rs @@ -15,9 +15,13 @@ const SCALE: f32 = 1.0 / 11.0; impl Skeleton for ObjectSkeleton { type Attr = SkeletonAttr; - fn bone_count(&self) -> usize { 1 } + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"object_compute_mats\0"; - fn compute_matrices(&self) -> ([FigureBoneData; 16], Vec3) { + fn bone_count(&self) -> usize { 15 } + + #[cfg_attr(feature = "be-dyn-lib", export_name = "object_compute_mats")] + fn compute_matrices_inner(&self) -> ([FigureBoneData; 16], Vec3) { ( [ FigureBoneData::new(Mat4::scaling_3d(Vec3::broadcast(SCALE))), From f775b6a376a25238dad43e298725a03c2b7101b9 Mon Sep 17 00:00:00 2001 From: Imbris Date: Fri, 19 Jun 2020 01:31:15 -0400 Subject: [PATCH 6/6] Fix cargo test failing --- voxygen/src/anim/Cargo.toml | 4 +++- voxygen/src/anim/src/dyn_lib.rs | 6 +++--- voxygen/src/anim/src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/voxygen/src/anim/Cargo.toml b/voxygen/src/anim/Cargo.toml index c2b2b72633..0a2434cd64 100644 --- a/voxygen/src/anim/Cargo.toml +++ b/voxygen/src/anim/Cargo.toml @@ -6,7 +6,9 @@ edition = "2018" [lib] name = "voxygen_anim" -crate-type = ["lib", "cdylib"] +# Uncomment to use animation hot reloading +# Note: this breaks `cargo test` +#crate-type = ["lib", "cdylib"] [features] use-dyn-lib = ["libloading", "notify", "lazy_static", "log"] diff --git a/voxygen/src/anim/src/dyn_lib.rs b/voxygen/src/anim/src/dyn_lib.rs index 6474819212..9308c97e30 100644 --- a/voxygen/src/anim/src/dyn_lib.rs +++ b/voxygen/src/anim/src/dyn_lib.rs @@ -57,7 +57,7 @@ pub fn init() { while let Ok(path) = reload_recv.recv() { modified_paths.insert(path); - // Wait for to see if there are more modify events before reloading + // Wait for any additional modify events before reloading while let Ok(path) = reload_recv.recv_timeout(Duration::from_millis(300)) { modified_paths.insert(path); } @@ -80,7 +80,7 @@ pub fn init() { std::mem::forget(watcher); } -// Recompiles and hotreloads the lib if the source is changed +// Recompiles and hotreloads the lib if the source has been changed // Note: designed with voxygen dir as working dir, could be made more flexible fn event_fn(res: notify::Result, sender: &mpsc::Sender) { match res { @@ -96,7 +96,7 @@ fn event_fn(res: notify::Result, sender: &mpsc::Sender) { }, _ => {}, }, - Err(e) => log::error!("Animation hotreload watch error: {:?}", e), + Err(e) => log::error!("Animation hotreload watcher error: {:?}", e), } } diff --git a/voxygen/src/anim/src/lib.rs b/voxygen/src/anim/src/lib.rs index 44942a0aa2..766775c36d 100644 --- a/voxygen/src/anim/src/lib.rs +++ b/voxygen/src/anim/src/lib.rs @@ -122,7 +122,7 @@ pub trait Animation { ) -> Self::Skeleton; /// Calls `update_skeleton_inner` either directly or via `libloading` to - /// produce generate the new skeleton. + /// generate the new skeleton. fn update_skeleton( skeleton: &Self::Skeleton, dependency: Self::Dependency,