summaryrefslogtreecommitdiff
path: root/src/to_clt/obj.rs
blob: 7ce9f3232fbccfec35fd7d88a671fa92ea5ba07a (plain)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
use super::*;

#[mt_derive(to = "clt", repr = "str")]
pub enum ObjVisual {
    Cube,
    Sprite,
    UprightSprite,
    Mesh,
    Wielditem,
    Item,
}

#[mt_derive(to = "clt")]
pub struct ObjProps {
    #[mt(const_before = "4u8")] // version
    pub max_hp: u16, // player only
    pub collide_with_nodes: bool,
    pub weight: f32, // deprecated
    pub collision_box: Aabb3<f32>,
    pub selection_box: Aabb3<f32>,
    pub pointable: bool,
    pub visual: ObjVisual,
    pub visual_size: Vector3<f32>,
    pub textures: Vec<String>,
    pub sprite_sheet_size: Vector2<i16>, // in sprites
    pub sprite_pos: Point2<i16>,         // in sprite sheet
    pub visible: bool,
    pub make_footstep_sounds: bool,
    pub rotate_speed: Rad<f32>, // per second
    pub mesh: String,
    pub colors: Vec<Color>,
    pub collide_with_objs: bool,
    pub step_height: f32,
    pub face_rotate_dir: bool,
    pub face_rotate_dir_off: Deg<f32>,
    pub backface_cull: bool,
    pub nametag: String,
    pub nametag_color: Color,
    pub face_rotate_speed: Deg<f32>, // per second
    pub infotext: String,
    pub itemstring: String,
    pub glow: i8,
    pub max_breath: u16,    // player only
    pub eye_height: f32,    // player only
    pub zoom_fov: Deg<f32>, // player only
    pub use_texture_alpha: bool,
    pub dmg_texture_mod: String, // suffix
    pub shaded: bool,
    pub show_on_minimap: bool,
    pub nametag_bg: Color,
}

#[mt_derive(to = "clt")]
pub struct ObjPos {
    #[mt(multiplier = "BS")]
    pub pos: Point3<f32>,
    #[mt(multiplier = "BS")]
    pub vel: Vector3<f32>,
    #[mt(multiplier = "BS")]
    pub acc: Vector3<f32>,
    pub rot: Euler<Deg<f32>>,
    pub interpolate: bool,
    pub end: bool,
    pub update_interval: f32,
}

#[mt_derive(to = "clt")]
pub struct ObjSprite {
    pub frame_0: Point2<i16>,
    pub frames: u16,
    pub frame_duration: f32,
    pub view_angle_frames: bool,
}

#[mt_derive(to = "clt")]
pub struct ObjAnim {
    pub frames: Vector2<i32>,
    pub speed: f32,
    pub blend: f32,
    pub no_loop: bool,
}

#[mt_derive(to = "clt")]
pub struct ObjBonePos {
    pub pos: Point3<f32>,
    pub rot: Euler<Deg<f32>>,
}

#[mt_derive(to = "clt")]
pub struct ObjAttach {
    pub parent_id: u16,
    pub bone: String,
    pub pos: Point3<f32>,
    pub rot: Euler<Deg<f32>>,
    pub force_visible: bool,
}

#[mt_derive(to = "clt")]
pub struct ObjPhysicsOverride {
    pub walk: f32,
    pub jump: f32,
    pub gravity: f32,
    // the following are player only
    pub no_sneak: bool,
    pub no_sneak_glitch: bool,
    pub old_sneak: bool,
}

pub const GENERIC_CAO: u8 = 101;

#[mt_derive(to = "clt", repr = "u8", tag = "type", content = "data")]
pub enum ObjMsg {
    Props(Box<ObjProps>) = 0,
    Pos(ObjPos),
    TextureMod {
        #[serde(rename = "mod")]
        texture_mod: String,
    },
    Sprite(ObjSprite),
    Hp {
        hp: u16,
    },
    ArmorGroups {
        armor: HashMap<String, u16>,
    },
    Anim(ObjAnim),
    BonePos {
        bone: String,
        pos: ObjBonePos,
    },
    Attach(ObjAttach),
    PhysicsOverride(ObjPhysicsOverride),
    SpawnInfant {
        #[mt(const_after = "GENERIC_CAO")]
        id: u16,
    } = 11,
    AnimSpeed {
        speed: f32,
    },
}

#[mt_derive(to = "clt")]
pub struct ObjIdMsg {
    pub id: u16,
    #[mt(size = "u16")]
    pub msg: ObjMsg,
}

#[mt_derive(to = "clt")]
pub struct ObjInitMsg(#[mt(size = "u32")] pub ObjMsg);

#[mt_derive(to = "clt")]
pub struct ObjInitData {
    #[mt(const_before = "1u8")] // version
    pub name: String,
    pub is_player: bool,
    pub id: u16,
    #[mt(multiplier = "BS")]
    pub pos: Point3<f32>,
    pub rot: Euler<Deg<f32>>,
    pub hp: u16,
    #[mt(len = "u8")]
    pub msgs: Vec<ObjInitMsg>,
}

#[mt_derive(to = "clt")]
pub struct ObjAdd {
    pub id: u16,
    #[mt(const_before = "GENERIC_CAO")]
    #[mt(size = "u32")]
    pub init_data: ObjInitData,
}