TDME2 1.9.121
PrototypeBoundingVolume.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
4
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
12#include <tdme/math/fwd-tdme.h>
13
14using std::string;
15using std::vector;
16
21
22/**
23 * Prototype bounding volume definition
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29private:
30 int id;
31 Prototype* prototype { nullptr };
33 Model* model { nullptr };
36 vector<uint8_t> convexMeshData;
37
38public:
39 /**
40 * Public constructor
41 * @param id id
42 * @param prototype prototype
43 */
45
46 /**
47 * Destructor
48 */
50
51 /**
52 * @return id
53 */
54 inline int getId() {
55 return id;
56 }
57
58 /**
59 * @return convex mesh file
60 */
61 inline const string& getConvexMeshFile() {
62 return convexMeshFile;
63 }
64
65 /**
66 * @return model
67 */
68 inline Model* getModel() {
69 return model;
70 }
71
72 /**
73 * @return bounding volume
74 */
76 return boundingVolume;
77 }
78
79 /**
80 * Setup bounding volume none
81 */
82 void setupNone();
83
84 /**
85 * Setup bounding volume sphere
86 * @param center center
87 * @param radius radius
88 */
89 void setupSphere(const Vector3& center, float radius);
90
91 /**
92 * Setup bounding volume capsule
93 * @param a a
94 * @param b b
95 * @param radius radius
96 */
97 void setupCapsule(const Vector3& a, const Vector3& b, float radius);
98
99 /**
100 * Setup bounding volume oriented bounding box
101 * @param center center
102 * @param axis0 axis 0
103 * @param axis1 axis 1
104 * @param axis2 axis 2
105 * @param halfExtension half extension
106 */
107 void setupObb(const Vector3& center, const Vector3& axis0, const Vector3& axis1, const Vector3& axis2, const Vector3& halfExtension);
108
109 /**
110 * Setup bounding volume bounding box
111 * @param min min
112 * @param max max
113 */
114 void setupAabb(const Vector3& min, const Vector3& max);
115
116 /**
117 * Clear convex mesh
118 */
119 void clearConvexMesh();
120
121 /**
122 * Setup convex mesh
123 * @param pathName path name
124 * @param fileName file name
125 */
126 void setupConvexMesh(const string& pathName, const string& fileName);
127
128 /**
129 * Setup convex mesh
130 * @param data TM data vector
131 */
132 void setupConvexMesh(const vector<uint8_t>& data);
133
134 /**
135 * @return if this convex mesh was generated by tdme2
136 */
137 inline bool isGenerated() {
138 return generated;
139 }
140
141 /**
142 * Set generated
143 * @param if this convex mesh was generated by tdme2
144 */
145 inline void setGenerated(bool generated) {
146 this->generated = generated;
147 }
148
149 /**
150 * @return has convex mesh data
151 */
152 inline bool hasConvexMeshData() {
153 return convexMeshData.empty() == false;
154 }
155
156 /**
157 * @return convex mesh data
158 */
159 inline const vector<uint8_t>& getConvexMeshData() {
160 return convexMeshData;
161 }
162
163private:
164
165 /**
166 * Update prototype
167 */
169
170};
Representation of a 3d model.
Definition: Model.h:32
PrototypeBoundingVolume(int id, Prototype *prototype)
Public constructor.
void setupObb(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Setup bounding volume oriented bounding box.
void setupSphere(const Vector3 &center, float radius)
Setup bounding volume sphere.
void setupAabb(const Vector3 &min, const Vector3 &max)
Setup bounding volume bounding box.
void setupCapsule(const Vector3 &a, const Vector3 &b, float radius)
Setup bounding volume capsule.
void setupConvexMesh(const string &pathName, const string &fileName)
Setup convex mesh.
Prototype definition.
Definition: Prototype.h:49
3D vector 3 class
Definition: Vector3.h:22