2019-10-23 02:56:45 +00:00
|
|
|
pub mod idle;
|
|
|
|
pub mod jump;
|
|
|
|
pub mod run;
|
|
|
|
|
|
|
|
// Reexports
|
2020-02-01 20:39:39 +00:00
|
|
|
pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation};
|
2019-10-23 02:56:45 +00:00
|
|
|
|
|
|
|
use super::{Bone, Skeleton};
|
|
|
|
use crate::render::FigureBoneData;
|
2020-01-26 00:22:48 +00:00
|
|
|
use common::comp::{self};
|
2019-10-23 02:56:45 +00:00
|
|
|
|
2020-01-26 00:22:48 +00:00
|
|
|
#[derive(Clone, Default)]
|
2019-10-23 02:56:45 +00:00
|
|
|
pub struct BirdMediumSkeleton {
|
2019-10-25 23:18:34 +00:00
|
|
|
head: Bone,
|
|
|
|
torso: Bone,
|
|
|
|
tail: Bone,
|
|
|
|
wing_l: Bone,
|
|
|
|
wing_r: Bone,
|
|
|
|
leg_l: Bone,
|
|
|
|
leg_r: Bone,
|
2019-10-23 02:56:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl BirdMediumSkeleton {
|
2020-02-01 20:39:39 +00:00
|
|
|
pub fn new() -> Self { Self::default() }
|
2019-10-23 02:56:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Skeleton for BirdMediumSkeleton {
|
2020-01-26 00:22:48 +00:00
|
|
|
type Attr = SkeletonAttr;
|
2020-02-01 20:39:39 +00:00
|
|
|
|
2020-04-25 14:38:17 +00:00
|
|
|
fn bone_count(&self) -> usize { 7 }
|
|
|
|
|
2020-04-11 17:43:45 +00:00
|
|
|
fn compute_matrices(&self) -> [FigureBoneData; 16] {
|
2019-10-25 23:18:34 +00:00
|
|
|
let torso_mat = self.torso.compute_base_matrix();
|
2019-10-23 02:56:45 +00:00
|
|
|
|
|
|
|
[
|
2020-02-25 06:47:56 +00:00
|
|
|
FigureBoneData::new(torso_mat * self.head.compute_base_matrix()),
|
2019-10-25 01:26:32 +00:00
|
|
|
FigureBoneData::new(torso_mat),
|
2020-02-25 06:47:56 +00:00
|
|
|
FigureBoneData::new(torso_mat * self.tail.compute_base_matrix()),
|
|
|
|
FigureBoneData::new(torso_mat * self.wing_l.compute_base_matrix()),
|
|
|
|
FigureBoneData::new(torso_mat * self.wing_r.compute_base_matrix()),
|
2019-10-25 23:18:34 +00:00
|
|
|
FigureBoneData::new(self.leg_l.compute_base_matrix()),
|
|
|
|
FigureBoneData::new(self.leg_r.compute_base_matrix()),
|
2019-10-23 02:56:45 +00:00
|
|
|
FigureBoneData::default(),
|
|
|
|
FigureBoneData::default(),
|
|
|
|
FigureBoneData::default(),
|
|
|
|
FigureBoneData::default(),
|
|
|
|
FigureBoneData::default(),
|
|
|
|
FigureBoneData::default(),
|
|
|
|
FigureBoneData::default(),
|
2020-03-05 14:02:11 +00:00
|
|
|
FigureBoneData::default(),
|
|
|
|
FigureBoneData::default(),
|
2019-10-23 02:56:45 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn interpolate(&mut self, target: &Self, dt: f32) {
|
2019-10-25 23:18:34 +00:00
|
|
|
self.head.interpolate(&target.head, dt);
|
|
|
|
self.torso.interpolate(&target.torso, dt);
|
|
|
|
self.tail.interpolate(&target.tail, dt);
|
|
|
|
self.wing_l.interpolate(&target.wing_l, dt);
|
|
|
|
self.wing_r.interpolate(&target.wing_r, dt);
|
|
|
|
self.leg_l.interpolate(&target.leg_l, dt);
|
|
|
|
self.leg_r.interpolate(&target.leg_r, dt);
|
2019-10-23 02:56:45 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-26 00:22:48 +00:00
|
|
|
|
|
|
|
pub struct SkeletonAttr {
|
|
|
|
head: (f32, f32),
|
|
|
|
chest: (f32, f32),
|
|
|
|
tail: (f32, f32),
|
|
|
|
wing: (f32, f32, f32),
|
|
|
|
foot: (f32, f32, f32),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> std::convert::TryFrom<&'a comp::Body> for SkeletonAttr {
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn try_from(body: &'a comp::Body) -> Result<Self, Self::Error> {
|
|
|
|
match body {
|
|
|
|
comp::Body::BirdMedium(body) => Ok(SkeletonAttr::from(body)),
|
|
|
|
_ => Err(()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for SkeletonAttr {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
head: (0.0, 0.0),
|
|
|
|
chest: (0.0, 0.0),
|
|
|
|
tail: (0.0, 0.0),
|
|
|
|
wing: (0.0, 0.0, 0.0),
|
|
|
|
foot: (0.0, 0.0, 0.0),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> From<&'a comp::bird_medium::Body> for SkeletonAttr {
|
|
|
|
fn from(body: &'a comp::bird_medium::Body) -> Self {
|
|
|
|
use comp::bird_medium::Species::*;
|
|
|
|
Self {
|
|
|
|
head: match (body.species, body.body_type) {
|
2020-01-29 06:38:08 +00:00
|
|
|
(Duck, _) => (4.0, 3.0),
|
|
|
|
(Chicken, _) => (4.0, 3.0),
|
2020-01-26 00:22:48 +00:00
|
|
|
(Goose, _) => (5.0, 5.0),
|
2020-01-29 06:38:08 +00:00
|
|
|
(Peacock, _) => (4.0, 7.0),
|
2020-03-07 18:26:46 +00:00
|
|
|
(Eagle, _) => (3.5, 5.0),
|
2020-01-26 00:22:48 +00:00
|
|
|
},
|
|
|
|
chest: match (body.species, body.body_type) {
|
2020-01-29 06:38:08 +00:00
|
|
|
(Duck, _) => (0.0, 5.0),
|
|
|
|
(Chicken, _) => (0.0, 5.0),
|
2020-01-26 00:22:48 +00:00
|
|
|
(Goose, _) => (0.0, 8.0),
|
2020-01-29 06:38:08 +00:00
|
|
|
(Peacock, _) => (0.0, 10.0),
|
2020-03-07 18:26:46 +00:00
|
|
|
(Eagle, _) => (0.0, 8.0),
|
2020-01-26 00:22:48 +00:00
|
|
|
},
|
|
|
|
tail: match (body.species, body.body_type) {
|
2020-01-29 06:38:08 +00:00
|
|
|
(Duck, _) => (-3.0, 1.5),
|
|
|
|
(Chicken, _) => (-3.0, 1.5),
|
2020-01-26 00:22:48 +00:00
|
|
|
(Goose, _) => (-5.0, 3.0),
|
2020-01-29 06:38:08 +00:00
|
|
|
(Peacock, _) => (-5.5, 2.0),
|
2020-03-08 15:07:47 +00:00
|
|
|
(Eagle, _) => (-8.0, -4.0),
|
2020-01-26 00:22:48 +00:00
|
|
|
},
|
|
|
|
wing: match (body.species, body.body_type) {
|
2020-01-29 06:38:08 +00:00
|
|
|
(Duck, _) => (2.75, 0.0, 6.0),
|
|
|
|
(Chicken, _) => (2.75, 0.0, 6.0),
|
|
|
|
(Goose, _) => (3.75, -1.0, 9.0),
|
|
|
|
(Peacock, _) => (3.0, 0.0, 9.0),
|
2020-03-08 15:07:47 +00:00
|
|
|
(Eagle, _) => (3.0, -8.0, 5.0),
|
2020-01-26 00:22:48 +00:00
|
|
|
},
|
|
|
|
foot: match (body.species, body.body_type) {
|
2020-01-29 06:38:08 +00:00
|
|
|
(Duck, _) => (2.0, -1.5, 4.0),
|
|
|
|
(Chicken, _) => (2.0, -1.5, 4.0),
|
|
|
|
(Goose, _) => (2.0, -1.5, 7.0),
|
|
|
|
(Peacock, _) => (2.0, -2.5, 8.0),
|
2020-03-07 18:26:46 +00:00
|
|
|
(Eagle, _) => (2.0, -2.0, 8.0),
|
2020-01-26 00:22:48 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|