TDME2 1.9.121
CollisionDetection.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
10#include <tdme/math/Vector3.h>
11
13
14/**
15 * Collision detection
16 * @author Andreas Drewke
17 * @version $Id$
18 */
20{
21public:
22
23 /**
24 * Returns if axis aligned bounding boxes do collide
25 * Will not provide hit points
26 * @param b1 axis aligned bounding box 1
27 * @param b2 axis aligned bounding box 2
28 * @return collision
29 */
30 inline static bool doCollideAABBvsAABBFast(BoundingBox* b1, BoundingBox* b2) {
31 // see
32 // http://www.gamedev.net/topic/567310-platform-game-collision-detection/
33 auto& b1Min = b1->getMin();
34 auto& b1Max = b1->getMax();
35 auto& b2Min = b2->getMin();
36 auto& b2Max = b2->getMax();
37
38 // face distances
39 if (b2Max[0] - b1Min[0] < 0.0f) return false; // b2 collides into b1 on x
40 if (b2Max[1] - b1Min[1] < 0.0f) return false; // b2 collides into b1 on y
41 if (b2Max[2] - b1Min[2] < 0.0f) return false; // b2 collides into b1 on z
42 if (b1Max[0] - b2Min[0] < 0.0f) return false; // b1 collides into b2 on x
43 if (b1Max[1] - b2Min[1] < 0.0f) return false; // b1 collides into b2 on y
44 if (b1Max[2] - b2Min[2] < 0.0f) return false; // b1 collides into b2 on z
45 return true;
46 }
47
48};
static bool doCollideAABBvsAABBFast(BoundingBox *b1, BoundingBox *b2)
Returns if axis aligned bounding boxes do collide Will not provide hit points.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25