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-07-09 22:23:34 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "physics3d/CCPhysics3D.h"
|
|
|
|
|
2022-07-15 19:17:01 +08:00
|
|
|
#if AX_USE_3D_PHYSICS
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-15 19:17:01 +08:00
|
|
|
# if (AX_ENABLE_BULLET_INTEGRATION)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-15 19:17:01 +08:00
|
|
|
AX_DLL const char* physics3dVersion()
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2022-07-15 19:17:01 +08:00
|
|
|
# if AX_ENABLE_BULLET_INTEGRATION
|
2019-11-23 20:27:39 +08:00
|
|
|
return "bullet2.82";
|
2021-12-25 10:04:45 +08:00
|
|
|
# endif
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
axis::Vec3 convertbtVector3ToVec3(const btVector3& btVec3)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2022-07-11 17:50:21 +08:00
|
|
|
return axis::Vec3(btVec3.x(), btVec3.y(), btVec3.z());
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
btVector3 convertVec3TobtVector3(const axis::Vec3& vec3)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
return btVector3(vec3.x, vec3.y, vec3.z);
|
|
|
|
}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
axis::Mat4 convertbtTransformToMat4(const btTransform& btTrans)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2022-07-11 17:50:21 +08:00
|
|
|
axis::Mat4 mat;
|
2021-12-25 10:04:45 +08:00
|
|
|
auto rot = btTrans.getBasis();
|
|
|
|
auto row = rot.getRow(0);
|
|
|
|
mat.m[0] = row.getX();
|
|
|
|
mat.m[4] = row.getY();
|
|
|
|
mat.m[8] = row.getZ();
|
|
|
|
row = rot.getRow(1);
|
|
|
|
mat.m[1] = row.getX();
|
|
|
|
mat.m[5] = row.getY();
|
|
|
|
mat.m[9] = row.getZ();
|
|
|
|
row = rot.getRow(2);
|
|
|
|
mat.m[2] = row.getX();
|
|
|
|
mat.m[6] = row.getY();
|
2019-11-23 20:27:39 +08:00
|
|
|
mat.m[10] = row.getZ();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
row = btTrans.getOrigin();
|
2019-11-23 20:27:39 +08:00
|
|
|
mat.m[12] = row.getX();
|
|
|
|
mat.m[13] = row.getY();
|
|
|
|
mat.m[14] = row.getZ();
|
|
|
|
return mat;
|
|
|
|
}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
btTransform convertMat4TobtTransform(const axis::Mat4& mat4)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
btTransform btTrans;
|
|
|
|
btTrans.setFromOpenGLMatrix(mat4.m);
|
|
|
|
return btTrans;
|
|
|
|
}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
axis::Quaternion convertbtQuatToQuat(const btQuaternion& btQuat)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2022-07-11 17:50:21 +08:00
|
|
|
return axis::Quaternion(btQuat.x(), btQuat.y(), btQuat.z(), btQuat.w());
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
btQuaternion convertQuatTobtQuat(const axis::Quaternion& quat)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
return btQuaternion(quat.x, quat.y, quat.z, quat.w);
|
|
|
|
}
|
|
|
|
|
2022-07-15 19:17:01 +08:00
|
|
|
# endif // AX_ENABLE_BULLET_INTEGRATION
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-15 19:17:01 +08:00
|
|
|
#endif // AX_USE_3D_PHYSICS
|