TDME2 1.9.121
CollisionResponse.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
9#include <tdme/math/Math.h>
10#include <tdme/math/Vector3.h>
13
14using std::vector;
15
21
22/**
23 * Collision response
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
30 friend class CollisionDetection;
31 friend class World;
32
33private:
34 static constexpr int32_t HITPOINT_COUNT { 30 };
35 vector<CollisionResponse_Entity> entities;
37 vector<Vector3> fallbackHitPointsVector;
38
39public:
40 /**
41 * Public constructor
42 */
44 }
45
46 /**
47 * Reset
48 */
49 inline void reset() {
50 entities.clear();
51 selectedEntity = nullptr;
52 }
53
54 /**
55 * Adds a collision response entity
56 * @param distance distance
57 * @return Entity or null
58 */
59 inline CollisionResponse_Entity* addResponse(float distance) {
61 auto& entity = entities[entities.size() - 1];
62 entity.distance = distance;
63 // select entity with smallest penetration by default
64 if (selectedEntity == nullptr || distance > selectedEntity->distance) {
65 selectedEntity = &entity;
66 }
67 return &entity;
68 }
69
70 /**
71 * @return entity count
72 */
73 inline int32_t getEntityCount() {
74 return entities.size();
75 }
76
77 /**
78 * @return selected entity
79 */
81 return selectedEntity;
82 }
83
84 /**
85 * Selects entity at given index
86 * @param idx idx
87 * @return
88 */
89 inline CollisionResponse_Entity* getEntity(int32_t idx) {
90 if (idx < 0 || idx >= entities.size()) return nullptr;
91 return &entities[idx];
92 }
93
94 /**
95 * Selects entity at given index
96 * @param idx idx
97 * @return
98 */
99 inline CollisionResponse* selectEntity(int32_t idx) {
100 if (idx < 0 || idx >= entities.size()) return this;
101 selectedEntity = &entities[idx];
102 return this;
103 }
104
105 /**
106 * @return if collision entity is selected
107 */
108 inline bool hasEntitySelected() {
109 return selectedEntity != nullptr;
110 }
111
112 /**
113 * @return collision distance or negative penetration
114 */
115 inline float getDistance() {
116 if (selectedEntity == nullptr) return 0.0f;
117 return selectedEntity->distance;
118 }
119
120 /**
121 * @return if we have a penetration
122 */
123 inline bool hasPenetration() {
124 if (selectedEntity == nullptr) return false;
125 return selectedEntity->distance < -Math::EPSILON;
126 }
127
128 /**
129 * @return penetration
130 */
131 inline float getPenetration() {
132 if (selectedEntity == nullptr) return 0.0f;
133 return -selectedEntity->distance;
134 }
135
136 /**
137 * @return normal
138 */
139 inline const Vector3* getNormal() {
140 if (selectedEntity == nullptr) return nullptr;
141 return &selectedEntity->normal;
142 }
143
144 /**
145 * @return get hit points
146 */
147 inline const vector<Vector3>& getHitPoints() {
148 if (selectedEntity == nullptr) return fallbackHitPointsVector;
150 }
151
152 /**
153 * @return hit point count
154 */
155 inline int32_t getHitPointCount() {
156 if (selectedEntity == nullptr) return 0;
157 return selectedEntity->hitPoints.size();
158 }
159
160 /**
161 * Get hit point of given index
162 * @param i i
163 * @return hit point for given hit points index
164 */
165 inline Vector3* getHitPoint(int32_t idx) {
166 if (selectedEntity == nullptr) return nullptr;
167 if (idx < 0 || idx >= selectedEntity->hitPoints.size()) return nullptr;
168 return &selectedEntity->hitPoints[idx];
169 }
170
171};
Vector3 * getHitPoint(int32_t idx)
Get hit point of given index.
CollisionResponse_Entity * selectedEntity
CollisionResponse_Entity * getSelectedEntity()
CollisionResponse_Entity * getEntity(int32_t idx)
Selects entity at given index.
vector< CollisionResponse_Entity > entities
const vector< Vector3 > & getHitPoints()
CollisionResponse_Entity * addResponse(float distance)
Adds a collision response entity.
CollisionResponse * selectEntity(int32_t idx)
Selects entity at given index.
Dynamic physics world class.
Definition: World.h:38
Standard math functions.
Definition: Math.h:21
3D vector 3 class
Definition: Vector3.h:22
Console class.
Definition: Console.h:26