axmol/core/physics3d/CCPhysicsMeshRenderer.h

90 lines
3.2 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
https://axis-project.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_MESH_RENDERER_H__
#define __PHYSICS_MESH_RENDERER_H__
2019-11-23 20:27:39 +08:00
#include "base/ccConfig.h"
#include "3d/CCMeshRenderer.h"
2019-11-23 20:27:39 +08:00
#include "physics3d/CCPhysics3DObject.h"
#include "physics3d/CCPhysics3DComponent.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
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
/**
* @addtogroup _3d
* @{
*/
2021-12-25 10:04:45 +08:00
/**
* @brief Convenient class to create a rigid body with a MeshRenderer
2019-11-23 20:27:39 +08:00
*/
2022-07-16 10:43:05 +08:00
class AX_DLL PhysicsMeshRenderer : public axis::MeshRenderer
2019-11-23 20:27:39 +08:00
{
public:
/** creates a PhysicsMeshRenderer */
static PhysicsMeshRenderer* create(std::string_view modelPath,
2021-12-25 10:04:45 +08:00
Physics3DRigidBodyDes* rigidDes,
const axis::Vec3& translateInPhysics = axis::Vec3::ZERO,
const axis::Quaternion& rotInPhsyics = axis::Quaternion::ZERO);
2021-12-25 10:04:45 +08:00
/** creates a PhysicsMeshRenderer with a collider */
static PhysicsMeshRenderer* createWithCollider(std::string_view modelPath,
2021-12-25 10:04:45 +08:00
Physics3DColliderDes* colliderDes,
const axis::Vec3& translateInPhysics = axis::Vec3::ZERO,
const axis::Quaternion& rotInPhsyics = axis::Quaternion::ZERO);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Get the Physics3DObject. */
Physics3DObject* getPhysicsObj() const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Set synchronization flag, see Physics3DComponent. */
void setSyncFlag(Physics3DComponent::PhysicsSyncFlag syncFlag);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** synchronize node transformation to physics. */
void syncNodeToPhysics();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** synchronize physics transformation to node. */
void syncPhysicsToNode();
2021-12-25 10:04:45 +08:00
PhysicsMeshRenderer();
virtual ~PhysicsMeshRenderer();
2019-11-23 20:27:39 +08:00
protected:
Physics3DComponent* _physicsComponent;
};
// end of 3d group
/// @}
NS_AX_END
2019-11-23 20:27:39 +08:00
2022-07-16 10:43:05 +08:00
# endif // AX_ENABLE_BULLET_INTEGRATION
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
#endif // __PHYSICS_MESH_RENDERER_H__