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
#[macro_use]
extern crate failure;
#[macro_use]
extern crate serde_derive;
pub use self::combine_indices::CreateSingleIndexConfig;
pub use self::export::*;
pub use crate::bounding_box::BoundingBox;
use crate::custom_property::CustomProperty;
pub use crate::material::PrincipledBSDF;
use crate::serde::serialize_hashmap_deterministic;
pub use crate::vertex_attributes::{
BoneInfluence, MultiIndexedVertexAttributes, SingleIndexedVertexAttributes, Vertex,
VertexAttribute,
};
pub use material::{Channel, MaterialInput};
use std::collections::HashMap;
mod bone;
mod bounding_box;
mod combine_indices;
mod custom_property;
mod export;
mod face_tangents;
mod interleave;
mod material;
mod serde;
mod triangulate;
mod vertex_attributes;
mod y_up;
mod create_mesh;
#[cfg(test)]
mod test_utils;
#[derive(Debug, Fail)]
pub enum BlenderError {
#[fail(
display = "There was an issue while exporting meshes: Blender stderr output: {}",
_0
)]
Stderr(String),
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)]
#[serde(deny_unknown_fields)]
pub struct BlenderMesh {
name: String,
armature_name: Option<String>,
bounding_box: BoundingBox,
#[serde(alias = "attribs")]
multi_indexed_vertex_attributes: MultiIndexedVertexAttributes,
#[serde(default, serialize_with = "serialize_hashmap_deterministic")]
materials: HashMap<String, PrincipledBSDF>,
#[serde(default, serialize_with = "serialize_hashmap_deterministic")]
custom_properties: HashMap<String, CustomProperty>,
}
impl BlenderMesh {
pub fn armature_name(&self) -> Option<&String> {
self.armature_name.as_ref()
}
pub fn set_armature_name(&mut self, armature_name: Option<String>) {
self.armature_name = armature_name;
}
pub fn materials(&self) -> &HashMap<String, PrincipledBSDF> {
&self.materials
}
pub fn materials_mut(&mut self) -> &mut HashMap<String, PrincipledBSDF> {
&mut self.materials
}
pub fn custom_properties(&self) -> &HashMap<String, CustomProperty> {
&self.custom_properties
}
pub fn bounding_box(&self) -> BoundingBox {
self.bounding_box
}
pub fn set_bounding_box(&mut self, bounding_box: BoundingBox) {
self.bounding_box = bounding_box;
}
pub fn name(&self) -> &String {
&self.name
}
pub fn set_name(&mut self, name: String) {
self.name = name;
}
}
#[cfg(test)]
#[macro_export]
#[cfg(test)]
macro_rules! concat_vecs {
( $( $vec:expr),* ) => {
{
let mut concatenated_vec = Vec::new();
$(
concatenated_vec.append(&mut $vec.clone());
)*
concatenated_vec
}
}
}
#[cfg(test)]
fn indexed(
attribute: crate::vertex_attributes::VertexAttribute<f32>,
) -> crate::vertex_attributes::IndexedAttribute {
crate::vertex_attributes::IndexedAttribute {
indices: vec![],
attribute,
}
}