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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//! # The general types used all over the place
use derive_new::new;

#[cfg(feature = "serde-derives")]
use serde::Serialize;

/// Position in three dimensional space
#[derive(Copy, Clone, Debug, new)]
#[cfg_attr(feature = "serde-derives", derive(Serialize))]
pub struct Vector3f {
    /// The X coordinate
    pub x: f32,
    /// The Y coordinate
    pub y: f32,
    /// The Z coordinate
    pub z: f32,
}

impl From<[f32; 3]> for Vector3f {
    fn from(val: [f32; 3]) -> Self {
        Vector3f {
            x: val[0],
            y: val[1],
            z: val[2],
        }
    }
}

impl From<Vector3f> for [f32; 3] {
    fn from(v: Vector3f) -> [f32; 3] {
        [v.x, v.y, v.z]
    }
}

/// Rotation in three dimensional space
#[derive(Debug, new)]
#[cfg_attr(feature = "serde-derives", derive(Serialize))]
pub struct Quaternion {
    /// The X component
    pub x: f32,
    /// The Y component
    pub y: f32,
    /// The Z component
    pub z: f32,
    /// The W component
    pub w: f32,
}

/// Position and rotation in three dimensional space
#[derive(Debug)]
#[cfg_attr(feature = "serde-derives", derive(Serialize))]
pub struct Placement3D {
    /// The position
    pub pos: Vector3f,
    /// The rotation
    pub rot: Quaternion,
}

/// Alias for u32 that represents a world map from the resources
#[derive(Debug, Clone, FromPrimitive, ToPrimitive, PartialEq)]
#[cfg_attr(feature = "serde-derives", derive(Serialize))]
pub struct WorldID(u32);

/// Alias for u32 for an object template id
#[derive(Debug, Clone, FromPrimitive, ToPrimitive, PartialEq)]
#[cfg_attr(feature = "serde-derives", derive(Serialize))]
pub struct ObjectTemplate(u32);

/// Object ID
#[derive(Debug, Clone, new)]
#[cfg_attr(feature = "serde-derives", derive(Serialize))]
pub struct ObjectID {
    /// The bitmask for the scope of this object
    pub scope: u32,
    /// The serial ID of this object
    pub id: u32,
}

#[cfg(test)]
mod test {
    use super::{ObjectTemplate, WorldID};
    use num_traits::FromPrimitive;

    #[test]
    fn test_newtypes() {
        assert_eq!(ObjectTemplate::from_u32(100), Some(ObjectTemplate(100)));
        assert_eq!(WorldID::from_u32(1001), Some(WorldID(1001)));
    }
}