mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
idle block animation
This commit is contained in:
parent
e7c61c30cc
commit
39bd888a7c
@ -8,6 +8,7 @@ pub enum Animation {
|
|||||||
Jump,
|
Jump,
|
||||||
Gliding,
|
Gliding,
|
||||||
Attack,
|
Attack,
|
||||||
|
Block,
|
||||||
Roll,
|
Roll,
|
||||||
Crun,
|
Crun,
|
||||||
Cidle,
|
Cidle,
|
||||||
|
@ -41,7 +41,7 @@ impl<'a> System<'a> for Sys {
|
|||||||
(false, Jump, Wield { .. }) => Animation::Cjump,
|
(false, Jump, Wield { .. }) => Animation::Cjump,
|
||||||
(_, Glide, Idle) => Animation::Gliding,
|
(_, Glide, Idle) => Animation::Gliding,
|
||||||
(_, _, Attack { .. }) => Animation::Attack,
|
(_, _, Attack { .. }) => Animation::Attack,
|
||||||
(_, _, Block { .. }) => Animation::Gliding,
|
(_, _, Block { .. }) => Animation::Block,
|
||||||
// Impossible animation (Caused by missing animations or syncing delays)
|
// Impossible animation (Caused by missing animations or syncing delays)
|
||||||
_ => Animation::Gliding,
|
_ => Animation::Gliding,
|
||||||
};
|
};
|
||||||
|
260
voxygen/src/anim/character/block.rs
Normal file
260
voxygen/src/anim/character/block.rs
Normal file
@ -0,0 +1,260 @@
|
|||||||
|
use super::{
|
||||||
|
super::{Animation, SkeletonAttr},
|
||||||
|
CharacterSkeleton,
|
||||||
|
};
|
||||||
|
use common::comp::item::Tool;
|
||||||
|
use std::{f32::consts::PI, ops::Mul};
|
||||||
|
use vek::*;
|
||||||
|
|
||||||
|
pub struct Input {
|
||||||
|
pub attack: bool,
|
||||||
|
}
|
||||||
|
pub struct BlockAnimation;
|
||||||
|
|
||||||
|
impl Animation for BlockAnimation {
|
||||||
|
type Skeleton = CharacterSkeleton;
|
||||||
|
type Dependency = f64;
|
||||||
|
|
||||||
|
fn update_skeleton(
|
||||||
|
skeleton: &Self::Skeleton,
|
||||||
|
global_time: f64,
|
||||||
|
anim_time: f64,
|
||||||
|
skeleton_attr: &SkeletonAttr,
|
||||||
|
) -> Self::Skeleton {
|
||||||
|
let mut next = (*skeleton).clone();
|
||||||
|
|
||||||
|
let wave_ultra_slow = (anim_time as f32 * 3.0 + PI).sin();
|
||||||
|
let wave_ultra_slow_cos = (anim_time as f32 * 3.0 + PI).cos();
|
||||||
|
let wave_slow_cos = (anim_time as f32 * 6.0 + PI).cos();
|
||||||
|
let wave_slow = (anim_time as f32 * 6.0 + PI).sin();
|
||||||
|
|
||||||
|
let head_look = Vec2::new(
|
||||||
|
((global_time + anim_time) as f32 / 1.5)
|
||||||
|
.floor()
|
||||||
|
.mul(7331.0)
|
||||||
|
.sin()
|
||||||
|
* 0.3,
|
||||||
|
((global_time + anim_time) as f32 / 1.5)
|
||||||
|
.floor()
|
||||||
|
.mul(1337.0)
|
||||||
|
.sin()
|
||||||
|
* 0.15,
|
||||||
|
);
|
||||||
|
next.head.offset = Vec3::new(
|
||||||
|
0.0 + skeleton_attr.neck_right + wave_slow_cos * 0.2,
|
||||||
|
1.0 + skeleton_attr.neck_forward,
|
||||||
|
skeleton_attr.neck_height + 13.5 + wave_ultra_slow * 0.2,
|
||||||
|
);
|
||||||
|
next.head.ori =
|
||||||
|
Quaternion::rotation_x(-0.25);
|
||||||
|
next.head.scale = Vec3::one() * 1.01 * skeleton_attr.head_scale;
|
||||||
|
|
||||||
|
next.chest.offset = Vec3::new(0.0 + wave_slow_cos * 0.2, 0.0, 5.0 + wave_ultra_slow * 0.2);
|
||||||
|
next.chest.ori = Quaternion::rotation_x(-0.15) * Quaternion::rotation_y(wave_ultra_slow_cos * 0.01);
|
||||||
|
next.chest.scale = Vec3::one();
|
||||||
|
|
||||||
|
next.belt.offset = Vec3::new(0.0 + wave_slow_cos * 0.2, 0.0, 3.0 + wave_ultra_slow * 0.2);
|
||||||
|
next.belt.ori = Quaternion::rotation_x(0.0) * Quaternion::rotation_y(wave_ultra_slow_cos * 0.008);
|
||||||
|
next.belt.scale = Vec3::one() * 1.01;
|
||||||
|
|
||||||
|
next.shorts.offset = Vec3::new(0.0 + wave_slow_cos * 0.2, 0.0, 1.0 + wave_ultra_slow * 0.2);
|
||||||
|
next.shorts.ori = Quaternion::rotation_x(0.1);
|
||||||
|
next.shorts.scale = Vec3::one();
|
||||||
|
|
||||||
|
match Tool::Hammer {
|
||||||
|
//TODO: Inventory
|
||||||
|
Tool::Sword => {
|
||||||
|
next.l_hand.offset = Vec3::new(
|
||||||
|
-6.0,
|
||||||
|
3.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.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.weapon.offset = Vec3::new(
|
||||||
|
-6.0 + skeleton_attr.weapon_x,
|
||||||
|
4.5 + skeleton_attr.weapon_y,
|
||||||
|
0.0,
|
||||||
|
);
|
||||||
|
next.weapon.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(0.0)
|
||||||
|
* Quaternion::rotation_z(0.0);
|
||||||
|
next.weapon.scale = Vec3::one();
|
||||||
|
}
|
||||||
|
Tool::Axe => {
|
||||||
|
next.l_hand.offset = Vec3::new(
|
||||||
|
-6.0 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.5 + wave_ultra_slow_cos * 0.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.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 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.0 + wave_ultra_slow_cos * 0.5,
|
||||||
|
-2.0 + wave_ultra_slow * 1.0,
|
||||||
|
);
|
||||||
|
next.r_hand.ori = Quaternion::rotation_x(-0.3);
|
||||||
|
next.r_hand.scale = Vec3::one() * 1.01;
|
||||||
|
next.weapon.offset = Vec3::new(
|
||||||
|
-6.0 + skeleton_attr.weapon_x,
|
||||||
|
4.5 + skeleton_attr.weapon_y,
|
||||||
|
0.0 + wave_ultra_slow * 1.0,
|
||||||
|
);
|
||||||
|
next.weapon.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(0.0)
|
||||||
|
* Quaternion::rotation_z(0.0);
|
||||||
|
next.weapon.scale = Vec3::one();
|
||||||
|
}
|
||||||
|
Tool::Hammer => {
|
||||||
|
next.l_hand.offset = Vec3::new(-5.5, 9.0, 5.5);
|
||||||
|
next.l_hand.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(-1.57)
|
||||||
|
* Quaternion::rotation_z(0.5);
|
||||||
|
next.l_hand.scale = Vec3::one() * 1.01;
|
||||||
|
next.r_hand.offset = Vec3::new(8.4, 9.3, 5.5);
|
||||||
|
next.r_hand.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(-1.57)
|
||||||
|
* Quaternion::rotation_z(0.5);
|
||||||
|
next.r_hand.scale = Vec3::one() * 1.01;
|
||||||
|
next.weapon.offset = Vec3::new(
|
||||||
|
7.0 + skeleton_attr.weapon_x,
|
||||||
|
10.75 + skeleton_attr.weapon_y,
|
||||||
|
5.5,
|
||||||
|
);
|
||||||
|
next.weapon.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(-1.57)
|
||||||
|
* Quaternion::rotation_z(0.5);
|
||||||
|
next.weapon.scale = Vec3::one();
|
||||||
|
}
|
||||||
|
Tool::Staff => {
|
||||||
|
next.l_hand.offset = Vec3::new(
|
||||||
|
-6.0 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.5 + wave_ultra_slow_cos * 0.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.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 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.0 + wave_ultra_slow_cos * 0.5,
|
||||||
|
-2.0 + wave_ultra_slow * 1.0,
|
||||||
|
);
|
||||||
|
next.r_hand.ori = Quaternion::rotation_x(-0.3);
|
||||||
|
next.r_hand.scale = Vec3::one() * 1.01;
|
||||||
|
next.weapon.offset = Vec3::new(
|
||||||
|
-6.0 + skeleton_attr.weapon_x + wave_ultra_slow_cos * 1.0,
|
||||||
|
4.5 + skeleton_attr.weapon_y + wave_ultra_slow_cos * 0.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.0,
|
||||||
|
);
|
||||||
|
next.weapon.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(0.0)
|
||||||
|
* Quaternion::rotation_z(0.0);
|
||||||
|
next.weapon.scale = Vec3::one();
|
||||||
|
}
|
||||||
|
Tool::SwordShield => {
|
||||||
|
next.l_hand.offset = Vec3::new(
|
||||||
|
-6.0 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.5 + wave_ultra_slow_cos * 0.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.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 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.0 + wave_ultra_slow_cos * 0.5,
|
||||||
|
-2.0 + wave_ultra_slow * 1.0,
|
||||||
|
);
|
||||||
|
next.r_hand.ori = Quaternion::rotation_x(-0.3);
|
||||||
|
next.r_hand.scale = Vec3::one() * 1.01;
|
||||||
|
next.weapon.offset = Vec3::new(
|
||||||
|
-6.0 + skeleton_attr.weapon_x + wave_ultra_slow_cos * 1.0,
|
||||||
|
4.5 + skeleton_attr.weapon_y + wave_ultra_slow_cos * 0.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.0,
|
||||||
|
);
|
||||||
|
next.weapon.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(0.0)
|
||||||
|
* Quaternion::rotation_z(0.0);
|
||||||
|
next.weapon.scale = Vec3::one();
|
||||||
|
}
|
||||||
|
Tool::Bow => {
|
||||||
|
next.l_hand.offset = Vec3::new(
|
||||||
|
-6.0 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.5 + wave_ultra_slow_cos * 0.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.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 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.0 + wave_ultra_slow_cos * 0.5,
|
||||||
|
-2.0 + wave_ultra_slow * 1.0,
|
||||||
|
);
|
||||||
|
next.r_hand.ori = Quaternion::rotation_x(-0.3);
|
||||||
|
next.r_hand.scale = Vec3::one() * 1.01;
|
||||||
|
next.weapon.offset = Vec3::new(
|
||||||
|
-6.0 + skeleton_attr.weapon_x + wave_ultra_slow_cos * 1.0,
|
||||||
|
4.5 + skeleton_attr.weapon_y + wave_ultra_slow_cos * 0.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.0,
|
||||||
|
);
|
||||||
|
next.weapon.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(0.0)
|
||||||
|
* Quaternion::rotation_z(0.0);
|
||||||
|
next.weapon.scale = Vec3::one();
|
||||||
|
}
|
||||||
|
Tool::Daggers => {
|
||||||
|
next.l_hand.offset = Vec3::new(
|
||||||
|
-6.0 + wave_ultra_slow_cos * 1.0,
|
||||||
|
3.5 + wave_ultra_slow_cos * 0.5,
|
||||||
|
0.0 + wave_ultra_slow * 1.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.weapon.offset = Vec3::new(
|
||||||
|
-6.0 + skeleton_attr.weapon_x,
|
||||||
|
4.5 + skeleton_attr.weapon_y,
|
||||||
|
0.0,
|
||||||
|
);
|
||||||
|
next.weapon.ori = Quaternion::rotation_x(-0.3)
|
||||||
|
* Quaternion::rotation_y(0.0)
|
||||||
|
* Quaternion::rotation_z(0.0);
|
||||||
|
next.weapon.scale = Vec3::one();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
next.l_foot.offset = Vec3::new(-3.4, 0.3, 8.0 + wave_ultra_slow_cos * 0.1);
|
||||||
|
next.l_foot.ori = Quaternion::rotation_x(-0.3);
|
||||||
|
next.l_foot.scale = Vec3::one();
|
||||||
|
|
||||||
|
next.r_foot.offset = Vec3::new(3.4, 1.2, 8.0 + wave_ultra_slow * 0.1);
|
||||||
|
next.r_foot.ori = Quaternion::rotation_x(0.3);
|
||||||
|
next.r_foot.scale = Vec3::one();
|
||||||
|
|
||||||
|
next.l_shoulder.offset = Vec3::new(-5.0, 0.0, 4.7);
|
||||||
|
next.l_shoulder.ori = Quaternion::rotation_x(0.0);
|
||||||
|
next.l_shoulder.scale = Vec3::one() * 1.1;
|
||||||
|
|
||||||
|
next.r_shoulder.offset = Vec3::new(5.0, 0.0, 4.7);
|
||||||
|
next.r_shoulder.ori = Quaternion::rotation_x(0.0);
|
||||||
|
next.r_shoulder.scale = Vec3::one() * 1.1;
|
||||||
|
|
||||||
|
next.draw.offset = Vec3::new(0.0, 5.0, 0.0);
|
||||||
|
next.draw.ori = Quaternion::rotation_y(0.0);
|
||||||
|
next.draw.scale = Vec3::one() * 0.0;
|
||||||
|
|
||||||
|
next.torso.offset = Vec3::new(0.0, -0.2, 0.1) * skeleton_attr.scaler;
|
||||||
|
next.torso.ori = Quaternion::rotation_x(0.0);
|
||||||
|
next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler;
|
||||||
|
|
||||||
|
next
|
||||||
|
}
|
||||||
|
}
|
@ -7,6 +7,7 @@ pub mod idle;
|
|||||||
pub mod jump;
|
pub mod jump;
|
||||||
pub mod roll;
|
pub mod roll;
|
||||||
pub mod run;
|
pub mod run;
|
||||||
|
pub mod block;
|
||||||
|
|
||||||
// Reexports
|
// Reexports
|
||||||
pub use self::attack::AttackAnimation;
|
pub use self::attack::AttackAnimation;
|
||||||
@ -18,6 +19,8 @@ pub use self::idle::IdleAnimation;
|
|||||||
pub use self::jump::JumpAnimation;
|
pub use self::jump::JumpAnimation;
|
||||||
pub use self::roll::RollAnimation;
|
pub use self::roll::RollAnimation;
|
||||||
pub use self::run::RunAnimation;
|
pub use self::run::RunAnimation;
|
||||||
|
pub use self::block::BlockAnimation;
|
||||||
|
|
||||||
|
|
||||||
use super::{Bone, Skeleton};
|
use super::{Bone, Skeleton};
|
||||||
use crate::render::FigureBoneData;
|
use crate::render::FigureBoneData;
|
||||||
|
@ -693,6 +693,14 @@ impl FigureMgr {
|
|||||||
skeleton_attr,
|
skeleton_attr,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
comp::Animation::Block => {
|
||||||
|
anim::character::BlockAnimation::update_skeleton(
|
||||||
|
state.skeleton_mut(),
|
||||||
|
time,
|
||||||
|
animation_info.time,
|
||||||
|
skeleton_attr,
|
||||||
|
)
|
||||||
|
}
|
||||||
comp::Animation::Cjump => anim::character::CjumpAnimation::update_skeleton(
|
comp::Animation::Cjump => anim::character::CjumpAnimation::update_skeleton(
|
||||||
state.skeleton_mut(),
|
state.skeleton_mut(),
|
||||||
time,
|
time,
|
||||||
|
Loading…
Reference in New Issue
Block a user