1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
use amethyst_core::{
math::{zero, Quaternion, Unit, Vector3, Vector4},
Transform,
};
use serde::{Deserialize, Serialize};
use crate::{
resources::{AnimationSampling, ApplyData, BlendMethod},
util::SamplerPrimitive,
};
#[derive(Debug, Clone, Copy, Hash, Eq, PartialEq, Serialize, Deserialize)]
pub enum TransformChannel {
Translation,
Rotation,
Scale,
}
impl<'a> ApplyData<'a> for Transform {
type ApplyData = ();
}
impl AnimationSampling for Transform {
type Primitive = SamplerPrimitive<f32>;
type Channel = TransformChannel;
fn apply_sample(&mut self, channel: &Self::Channel, data: &SamplerPrimitive<f32>, _: &()) {
use crate::util::SamplerPrimitive::*;
use self::TransformChannel::*;
match (channel, *data) {
(&Translation, Vec3(ref d)) => {
self.set_translation_xyz(d[0], d[1], d[2]);
}
(&Rotation, Vec4(ref d)) => {
*self.rotation_mut() = Unit::new_normalize(Quaternion::from(Vector4::from(*d)));
}
(&Scale, Vec3(ref d)) => {
self.set_scale(Vector3::new(d[0], d[1], d[2]));
}
_ => panic!("Attempt to apply invalid sample to Transform"),
}
}
fn current_sample(&self, channel: &Self::Channel, _: &()) -> SamplerPrimitive<f32> {
use self::TransformChannel::*;
match channel {
Translation => SamplerPrimitive::Vec3((*self.translation()).into()),
Rotation => SamplerPrimitive::Vec4((*self.rotation().as_vector()).into()),
Scale => SamplerPrimitive::Vec3((*self.scale()).into()),
}
}
fn default_primitive(channel: &Self::Channel) -> Self::Primitive {
use self::TransformChannel::*;
match channel {
Translation => SamplerPrimitive::Vec3([zero(); 3]),
Rotation => SamplerPrimitive::Vec4([zero(); 4]),
Scale => SamplerPrimitive::Vec3([zero(); 3]),
}
}
fn blend_method(&self, _: &Self::Channel) -> Option<BlendMethod> {
Some(BlendMethod::Linear)
}
}