-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGltfBase.h
94 lines (78 loc) · 1.36 KB
/
GltfBase.h
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
/*
* GltfBase.h
*
* Created on: 13 kwi 2020
* Author: andr
*/
#ifndef GLTFBASE_H_
#define GLTFBASE_H_
#include <iostream>
#include <string>
#include <fstream>
#include <sstream>
#include <vector>
#include <glm/gtc/matrix_transform.hpp>
#include "JsonCommons.h"
struct Accessor
{
int BufferView;
int ComponentType;
int Count;
std::string Type;
std::vector<char > Bytes;
std::vector<short int > ShortInts;
std::vector<int > Ints;
std::vector<float > Floats;
void Calculate(std::vector<char > bytes);
std::vector<glm::vec3> getVec3();
std::vector<glm::vec4> getVec4();
};
struct Material
{
float r,g,b, alpha;
};
struct Primitive
{
int Position;
int Normal;
int Indices;
int Material;
};
struct Mesh
{
std::string Name;
std::vector<Primitive > Primitives;
};
struct Node
{
std::string Name;
int MeshId;
glm::vec3 Position;
glm::vec3 Scale;
glm::vec3 Rotation;
Node()
{
Scale = glm::vec3(1.0f);
Position = glm::vec3(.0f);
Rotation = glm::vec3(.0f);
}
};
struct AnimationNode
{
std::string Name;
int NodeId;
std::string Path;
int Input;
int Output;
};
class GltfBase
{
public:
void init(std::string filename);
std::vector<Accessor > Accessors;
std::vector<Mesh > Meshes;
std::vector<Material > Materials;
std::vector<Node > Nodes;
std::vector<AnimationNode > Animations;
};
#endif /* GLTFBASE_H_ */