TDME2 1.9.121
Primitives.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5
6#include <ext/reactphysics3d/src/mathematics/Vector3.h>
7
8#include <tdme/tdme.h>
12#include <tdme/math/Vector3.h>
14
15using std::map;
16using std::string;
17
27
28/**
29 * Helper class to create models from physics primitive bounding volumes
30 * @author Andreas Drewke
31 * @version $Id$
32 */
34{
35private:
36 static constexpr int32_t SPHERE_SEGMENTS_X { 20 };
37 static constexpr int32_t SPHERE_SEGMENTS_Y { 20 };
38 static constexpr int32_t CAPSULE_SEGMENTS_X { 20 };
39 static constexpr int32_t CAPSULE_SEGMENTS_Y { 20 };
40
41 /**
42 * Converts a TDME2 vector to ReactPhysics3D vector
43 * @param vector tdme vector
44 * @returns reactphysics3d vector
45 */
46 inline static reactphysics3d::Vector3 toRP3DVector3(const Vector3& vector) {
47 return reactphysics3d::Vector3(vector.getX(), vector.getY(), vector.getZ());
48 }
49
50 /**
51 * Transforms a given ReactPhysics3D vector with bounding volume transform
52 * @param boundingVolume bounding volume
53 * @param vector vector
54 * @return transformed vector
55 */
56 inline static Vector3 transformVector3(BoundingVolume* boundingVolume, const reactphysics3d::Vector3& vector) {
57 // Note: there is no hurry as LE and ME do not use scale for prototype bounding volumes
58 auto vectorTransformed = boundingVolume->collisionShapeTransform * boundingVolume->collisionShapeLocalTransform * (vector * toRP3DVector3(boundingVolume->scale));
59 return Vector3(vectorTransformed.x, vectorTransformed.y, vectorTransformed.z);
60 }
61
62 /**
63 * Transforms a given ReactPhysics3D vector with bounding volume transform
64 * @param boundingVolume bounding volume
65 * @param normal vector
66 * @return transformed vector
67 */
68 inline static Vector3 transformVector3Normal(BoundingVolume* boundingVolume, const reactphysics3d::Vector3& normal) {
69 // Note: there is no hurry as LE and ME do not use scale for prototype bounding volumes
70 auto normalTransformed = boundingVolume->collisionShapeTransform.getOrientation() * boundingVolume->collisionShapeLocalTransform.getOrientation() * (normal * toRP3DVector3(boundingVolume->scale));
71 normalTransformed.normalize();
72 return Vector3(normalTransformed.x, normalTransformed.y, normalTransformed.z);
73 }
74
75 /**
76 * Set up convex mesh material
77 * @param nodes nodes
78 * @param material material
79 */
80 static void setupConvexMeshMaterial(const map<string, Node*>& nodes, Material* material);
81
82public:
83 /**
84 * Creates a model from bounding box
85 * @param boundingBox bounding box
86 * @param id id
87 * @return model
88 */
89 static Model* createBoundingBoxModel(BoundingBox* boundingBox, const string& id);
90
91 /**
92 * Creates a model from oriented bounding box
93 * @param orientedBoundingBox bounding box
94 * @param id id
95 * @return model
96 */
97 static Model* createOrientedBoundingBoxModel(OrientedBoundingBox* orientedBoundingBox, const string& id);
98
99 /**
100 * Creates a model from oriented bounding box
101 * @param sphere sphere
102 * @param id id
103 * @param segmentsX number of x segments
104 * @param segmentsY number of y segments
105 * @return model
106 */
107 static Model* createSphereModel(Sphere* sphere, const string& id, int32_t segmentsX, int32_t segmentsY);
108
109 /**
110 * Creates a model from capsule
111 * @param capsule sphere
112 * @param id id
113 * @param segmentsX number of x segments
114 * @param segmentsY number of y segments
115 * @return model
116 */
117 static Model* createCapsuleModel(Capsule* capsule, const string& id, int32_t segmentsX, int32_t segmentsY);
118
119 /**
120 * Creates a model from convex mesh
121 * @param mesh convex mesh
122 * @param id id
123 * @return model
124 */
125 static Model* createConvexMeshModel(ConvexMesh* mesh, const string& id);
126
127 /**
128 * Set up a convex mesh model
129 * @param model model
130 */
131 static void setupConvexMeshModel(Model* model);
132
133public:
134 /**
135 * Creates a model from bounding volume
136 * @param boundingVolume bounding volume
137 * @param id id
138 * @return model
139 */
140 static Model* createModel(BoundingBox* boundingVolume, const string& id);
141
142 /**
143 * Creates a model from bounding volume
144 * @param boundingVolume bounding box
145 * @param id id
146 * @return model
147 */
148 static Model* createModel(BoundingVolume* boundingVolume, const string& id);
149};
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
reactphysics3d::Transform collisionShapeLocalTransform
reactphysics3d::Transform collisionShapeTransform
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
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Helper class to create models from physics primitive bounding volumes.
Definition: Primitives.h:34
static constexpr int32_t SPHERE_SEGMENTS_X
Definition: Primitives.h:36
static Vector3 transformVector3(BoundingVolume *boundingVolume, const reactphysics3d::Vector3 &vector)
Transforms a given ReactPhysics3D vector with bounding volume transform.
Definition: Primitives.h:56
static void setupConvexMeshModel(Model *model)
Set up a convex mesh model.
Definition: Primitives.cpp:487
static Model * createBoundingBoxModel(BoundingBox *boundingBox, const string &id)
Creates a model from bounding box.
Definition: Primitives.cpp:64
static void setupConvexMeshMaterial(const map< string, Node * > &nodes, Material *material)
Set up convex mesh material.
Definition: Primitives.cpp:516
static Model * createSphereModel(Sphere *sphere, const string &id, int32_t segmentsX, int32_t segmentsY)
Creates a model from oriented bounding box.
Definition: Primitives.cpp:231
static Vector3 transformVector3Normal(BoundingVolume *boundingVolume, const reactphysics3d::Vector3 &normal)
Transforms a given ReactPhysics3D vector with bounding volume transform.
Definition: Primitives.h:68
static constexpr int32_t SPHERE_SEGMENTS_Y
Definition: Primitives.h:37
static Model * createModel(BoundingBox *boundingVolume, const string &id)
Creates a model from bounding volume.
Definition: Primitives.cpp:529
static Model * createConvexMeshModel(ConvexMesh *mesh, const string &id)
Creates a model from convex mesh.
Definition: Primitives.cpp:482
static Model * createOrientedBoundingBoxModel(OrientedBoundingBox *orientedBoundingBox, const string &id)
Creates a model from oriented bounding box.
Definition: Primitives.cpp:147
static constexpr int32_t CAPSULE_SEGMENTS_Y
Definition: Primitives.h:39
static constexpr int32_t CAPSULE_SEGMENTS_X
Definition: Primitives.h:38
static Model * createCapsuleModel(Capsule *capsule, const string &id, int32_t segmentsX, int32_t segmentsY)
Creates a model from capsule.
Definition: Primitives.cpp:334
static reactphysics3d::Vector3 toRP3DVector3(const Vector3 &vector)
Converts a TDME2 vector to ReactPhysics3D vector.
Definition: Primitives.h:46