TDME2 1.9.121
PrototypeBoundingVolume.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
18#include <tdme/math/Matrix4x4.h>
25
26using std::string;
27using std::to_string;
28
49
50PrototypeBoundingVolume::PrototypeBoundingVolume(int id, Prototype* prototype)
51{
52 this->id = id;
53 this->prototype = prototype;
54 convexMeshFile.clear();
55 model = nullptr;
56 boundingVolume = nullptr;
57 generated = false;
58}
59
61 if (model != nullptr) delete model;
62 if (boundingVolume != nullptr) delete boundingVolume;
63}
64
66{
67 boundingVolume = nullptr;
68 model = nullptr;
69 convexMeshFile.clear();
70 convexMeshData.clear();
71 generated = false;
72}
73
74void PrototypeBoundingVolume::setupSphere(const Vector3& center, float radius)
75{
76 if (boundingVolume != nullptr) delete boundingVolume;
77 boundingVolume = new Sphere(center, radius);
78 if (model != nullptr) delete model;
79 model = Primitives::createModel(
81 string(prototype->getModel() != nullptr ? prototype->getModel()->getId() : "none") +
82 string(",") +
83 to_string(prototype->getId()) +
84 string("_model_bv.") +
85 to_string(id)
86 );
87 convexMeshFile.clear();
88 convexMeshData.clear();
89 generated = false;
90}
91
92void PrototypeBoundingVolume::setupCapsule(const Vector3& a, const Vector3& b, float radius)
93{
94 if (boundingVolume != nullptr) delete boundingVolume;
95 boundingVolume = new Capsule(a, b, radius);
96 if (model != nullptr) delete model;
97 model = Primitives::createModel(
99 string(prototype->getModel() != nullptr ? prototype->getModel()->getId() : "none") +
100 string(",") +
101 to_string(prototype->getId()) +
102 string("_model_bv.") +
103 to_string(id) +
104 string(".")
105 );
106 convexMeshFile.clear();
107 convexMeshData.clear();
108 generated = false;
109}
110
111void PrototypeBoundingVolume::setupObb(const Vector3& center, const Vector3& axis0, const Vector3& axis1, const Vector3& axis2, const Vector3& halfExtension)
112{
113 if (boundingVolume != nullptr) delete boundingVolume;
114 boundingVolume = new OrientedBoundingBox(center, axis0, axis1, axis2, halfExtension);
115 if (model != nullptr) delete model;
116 model = Primitives::createModel(
118 string(prototype->getModel() != nullptr ? prototype->getModel()->getId() : "none") +
119 string(",") +
120 to_string(prototype->getId()) +
121 string("_model_bv.") +
122 to_string(id)
123 );
124 convexMeshFile.clear();
125 convexMeshData.clear();
126 generated = false;
127}
128
130{
131 if (boundingVolume != nullptr) delete boundingVolume;
132 BoundingBox aabb(min, max);
134 if (model != nullptr) delete model;
135 model = Primitives::createModel(
137 string(prototype->getModel() != nullptr ? prototype->getModel()->getId() : "none") +
138 string(",") +
139 to_string(prototype->getId()) +
140 string("_model_bv.") +
141 to_string(id)
142 );
143 convexMeshFile.clear();
144 convexMeshData.clear();
145 generated = false;
146}
147
149{
150 if (boundingVolume != nullptr) delete boundingVolume;
151 if (model != nullptr) delete model;
152 boundingVolume = nullptr;
153 model = nullptr;
154 convexMeshFile.clear();
155 convexMeshData.clear();
156 generated = false;
157}
158
159void PrototypeBoundingVolume::setupConvexMesh(const string& pathName, const string& fileName)
160{
161 if (boundingVolume != nullptr) delete boundingVolume;
162 if (model != nullptr) delete model;
163 boundingVolume = nullptr;
164 model = nullptr;
165 convexMeshFile = pathName + "/" + fileName;
166 convexMeshData.clear();
167 generated = false;
168 try {
169 auto convexMeshModel = ModelReader::read(
170 pathName,
171 fileName
172 );
173 auto convexMeshObject3DModel = new Object3DModel(convexMeshModel);
174 boundingVolume = new ConvexMesh(convexMeshObject3DModel);
175 delete convexMeshObject3DModel;
176 Primitives::setupConvexMeshModel(convexMeshModel);
177 model = convexMeshModel;
178 } catch (Exception& exception) {
179 Console::print(string("PrototypeBoundingVolume::setupConvexMesh(): An error occurred: " + convexMeshFile + ": "));
180 Console::println(string(exception.what()));
181 setupNone();
182 }
183}
184
185void PrototypeBoundingVolume::setupConvexMesh(const vector<uint8_t>& data) {
186 convexMeshData = data;
187 if (boundingVolume != nullptr) delete boundingVolume;
188 if (model != nullptr) delete model;
189 boundingVolume = nullptr;
190 model = nullptr;
191 convexMeshFile = string();
192 generated = true;
193 try {
194 auto convexMeshModel = TMReader::read(
196 FileSystem::getInstance()->getPathName(prototype->getFileName()),
197 FileSystem::getInstance()->getFileName(prototype->getFileName()) + "." + to_string(id)
198 );
199 auto convexMeshObject3DModel = new Object3DModel(convexMeshModel);
200 boundingVolume = new ConvexMesh(convexMeshObject3DModel);
201 delete convexMeshObject3DModel;
202 Primitives::setupConvexMeshModel(convexMeshModel);
203 model = convexMeshModel;
204 } catch (Exception& exception) {
205 Console::print(string("PrototypeBoundingVolume::setupConvexMesh(): An error occurred: "));
206 Console::println(string(exception.what()));
207 setupNone();
208 }
209}
Representation of a 3d model.
Definition: Model.h:32
const string & getId()
Definition: Model.h:119
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Capsule physics primitive.
Definition: Capsule.h:18
Convex mesh physics primitive.
Definition: ConvexMesh.h:33
Oriented bounding box physics primitive.
Sphere physics primitive.
Definition: Sphere.h:18
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
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
File system singleton class.
Definition: FileSystem.h:14
Console class.
Definition: Console.h:26
Helper class to create models from physics primitive bounding volumes.
Definition: Primitives.h:34
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19