244 lines
11 KiB
C++
244 lines
11 KiB
C++
/********************************************************************************
|
|
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
|
|
* Copyright (c) 2010-2018 Daniel Chappuis *
|
|
*********************************************************************************
|
|
* *
|
|
* This software is provided 'as-is', without any express or implied warranty. *
|
|
* In no event will the authors be held liable for any damages arising from the *
|
|
* use of this software. *
|
|
* *
|
|
* Permission is granted to anyone to use this software for any purpose, *
|
|
* including commercial applications, and to alter it and redistribute it *
|
|
* freely, subject to the following restrictions: *
|
|
* *
|
|
* 1. The origin of this software must not be misrepresented; you must not claim *
|
|
* that you wrote the original software. If you use this software in a *
|
|
* product, an acknowledgment in the product documentation would be *
|
|
* appreciated but is not required. *
|
|
* *
|
|
* 2. Altered source versions must be plainly marked as such, and must not be *
|
|
* misrepresented as being the original software. *
|
|
* *
|
|
* 3. This notice may not be removed or altered from any source distribution. *
|
|
* *
|
|
********************************************************************************/
|
|
|
|
// Libraries
|
|
#include "BroadPhaseSystem.h"
|
|
#include "collision/CollisionDetection.h"
|
|
#include "utils/Profiler.h"
|
|
#include "collision/RaycastInfo.h"
|
|
#include "memory/MemoryManager.h"
|
|
#include "engine/DynamicsWorld.h"
|
|
|
|
// We want to use the ReactPhysics3D namespace
|
|
using namespace reactphysics3d;
|
|
|
|
// Constructor
|
|
BroadPhaseSystem::BroadPhaseSystem(CollisionDetection& collisionDetection, ProxyShapeComponents& proxyShapesComponents,
|
|
TransformComponents& transformComponents, DynamicsComponents& dynamicsComponents)
|
|
:mDynamicAABBTree(collisionDetection.getMemoryManager().getPoolAllocator(), DYNAMIC_TREE_AABB_GAP),
|
|
mProxyShapesComponents(proxyShapesComponents), mTransformsComponents(transformComponents),
|
|
mDynamicsComponents(dynamicsComponents),
|
|
mMovedShapes(collisionDetection.getMemoryManager().getPoolAllocator()),
|
|
mCollisionDetection(collisionDetection) {
|
|
|
|
#ifdef IS_PROFILING_ACTIVE
|
|
|
|
mProfiler = nullptr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
// Return true if the two broad-phase collision shapes are overlapping
|
|
// TODO : Use proxy-shape entities in parameters
|
|
bool BroadPhaseSystem::testOverlappingShapes(const ProxyShape* shape1, const ProxyShape* shape2) const {
|
|
|
|
if (shape1->getBroadPhaseId() == -1 || shape2->getBroadPhaseId() == -1) return false;
|
|
|
|
// Get the two AABBs of the collision shapes
|
|
const AABB& aabb1 = mDynamicAABBTree.getFatAABB(shape1->getBroadPhaseId());
|
|
const AABB& aabb2 = mDynamicAABBTree.getFatAABB(shape2->getBroadPhaseId());
|
|
|
|
// Check if the two AABBs are overlapping
|
|
return aabb1.testCollision(aabb2);
|
|
}
|
|
|
|
// Ray casting method
|
|
void BroadPhaseSystem::raycast(const Ray& ray, RaycastTest& raycastTest,
|
|
unsigned short raycastWithCategoryMaskBits) const {
|
|
|
|
RP3D_PROFILE("BroadPhaseSystem::raycast()", mProfiler);
|
|
|
|
BroadPhaseRaycastCallback broadPhaseRaycastCallback(mDynamicAABBTree, raycastWithCategoryMaskBits, raycastTest);
|
|
|
|
mDynamicAABBTree.raycast(ray, broadPhaseRaycastCallback);
|
|
}
|
|
|
|
// Add a proxy collision shape into the broad-phase collision detection
|
|
void BroadPhaseSystem::addProxyCollisionShape(ProxyShape* proxyShape, const AABB& aabb) {
|
|
|
|
assert(proxyShape->getBroadPhaseId() == -1);
|
|
|
|
// Add the collision shape into the dynamic AABB tree and get its broad-phase ID
|
|
int nodeId = mDynamicAABBTree.addObject(aabb, proxyShape);
|
|
|
|
// Set the broad-phase ID of the proxy shape
|
|
mProxyShapesComponents.setBroadPhaseId(proxyShape->getEntity(), nodeId);
|
|
|
|
// Add the collision shape into the array of bodies that have moved (or have been created)
|
|
// during the last simulation step
|
|
addMovedCollisionShape(proxyShape->getBroadPhaseId());
|
|
}
|
|
|
|
// Remove a proxy collision shape from the broad-phase collision detection
|
|
void BroadPhaseSystem::removeProxyCollisionShape(ProxyShape* proxyShape) {
|
|
|
|
assert(proxyShape->getBroadPhaseId() != -1);
|
|
|
|
int broadPhaseID = proxyShape->getBroadPhaseId();
|
|
|
|
mProxyShapesComponents.setBroadPhaseId(proxyShape->getEntity(), -1);
|
|
|
|
// Remove the collision shape from the dynamic AABB tree
|
|
mDynamicAABBTree.removeObject(broadPhaseID);
|
|
|
|
// Remove the collision shape into the array of shapes that have moved (or have been created)
|
|
// during the last simulation step
|
|
removeMovedCollisionShape(broadPhaseID);
|
|
}
|
|
|
|
// Update the broad-phase state of a single proxy-shape
|
|
void BroadPhaseSystem::updateProxyShape(Entity proxyShapeEntity) {
|
|
|
|
assert(mProxyShapesComponents.mMapEntityToComponentIndex.containsKey(proxyShapeEntity));
|
|
|
|
// Get the index of the proxy-shape component in the array
|
|
uint32 index = mProxyShapesComponents.mMapEntityToComponentIndex[proxyShapeEntity];
|
|
|
|
// Update the proxy-shape component
|
|
updateProxyShapesComponents(index, index + 1);
|
|
}
|
|
|
|
// Update the broad-phase state of all the enabled proxy-shapes
|
|
void BroadPhaseSystem::updateProxyShapes() {
|
|
|
|
// Update all the enabled proxy-shape components
|
|
updateProxyShapesComponents(0, mProxyShapesComponents.getNbEnabledComponents());
|
|
}
|
|
|
|
// Notify the broad-phase that a collision shape has moved and need to be updated
|
|
void BroadPhaseSystem::updateProxyShapeInternal(int broadPhaseId, const AABB& aabb, const Vector3& displacement) {
|
|
|
|
assert(broadPhaseId >= 0);
|
|
|
|
// Update the dynamic AABB tree according to the movement of the collision shape
|
|
bool hasBeenReInserted = mDynamicAABBTree.updateObject(broadPhaseId, aabb, displacement);
|
|
|
|
// If the collision shape has moved out of its fat AABB (and therefore has been reinserted
|
|
// into the tree).
|
|
if (hasBeenReInserted) {
|
|
|
|
// Add the collision shape into the array of shapes that have moved (or have been created)
|
|
// during the last simulation step
|
|
addMovedCollisionShape(broadPhaseId);
|
|
}
|
|
}
|
|
|
|
// Update the broad-phase state of some proxy-shapes components
|
|
void BroadPhaseSystem::updateProxyShapesComponents(uint32 startIndex, uint32 endIndex) {
|
|
|
|
assert(startIndex <= endIndex);
|
|
assert(startIndex < mProxyShapesComponents.getNbComponents());
|
|
assert(endIndex <= mProxyShapesComponents.getNbComponents());
|
|
|
|
// Make sure we do not update disabled components
|
|
startIndex = std::min(startIndex, mProxyShapesComponents.getNbEnabledComponents());
|
|
endIndex = std::min(endIndex, mProxyShapesComponents.getNbEnabledComponents());
|
|
|
|
// Get the time step if we are in a dynamics world
|
|
DynamicsWorld* dynamicsWorld = dynamic_cast<DynamicsWorld*>(mCollisionDetection.getWorld());
|
|
decimal timeStep = decimal(0.0);
|
|
if (dynamicsWorld != nullptr) {
|
|
timeStep = dynamicsWorld->getTimeStep();
|
|
}
|
|
|
|
// For each proxy-shape component to update
|
|
for (uint32 i = startIndex; i < endIndex; i++) {
|
|
|
|
const int broadPhaseId = mProxyShapesComponents.mBroadPhaseIds[i];
|
|
if (broadPhaseId != -1) {
|
|
|
|
const Entity& bodyEntity = mProxyShapesComponents.mBodiesEntities[i];
|
|
const Transform& transform = mTransformsComponents.getTransform(bodyEntity);
|
|
|
|
// If there is a dynamics component for the current entity
|
|
Vector3 displacement(0, 0, 0);
|
|
if (mDynamicsComponents.hasComponent(bodyEntity)) {
|
|
|
|
// Get the linear velocity from the dynamics component
|
|
const Vector3& linearVelocity = mDynamicsComponents.getLinearVelocity(bodyEntity);
|
|
|
|
// TODO : Use body linear velocity and compute displacement
|
|
displacement = timeStep * linearVelocity;
|
|
}
|
|
|
|
// Recompute the world-space AABB of the collision shape
|
|
AABB aabb;
|
|
mProxyShapesComponents.mCollisionShapes[i]->computeAABB(aabb, transform * mProxyShapesComponents.mLocalToBodyTransforms[i]);
|
|
|
|
// Update the broad-phase state for the proxy collision shape
|
|
updateProxyShapeInternal(broadPhaseId, aabb, displacement);
|
|
}
|
|
}
|
|
}
|
|
|
|
void BroadPhaseSystem::reportAllShapesOverlappingWithAABB(const AABB& aabb, List<int>& overlappingNodes) const {
|
|
|
|
AABBOverlapCallback callback(overlappingNodes);
|
|
|
|
// Ask the dynamic AABB tree to report all collision shapes that overlap with this AABB
|
|
mDynamicAABBTree.reportAllShapesOverlappingWithAABB(aabb, callback);
|
|
}
|
|
|
|
// Compute all the overlapping pairs of collision shapes
|
|
void BroadPhaseSystem::computeOverlappingPairs(MemoryManager& memoryManager, List<Pair<int, int>>& overlappingNodes) {
|
|
|
|
// Get the list of the proxy-shapes that have moved or have been created in the last frame
|
|
List<int> shapesToTest = mMovedShapes.toList(memoryManager.getPoolAllocator());
|
|
|
|
// Ask the dynamic AABB tree to report all collision shapes that overlap with the shapes to test
|
|
mDynamicAABBTree.reportAllShapesOverlappingWithShapes(shapesToTest, 0, shapesToTest.size(), overlappingNodes);
|
|
|
|
// Reset the array of collision shapes that have move (or have been created) during the
|
|
// last simulation step
|
|
mMovedShapes.clear();
|
|
}
|
|
|
|
// Called when a overlapping node has been found during the call to
|
|
// DynamicAABBTree:reportAllShapesOverlappingWithAABB()
|
|
void AABBOverlapCallback::notifyOverlappingNode(int nodeId) {
|
|
mOverlappingNodes.add(nodeId);
|
|
}
|
|
|
|
// Called for a broad-phase shape that has to be tested for raycast
|
|
decimal BroadPhaseRaycastCallback::raycastBroadPhaseShape(int32 nodeId, const Ray& ray) {
|
|
|
|
decimal hitFraction = decimal(-1.0);
|
|
|
|
// Get the proxy shape from the node
|
|
ProxyShape* proxyShape = static_cast<ProxyShape*>(mDynamicAABBTree.getNodeDataPointer(nodeId));
|
|
|
|
// Check if the raycast filtering mask allows raycast against this shape
|
|
if ((mRaycastWithCategoryMaskBits & proxyShape->getCollisionCategoryBits()) != 0) {
|
|
|
|
// Ask the collision detection to perform a ray cast test against
|
|
// the proxy shape of this node because the ray is overlapping
|
|
// with the shape in the broad-phase
|
|
hitFraction = mRaycastTest.raycastAgainstShape(proxyShape, ray);
|
|
}
|
|
|
|
return hitFraction;
|
|
}
|