/******************************************************************************** * ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ * * Copyright (c) 2010-2013 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. * * * ********************************************************************************/ #ifndef REACTPHYSICS3D_COLLISION_WORLD_H #define REACTPHYSICS3D_COLLISION_WORLD_H // Libraries #include #include #include #include #include "mathematics/mathematics.h" #include "Profiler.h" #include "body/CollisionBody.h" #include "collision/RaycastInfo.h" #include "OverlappingPair.h" #include "collision/CollisionDetection.h" #include "constraint/Joint.h" #include "constraint/ContactPoint.h" #include "memory/MemoryAllocator.h" #include "EventListener.h" /// Namespace reactphysics3d namespace reactphysics3d { // Class CollisionWorld /** * This class represent a world where it is possible to move bodies * by hand and to test collision between each other. In this kind of * world, the bodies movement is not computed using the laws of physics. */ class CollisionWorld { protected : // -------------------- Attributes -------------------- // /// Reference to the collision detection CollisionDetection mCollisionDetection; /// All the bodies (rigid and soft) of the world std::set mBodies; /// All the collision shapes of the world std::list mCollisionShapes; /// Broad-phase overlapping pairs of bodies std::map mOverlappingPairs; /// Current body ID bodyindex mCurrentBodyID; /// List of free ID for rigid bodies std::vector mFreeBodiesIDs; /// Memory allocator MemoryAllocator mMemoryAllocator; /// Pointer to an event listener object EventListener* mEventListener; // -------------------- Methods -------------------- // /// Private copy-constructor CollisionWorld(const CollisionWorld& world); /// Private assignment operator CollisionWorld& operator=(const CollisionWorld& world); /// Return the next available body ID bodyindex computeNextAvailableBodyID(); /// Remove a collision shape. void removeCollisionShape(CollisionShape* collisionShape); /// Create a new collision shape in the world. CollisionShape* createCollisionShape(const CollisionShape& collisionShape); public : // -------------------- Methods -------------------- // /// Constructor CollisionWorld(); /// Destructor virtual ~CollisionWorld(); /// Return an iterator to the beginning of the bodies of the physics world std::set::iterator getBodiesBeginIterator(); /// Return an iterator to the end of the bodies of the physics world std::set::iterator getBodiesEndIterator(); /// Create a collision body CollisionBody* createCollisionBody(const Transform& transform); /// Destroy a collision body void destroyCollisionBody(CollisionBody* collisionBody); /// Raycast method bool raycast(const Ray& ray, decimal distance = RAYCAST_INFINITY_DISTANCE); /// Raycast method with feedback information bool raycast(const Ray& ray, RaycastInfo& raycastInfo, decimal distance = RAYCAST_INFINITY_DISTANCE); // -------------------- Friendship -------------------- // friend class CollisionDetection; friend class CollisionBody; friend class RigidBody; friend class ProxyConvexMeshShape; }; // Return an iterator to the beginning of the bodies of the physics world inline std::set::iterator CollisionWorld::getBodiesBeginIterator() { return mBodies.begin(); } // Return an iterator to the end of the bodies of the physics world inline std::set::iterator CollisionWorld::getBodiesEndIterator() { return mBodies.end(); } } #endif