2015-04-08 18:47:55 +00:00
|
|
|
/********************************************************************************
|
|
|
|
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
|
2016-04-11 18:15:20 +00:00
|
|
|
* Copyright (c) 2010-2016 Daniel Chappuis *
|
2015-04-08 18:47:55 +00:00
|
|
|
*********************************************************************************
|
|
|
|
* *
|
|
|
|
* 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 CONVEX_MESH_H
|
|
|
|
#define CONVEX_MESH_H
|
|
|
|
|
|
|
|
// Libraries
|
|
|
|
#include "openglframework.h"
|
2020-03-18 06:28:34 +00:00
|
|
|
#include <reactphysics3d/reactphysics3d.h>
|
2015-08-08 09:40:37 +00:00
|
|
|
#include "PhysicsObject.h"
|
2015-04-08 18:47:55 +00:00
|
|
|
|
|
|
|
// Class ConvexMesh
|
2017-01-27 23:59:04 +00:00
|
|
|
class ConvexMesh : public PhysicsObject {
|
2015-04-08 18:47:55 +00:00
|
|
|
|
|
|
|
private :
|
|
|
|
|
|
|
|
// -------------------- Attributes -------------------- //
|
|
|
|
|
2017-03-22 18:07:31 +00:00
|
|
|
rp3d::PolygonVertexArray::PolygonFace* mPolygonFaces;
|
|
|
|
|
|
|
|
rp3d::PolygonVertexArray* mPolygonVertexArray;
|
|
|
|
|
|
|
|
rp3d::PolyhedronMesh* mPolyhedronMesh;
|
2016-01-07 22:04:39 +00:00
|
|
|
|
2015-09-04 17:56:27 +00:00
|
|
|
/// Collision shape
|
2015-11-20 06:20:56 +00:00
|
|
|
rp3d::ConvexMeshShape* mConvexShape;
|
2020-01-20 20:22:46 +00:00
|
|
|
rp3d::Collider* mCollider;
|
2015-11-20 06:20:56 +00:00
|
|
|
|
|
|
|
/// Scaling matrix
|
|
|
|
openglframework::Matrix4 mScalingMatrix;
|
2015-09-04 17:56:27 +00:00
|
|
|
|
2015-05-24 15:23:55 +00:00
|
|
|
/// Vertex Buffer Object for the vertices data
|
|
|
|
openglframework::VertexBufferObject mVBOVertices;
|
|
|
|
|
|
|
|
/// Vertex Buffer Object for the normals data
|
|
|
|
openglframework::VertexBufferObject mVBONormals;
|
|
|
|
|
|
|
|
/// Vertex Buffer Object for the texture coords
|
|
|
|
openglframework::VertexBufferObject mVBOTextureCoords;
|
|
|
|
|
|
|
|
/// Vertex Buffer Object for the indices
|
|
|
|
openglframework::VertexBufferObject mVBOIndices;
|
|
|
|
|
|
|
|
/// Vertex Array Object for the vertex data
|
|
|
|
openglframework::VertexArrayObject mVAO;
|
|
|
|
|
2019-10-21 05:22:18 +00:00
|
|
|
/// Array with the vertices of the convex mesh
|
|
|
|
/// (only the vertices used for the physics shape, not duplicate vertices used for rendering)
|
|
|
|
std::vector<openglframework::Vector3> mConvexMeshVertices;
|
|
|
|
|
|
|
|
/// Array with the vertex indices of the convex mesh (used for the physics shape)
|
|
|
|
std::vector<int> mConvexMeshIndices;
|
|
|
|
|
2015-04-08 18:47:55 +00:00
|
|
|
// -------------------- Methods -------------------- //
|
|
|
|
|
2019-10-21 05:22:18 +00:00
|
|
|
/// Create the Vertex Buffer Objects used to render with OpenGL.
|
2015-07-29 16:15:20 +00:00
|
|
|
void createVBOAndVAO();
|
2015-05-24 15:23:55 +00:00
|
|
|
|
2019-10-21 05:22:18 +00:00
|
|
|
/// Return the index of a given vertex in the mesh
|
|
|
|
int findVertexIndex(const std::vector<openglframework::Vector3>& vertices, const openglframework::Vector3& vertex);
|
|
|
|
|
2015-04-08 18:47:55 +00:00
|
|
|
public :
|
|
|
|
|
|
|
|
// -------------------- Methods -------------------- //
|
|
|
|
|
|
|
|
/// Constructor
|
2020-03-01 15:39:16 +00:00
|
|
|
ConvexMesh(bool createRigidBody, rp3d::PhysicsCommon& physicsCommon, rp3d::PhysicsWorld* physicsWorld, const std::string& meshPath);
|
2015-04-08 18:47:55 +00:00
|
|
|
|
|
|
|
/// Destructor
|
2020-02-01 12:41:30 +00:00
|
|
|
virtual ~ConvexMesh() override;
|
2015-04-08 18:47:55 +00:00
|
|
|
|
|
|
|
/// Render the mesh at the correct position and with the correct orientation
|
2017-11-02 21:58:41 +00:00
|
|
|
virtual void render(openglframework::Shader& shader, const openglframework::Matrix4& worldToCameraMatrix) override;
|
2015-06-25 20:28:11 +00:00
|
|
|
|
2015-08-08 09:40:37 +00:00
|
|
|
/// Update the transform matrix of the object
|
2016-07-11 06:33:24 +00:00
|
|
|
virtual void updateTransform(float interpolationFactor) override;
|
2020-02-01 12:41:30 +00:00
|
|
|
|
|
|
|
/// Return the collider
|
|
|
|
rp3d::Collider* getCollider();
|
2015-08-08 09:40:37 +00:00
|
|
|
};
|
2015-04-08 18:47:55 +00:00
|
|
|
|
2015-08-08 09:40:37 +00:00
|
|
|
// Update the transform matrix of the object
|
|
|
|
inline void ConvexMesh::updateTransform(float interpolationFactor) {
|
2015-11-20 06:20:56 +00:00
|
|
|
mTransformMatrix = computeTransform(interpolationFactor, mScalingMatrix);
|
2015-04-08 18:47:55 +00:00
|
|
|
}
|
|
|
|
|
2020-02-01 12:41:30 +00:00
|
|
|
// Return the collider
|
|
|
|
inline rp3d::Collider* ConvexMesh::getCollider() {
|
|
|
|
return mCollider;
|
|
|
|
}
|
|
|
|
|
2015-04-08 18:47:55 +00:00
|
|
|
#endif
|