forked from KhronosGroup/glTF-Asset-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModelGroup.cs
285 lines (263 loc) · 9.79 KB
/
ModelGroup.cs
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
using AssetGenerator.Runtime;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
namespace AssetGenerator
{
/// <summary>
/// A model group is a collection of glTF models that share a property or series of properties in common.
/// This abstract class contains several helper functions for using images and creating base models.
/// Inherit from this class to create a new model group.
/// </summary>
internal abstract partial class ModelGroup
{
public abstract ModelGroupId Id { get; }
public List<Model> Models { get; protected set; }
public List<Property> CommonProperties { get; private set; }
public List<Property> Properties { get; private set; }
public List<Runtime.Image> UsedTextures { get; private set; }
public List<Runtime.Image> UsedFigures { get; private set; }
public bool NoSampleImages { get; protected set; }
protected ModelGroup()
{
CommonProperties = new List<Property>();
Properties = new List<Property>();
UsedTextures = new List<Image>();
UsedFigures = new List<Image>();
NoSampleImages = false;
}
protected Image UseTexture(List<string> imageList, string name)
{
Image image = GetImage(imageList, name);
UsedTextures.Add(image);
return image;
}
protected void UseFigure(List<string> imageList, string name)
{
UsedFigures.Add(GetImage(imageList, name));
}
private Image GetImage(List<string> imageList, string name)
{
var image = new Image
{
Uri = imageList.Find(e => e.Contains(name))
};
return image;
}
/// <summary>
/// Creates a glTF object.
/// </summary>
/// /// <returns>Runtime glTF object with Asset values set.</returns>
protected static GLTF CreateGLTF(Func<Scene> createScene, List<Animation> animations = null, List<string> extensionsUsed = null, List<string> extensionsRequired = null)
{
var scene = createScene();
return new GLTF
{
Animations = animations,
Asset = new Asset
{
Generator = "glTF Asset Generator",
Version = "2.0",
},
Scenes = new[] { scene },
Scene = scene,
ExtensionsUsed = extensionsUsed,
ExtensionsRequired = extensionsRequired,
};
}
protected static partial class MeshPrimitive
{
public static Runtime.MeshPrimitive CreateSinglePlane(bool includeTextureCoords = true, bool includeIndices = true, bool includeNormals = false, bool includeTangents = false)
{
return new Runtime.MeshPrimitive
{
Positions = Data.Create(GetSinglePlanePositions()),
TexCoords0 = includeTextureCoords ? Data.Create(GetSinglePlaneTexCoords()) : null,
Indices = includeIndices ? Data.Create(GetSinglePlaneIndices()) : null,
Normals = includeNormals ? Data.Create(GetSinglePlaneNormals()) : null,
Tangents = includeTangents ? Data.Create(GetSinglePlaneTangents()) : null
};
}
public static Vector3[] GetSinglePlanePositions()
{
return new[]
{
new Vector3( 0.5f, -0.5f, 0.0f),
new Vector3(-0.5f, -0.5f, 0.0f),
new Vector3(-0.5f, 0.5f, 0.0f),
new Vector3( 0.5f, 0.5f, 0.0f),
};
}
public static Vector2[] GetSinglePlaneTexCoords()
{
return new[]
{
new Vector2(1.0f, 1.0f),
new Vector2(0.0f, 1.0f),
new Vector2(0.0f, 0.0f),
new Vector2(1.0f, 0.0f),
};
}
public static int[] GetSinglePlaneIndices()
{
return new[]
{
1, 0, 3,
1, 3, 2,
};
}
public static Vector3[] GetSinglePlaneNormals()
{
return new[]
{
new Vector3(0.0f, 0.0f, 1.0f),
new Vector3(0.0f, 0.0f, 1.0f),
new Vector3(0.0f, 0.0f, 1.0f),
new Vector3(0.0f, 0.0f, 1.0f),
};
}
public static Vector4[] GetSinglePlaneTangents()
{
return new[]
{
new Vector4(1.0f, 0.0f, 0.0f, 1.0f),
new Vector4(1.0f, 0.0f, 0.0f, 1.0f),
new Vector4(1.0f, 0.0f, 0.0f, 1.0f),
new Vector4(1.0f, 0.0f, 0.0f, 1.0f),
};
}
public static List<Runtime.MeshPrimitive> CreateMultiPrimitivePlane(bool includeTextureCoords = true)
{
return new List<Runtime.MeshPrimitive>
{
new Runtime.MeshPrimitive
{
Positions = Data.Create
(
new[]
{
new Vector3(-0.5f, -0.5f, 0.0f),
new Vector3( 0.5f, 0.5f, 0.0f),
new Vector3(-0.5f, 0.5f, 0.0f),
}
),
TexCoords0 = includeTextureCoords ? Data.Create<Vector2>
(
new[]
{
new Vector2(0.0f, 1.0f),
new Vector2(1.0f, 0.0f),
new Vector2(0.0f, 0.0f),
}
) : null,
Indices = Data.Create
(
new[]
{
0, 1, 2,
}
),
},
new Runtime.MeshPrimitive
{
Positions = Data.Create
(
new[]
{
new Vector3(-0.5f, -0.5f, 0.0f),
new Vector3( 0.5f, -0.5f, 0.0f),
new Vector3( 0.5f, 0.5f, 0.0f),
}
),
TexCoords0 = includeTextureCoords ? Data.Create<Vector2>
(
new[]
{
new Vector2(0.0f, 1.0f),
new Vector2(1.0f, 1.0f),
new Vector2(1.0f, 0.0f),
}
) : null,
Indices = Data.Create
(
new[]
{
0, 1, 2,
}
),
}
};
}
}
/// <summary>
/// Creates a sorted list with each unique property used by the model group.
/// </summary>
protected void GenerateUsedPropertiesList()
{
foreach (var model in Models)
{
Properties = Properties.Union(model.Properties).ToList();
}
SortPropertiesList(CommonProperties);
SortPropertiesList(Properties);
}
/// <summary>
/// Sorts the list so every readme has the same column order, determined by enum value.
/// </summary>
protected void SortPropertiesList(List<Property> properties)
{
if (properties.Count > 0)
{
properties.Sort((x, y) => x.Name.CompareTo(y.Name));
}
}
}
/// <summary>
/// glTF model and related metadata.
/// </summary>
internal class Model
{
public List<Property> Properties;
public GLTF GLTF;
public Action<glTFLoader.Schema.Gltf> PostRuntimeChanges;
public Func<Type, object> CreateSchemaInstance = Activator.CreateInstance;
public Manifest.Camera Camera = null;
public bool Animated = false;
public bool? Loadable = true;
public bool SeparateBuffers = false;
}
/// <summary>
/// The model group enum value associated with a model group should never change after a release
/// to avoid changes to the asset urls in the README files
/// </summary>
internal enum ModelGroupId
{
Animation_Node = 0,
Animation_NodeMisc = 1,
Animation_Skin = 2,
Animation_SkinType = 3,
Buffer_Interleaved = 4,
Compatibility = 5,
Material = 6,
Material_AlphaBlend = 7,
Material_AlphaMask = 8,
Material_DoubleSided = 9,
Material_MetallicRoughness = 10,
Material_Mixed = 11,
Material_SpecularGlossiness = 12,
Mesh_PrimitiveAttribute = 13,
Mesh_PrimitiveMode = 14,
Mesh_PrimitiveRestart = 15,
Mesh_PrimitiveVertexColor = 16,
Mesh_Primitives = 17,
Mesh_PrimitivesUV = 18,
Node_Attribute = 19,
Node_NegativeScale = 20,
Texture_Sampler = 21,
Mesh_NoPosition = 22,
Animation_SamplerType = 23,
Instancing = 24,
Buffer_Misc = 25,
}
}