axmol/core/physics3d/CCPhysics3DWorld.h

190 lines
5.7 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2015-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-12-25 10:04:45 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __PHYSICS_3D_WORLD_H__
#define __PHYSICS_3D_WORLD_H__
#include "math/CCMath.h"
#include "base/CCRef.h"
#include "base/ccConfig.h"
2022-07-16 10:43:05 +08:00
#if AX_USE_3D_PHYSICS
2019-11-23 20:27:39 +08:00
2022-07-16 10:43:05 +08:00
# if (AX_ENABLE_BULLET_INTEGRATION)
2019-11-23 20:27:39 +08:00
class btDynamicsWorld;
class btDefaultCollisionConfiguration;
class btCollisionDispatcher;
struct btDbvtBroadphase;
class btSequentialImpulseConstraintSolver;
class btGhostPairCallback;
class btRigidBody;
class btCollisionObject;
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
/**
* @addtogroup _3d
* @{
*/
class Physics3DObject;
class Physics3DConstraint;
class Physics3DDebugDrawer;
class Physics3DComponent;
class Physics3DShape;
class Renderer;
/**
* @brief The description of Physics3DWorld.
*/
2022-07-16 10:43:05 +08:00
struct AX_DLL Physics3DWorldDes
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
bool isDebugDrawEnabled; // using physics debug draw?, false by default
2022-08-08 18:02:17 +08:00
ax::Vec3 gravity; // gravity, (0, -9.8, 0)
2019-11-23 20:27:39 +08:00
Physics3DWorldDes()
{
isDebugDrawEnabled = false;
2022-08-08 18:02:17 +08:00
gravity = ax::Vec3(0.f, -9.8f, 0.f);
2019-11-23 20:27:39 +08:00
}
};
/**
2021-12-25 10:04:45 +08:00
* @brief The physics information container, include Physics3DObjects, Physics3DConstraints, collision information and
* so on.
2019-11-23 20:27:39 +08:00
*/
2022-07-16 10:43:05 +08:00
class AX_DLL Physics3DWorld : public Ref
2019-11-23 20:27:39 +08:00
{
friend class Physics3DComponent;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
public:
struct HitResult
{
2022-08-08 18:02:17 +08:00
ax::Vec3 hitPosition;
ax::Vec3 hitNormal;
2019-11-23 20:27:39 +08:00
Physics3DObject* hitObj;
};
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* Creates a Physics3DWorld with Physics3DWorldDes.
2019-11-23 20:27:39 +08:00
*
* @return An autoreleased Physics3DWorld object.
*/
static Physics3DWorld* create(Physics3DWorldDes* info);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** set gravity for the physics world */
void setGravity(const Vec3& gravity);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** get current gravity */
Vec3 getGravity() const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Add a Physics3DObject. */
void addPhysics3DObject(Physics3DObject* physicsObj);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Remove a Physics3DObject. */
void removePhysics3DObject(Physics3DObject* physicsObj);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Remove all Physics3DObjects. */
void removeAllPhysics3DObjects();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Add a Physics3DConstraint. */
void addPhysics3DConstraint(Physics3DConstraint* constraint, bool disableCollisionsBetweenLinkedObjs = true);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Remove a Physics3DConstraint. */
void removePhysics3DConstraint(Physics3DConstraint* constraint);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Remove all Physics3DConstraint. */
void removeAllPhysics3DConstraints();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Simulate one frame. */
void stepSimulate(float dt);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Enable or disable debug drawing. */
void setDebugDrawEnable(bool enableDebugDraw);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Check debug drawing is enabled. */
bool isDebugDrawEnabled() const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Internal method, the updater of debug drawing, need called each frame. */
2022-08-08 18:02:17 +08:00
void debugDraw(ax::Renderer* renderer);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Get the list of Physics3DObjects. */
const std::vector<Physics3DObject*>& getPhysicsObjects() const { return _objects; }
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Ray cast method
* @param startPos The start position of ray.
* @param endPos The end position of ray.
* @param result the result of ray cast.
*/
2022-08-08 18:02:17 +08:00
bool rayCast(const ax::Vec3& startPos, const ax::Vec3& endPos, HitResult* result);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Performs a swept shape cast on all objects in the Physics3DWorld. */
2021-12-25 10:04:45 +08:00
bool sweepShape(Physics3DShape* shape,
2022-08-08 18:02:17 +08:00
const ax::Mat4& startTransform,
const ax::Mat4& endTransform,
2021-12-25 10:04:45 +08:00
HitResult* result);
Physics3DWorld();
2019-11-23 20:27:39 +08:00
virtual ~Physics3DWorld();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
bool init(Physics3DWorldDes* info);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
Physics3DObject* getPhysicsObject(const btCollisionObject* btObj);
void collisionChecking();
bool needCollisionChecking();
void setGhostPairCallback();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
protected:
void removePhysics3DConstraintFromBullet(Physics3DConstraint* constraint);
2021-12-25 10:04:45 +08:00
std::vector<Physics3DObject*> _objects;
std::vector<Physics3DConstraint*> _constraints;
std::vector<Physics3DComponent*> _physicsComponents; // physics3d components
2019-11-23 20:27:39 +08:00
bool _needCollisionChecking;
bool _collisionCheckingFlag;
bool _needGhostPairCallbackChecking;
2021-12-25 10:04:45 +08:00
2022-07-16 10:43:05 +08:00
# if (AX_ENABLE_BULLET_INTEGRATION)
2019-11-23 20:27:39 +08:00
btDynamicsWorld* _btPhyiscsWorld;
btDefaultCollisionConfiguration* _collisionConfiguration;
btCollisionDispatcher* _dispatcher;
btDbvtBroadphase* _broadphase;
btSequentialImpulseConstraintSolver* _solver;
2021-12-25 10:04:45 +08:00
btGhostPairCallback* _ghostCallback;
Physics3DDebugDrawer* _debugDrawer;
2022-07-16 10:43:05 +08:00
# endif // AX_ENABLE_BULLET_INTEGRATION
2019-11-23 20:27:39 +08:00
};
// end of 3d group
/// @}
NS_AX_END
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
2022-07-16 10:43:05 +08:00
#endif // AX_USE_3D_PHYSICS
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
#endif // __PHYSICS_3D_WORLD_H__