veloren/voxygen/src/anim/character/wield.rs

205 lines
9.7 KiB
Rust
Raw Normal View History

2020-01-26 00:22:48 +00:00
use super::{super::Animation, CharacterSkeleton, SkeletonAttr};
2019-12-29 23:47:42 +00:00
use common::comp::item::ToolKind;
use std::f32::consts::PI;
2019-06-30 02:13:34 +00:00
use vek::*;
pub struct WieldAnimation;
2019-06-30 02:13:34 +00:00
impl Animation for WieldAnimation {
2019-12-29 23:47:42 +00:00
type Dependency = (Option<ToolKind>, f32, f64);
type Skeleton = CharacterSkeleton;
2019-06-30 02:13:34 +00:00
fn update_skeleton(
skeleton: &Self::Skeleton,
2020-03-08 21:02:25 +00:00
(active_tool_kind, _velocity, _global_time): Self::Dependency,
2019-06-30 02:13:34 +00:00
anim_time: f64,
2020-03-08 21:02:25 +00:00
_rate: &mut f32,
2019-06-30 02:13:34 +00:00
skeleton_attr: &SkeletonAttr,
) -> Self::Skeleton {
let mut next = (*skeleton).clone();
2019-07-04 14:58:59 +00:00
2020-03-20 05:27:54 +00:00
let wave_ultra_slow = (anim_time as f32 * 1.0 + PI).sin();
2020-01-29 06:38:08 +00:00
let wave_ultra_slow_cos = (anim_time as f32 * 3.0 + PI).cos();
let wave = (anim_time as f32 * 1.0).sin();
match active_tool_kind {
//TODO: Inventory
Some(ToolKind::Sword(_)) => {
2020-03-08 21:02:25 +00:00
next.l_hand.offset = Vec3::new(-0.25, -5.0, -5.0);
next.l_hand.ori = Quaternion::rotation_x(1.47) * Quaternion::rotation_y(-0.2);
2020-03-05 14:02:11 +00:00
next.l_hand.scale = Vec3::one() * 1.04;
2020-03-08 21:02:25 +00:00
next.r_hand.offset = Vec3::new(1.25, -5.5, -8.0);
next.r_hand.ori = Quaternion::rotation_x(1.47) * Quaternion::rotation_y(0.3);
2020-03-05 14:02:11 +00:00
next.r_hand.scale = Vec3::one() * 1.05;
next.main.offset = Vec3::new(0.0, 0.0, -6.0);
2020-03-08 21:02:25 +00:00
next.main.ori = Quaternion::rotation_x(-0.1)
* Quaternion::rotation_y(0.0)
* Quaternion::rotation_z(0.0);
next.main.scale = Vec3::one();
2020-03-05 14:02:11 +00:00
2020-03-08 21:02:25 +00:00
next.control.offset = Vec3::new(-7.0, 6.0, 6.0);
2020-03-21 18:54:29 +00:00
next.control.ori = Quaternion::rotation_x(wave_ultra_slow * 0.15)
2020-03-05 14:02:11 +00:00
* Quaternion::rotation_y(0.0)
2020-03-21 18:54:29 +00:00
* Quaternion::rotation_z(wave_ultra_slow_cos * 0.08);
2020-03-05 14:02:11 +00:00
next.control.scale = Vec3::one();
},
Some(ToolKind::Axe(_)) => {
2020-03-20 05:27:54 +00:00
next.l_hand.offset = Vec3::new(-4.0, 3.0, 6.0);
2020-03-20 06:38:53 +00:00
next.l_hand.ori = Quaternion::rotation_x(-0.3)
* Quaternion::rotation_z(3.14 - 0.3)
* Quaternion::rotation_y(-0.8);
2020-03-20 05:27:54 +00:00
next.l_hand.scale = Vec3::one() * 1.08;
next.r_hand.offset = Vec3::new(-2.5, 9.0, 4.0);
2020-03-20 06:38:53 +00:00
next.r_hand.ori = Quaternion::rotation_x(-0.3)
* Quaternion::rotation_z(3.14 - 0.3)
* Quaternion::rotation_y(-0.8);
2020-03-20 05:27:54 +00:00
next.r_hand.scale = Vec3::one() * 1.06;
next.main.offset = Vec3::new(-6.0, 10.0, -1.0);
next.main.ori = Quaternion::rotation_x(1.27)
* Quaternion::rotation_y(-0.3)
* Quaternion::rotation_z(-0.8);
next.main.scale = Vec3::one();
2020-03-20 05:27:54 +00:00
2020-03-21 07:40:14 +00:00
next.control.offset = Vec3::new(0.0, 0.0, -2.0);
next.control.ori = Quaternion::rotation_x(wave_ultra_slow_cos * 0.1 + 0.2)
* Quaternion::rotation_y(-0.3)
* Quaternion::rotation_z(wave_ultra_slow * 0.1 - 0.5);
2020-03-20 05:27:54 +00:00
next.control.scale = Vec3::one();
},
Some(ToolKind::Hammer(_)) => {
2020-03-20 05:27:54 +00:00
next.l_hand.offset = Vec3::new(-7.0, 4.6, 7.5);
next.l_hand.ori = Quaternion::rotation_x(0.3) * Quaternion::rotation_y(0.32);
next.l_hand.scale = Vec3::one() * 1.08;
next.r_hand.offset = Vec3::new(8.0, 5.75, 4.0);
next.r_hand.ori = Quaternion::rotation_x(0.3) * Quaternion::rotation_y(0.22);
next.r_hand.scale = Vec3::one() * 1.06;
next.main.offset = Vec3::new(6.0, 7.0, 0.0);
next.main.ori = Quaternion::rotation_x(0.3)
* Quaternion::rotation_y(-1.35)
* Quaternion::rotation_z(1.57);
next.main.scale = Vec3::one();
2020-03-20 05:27:54 +00:00
next.control.offset = Vec3::new(0.0, 0.0, 0.0);
next.control.ori = Quaternion::rotation_x(wave_ultra_slow * 0.15)
* Quaternion::rotation_y(0.0)
* Quaternion::rotation_z(wave_ultra_slow_cos * 0.08);
next.control.scale = Vec3::one();
},
Some(ToolKind::Staff(_)) => {
next.l_hand.offset = Vec3::new(1.0, -2.0, -5.0);
next.l_hand.ori = Quaternion::rotation_x(1.47) * Quaternion::rotation_y(-0.3);
next.l_hand.scale = Vec3::one() * 1.05;
next.r_hand.offset = Vec3::new(9.0, 1.0, 0.0);
next.r_hand.ori = Quaternion::rotation_x(1.8)
* Quaternion::rotation_y(0.5)
* Quaternion::rotation_z(-0.27);
next.r_hand.scale = Vec3::one() * 1.05;
next.main.offset = Vec3::new(11.0, 9.0, 10.0);
next.main.ori = Quaternion::rotation_x(-0.3)
* Quaternion::rotation_y(3.14 + 0.3)
* Quaternion::rotation_z(0.9);
next.main.scale = Vec3::one();
next.control.offset = Vec3::new(-7.0, 6.0, 6.0);
next.control.ori = Quaternion::rotation_x(wave_ultra_slow * 0.2)
* Quaternion::rotation_y(0.0)
* Quaternion::rotation_z(wave_ultra_slow_cos * 0.1);
next.control.scale = Vec3::one();
},
Some(ToolKind::Shield(_)) => {
next.l_hand.offset = Vec3::new(-6.0, 3.5, 0.0);
next.l_hand.ori = Quaternion::rotation_x(-0.3);
next.l_hand.scale = Vec3::one() * 1.01;
next.r_hand.offset = Vec3::new(-6.0, 3.0, -2.0);
next.r_hand.ori = Quaternion::rotation_x(-0.3);
next.r_hand.scale = Vec3::one() * 1.01;
next.main.offset = Vec3::new(
-6.0 + skeleton_attr.weapon_x,
4.5 + skeleton_attr.weapon_y,
0.0,
);
next.main.ori = Quaternion::rotation_x(-0.3)
* Quaternion::rotation_y(0.0)
* Quaternion::rotation_z(0.0);
next.main.scale = Vec3::one();
},
Some(ToolKind::Bow(_)) => {
2020-03-21 07:40:14 +00:00
next.l_hand.offset = Vec3::new(1.0, -4.0, -1.0);
next.l_hand.ori = Quaternion::rotation_x(1.20)
* Quaternion::rotation_y(-0.6)
* Quaternion::rotation_z(-0.3);
next.l_hand.scale = Vec3::one() * 1.05;
next.r_hand.offset = Vec3::new(3.0, -1.0, -5.0);
next.r_hand.ori = Quaternion::rotation_x(1.20)
* Quaternion::rotation_y(-0.6)
* Quaternion::rotation_z(-0.3);
next.r_hand.scale = Vec3::one() * 1.05;
next.main.offset = Vec3::new(3.0, 2.0, -13.0);
next.main.ori = Quaternion::rotation_x(-0.3)
2020-01-29 06:38:08 +00:00
* Quaternion::rotation_y(0.3)
2020-03-21 07:40:14 +00:00
* Quaternion::rotation_z(-0.6);
next.main.scale = Vec3::one();
2020-03-21 07:40:14 +00:00
next.control.offset = Vec3::new(-7.0, 6.0, 6.0);
next.control.ori = Quaternion::rotation_x(wave_ultra_slow * 0.2)
* Quaternion::rotation_y(0.0)
* Quaternion::rotation_z(wave_ultra_slow_cos * 0.1);
next.control.scale = Vec3::one();
},
Some(ToolKind::Dagger(_)) => {
next.l_hand.offset = Vec3::new(-6.0, 3.5, 0.0);
next.l_hand.ori = Quaternion::rotation_x(-0.3);
next.l_hand.scale = Vec3::one() * 1.01;
next.r_hand.offset = Vec3::new(-6.0, 3.0, -2.0);
next.r_hand.ori = Quaternion::rotation_x(-0.3);
next.r_hand.scale = Vec3::one() * 1.01;
next.main.offset = Vec3::new(
-6.0 + skeleton_attr.weapon_x,
4.5 + skeleton_attr.weapon_y,
0.0,
);
next.main.ori = Quaternion::rotation_x(-0.3)
* Quaternion::rotation_y(0.0)
* Quaternion::rotation_z(0.0);
next.main.scale = Vec3::one();
},
2019-12-29 23:47:42 +00:00
Some(ToolKind::Debug(_)) => {
next.l_hand.offset = Vec3::new(-7.0, 4.0, 3.0);
next.l_hand.ori = Quaternion::rotation_x(1.27 + wave * 0.25)
* Quaternion::rotation_y(0.0)
* Quaternion::rotation_z(0.0);
next.l_hand.scale = Vec3::one() * 1.01;
next.r_hand.offset = Vec3::new(7.0, 2.5, -1.25);
next.r_hand.ori = Quaternion::rotation_x(1.27 + wave * 0.25)
* Quaternion::rotation_y(0.0)
* Quaternion::rotation_z(-0.3);
next.r_hand.scale = Vec3::one() * 1.01;
next.main.offset = Vec3::new(
5.0 + skeleton_attr.weapon_x,
8.75 + skeleton_attr.weapon_y,
-2.0,
);
next.main.ori = Quaternion::rotation_x(-0.3)
* Quaternion::rotation_y(-1.27)
* Quaternion::rotation_z(wave * -0.25);
next.main.scale = Vec3::one();
},
_ => {},
2019-07-07 22:06:29 +00:00
}
2020-03-08 21:02:25 +00:00
2020-03-20 05:27:54 +00:00
next.torso.offset = Vec3::new(0.0, 0.0, 0.1) * skeleton_attr.scaler;
2020-03-08 21:02:25 +00:00
next.torso.ori = Quaternion::rotation_x(0.0);
next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler;
2020-03-05 14:02:11 +00:00
next.l_control.offset = Vec3::new(0.0, 0.0, 0.0);
next.l_control.ori = Quaternion::rotation_x(0.0);
next.l_control.scale = Vec3::one();
next.r_control.offset = Vec3::new(0.0, 0.0, 0.0);
next.r_control.ori = Quaternion::rotation_x(0.0);
next.r_control.scale = Vec3::one();
2019-06-30 02:13:34 +00:00
next
}
}