reactphysics3d/testbed/src/SceneDemo.cpp

703 lines
26 KiB
C++
Raw Normal View History

2015-07-21 23:18:32 +00:00
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
2016-04-11 18:15:20 +00:00
* Copyright (c) 2010-2016 Daniel Chappuis *
2015-07-21 23:18:32 +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. *
* *
********************************************************************************/
// Libraries
#include "SceneDemo.h"
#include <GLFW/glfw3.h>
#include "AABB.h"
#include <reactphysics3d/constraint/ContactPoint.h>
#include <reactphysics3d/collision/ContactManifold.h>
2015-07-21 23:18:32 +00:00
using namespace openglframework;
2015-08-03 21:05:55 +00:00
int SceneDemo::shadowMapTextureLevel = 0;
2020-05-24 14:13:44 +00:00
//openglframework::Color SceneDemo::mObjectColorDemo = Color(0.76f, 0.67f, 0.47f, 1.0f);
openglframework::Color SceneDemo::mObjectColorDemo = Color(0.35f, 0.65f, 0.78f, 1.0f);
openglframework::Color SceneDemo::mFloorColorDemo = Color(0.47f, 0.48f, 0.49f, 1.0f);
openglframework::Color SceneDemo::mSleepingColorDemo = Color(1.0f, 0.25f, 0.25f, 1.0f);
openglframework::Color SceneDemo::mSelectedObjectColorDemo = Color(0.09f, 0.59f, 0.88f, 1.0f);
2015-08-03 21:05:55 +00:00
2015-07-21 23:18:32 +00:00
// Constructor
SceneDemo::SceneDemo(const std::string& name, EngineSettings& settings, bool isPhysicsWorldSimulated, float sceneRadius, bool isShadowMappingEnabled)
: Scene(name, settings, isShadowMappingEnabled), mIsShadowMappingInitialized(false),
2015-07-21 23:18:32 +00:00
mDepthShader("shaders/depth.vert", "shaders/depth.frag"),
mPhongShader("shaders/phong.vert", "shaders/phong.frag"),
mColorShader("shaders/color.vert", "shaders/color.frag"),
mQuadShader("shaders/quad.vert", "shaders/quad.frag"),
2020-05-05 22:34:56 +00:00
mVBOQuad(GL_ARRAY_BUFFER), mDebugVBOLinesVertices(GL_ARRAY_BUFFER), mDebugVBOTrianglesVertices(GL_ARRAY_BUFFER),
mMeshFolderPath("meshes/"), mPhysicsWorld(nullptr), mIsPhysicsWorldSimulated(isPhysicsWorldSimulated),
mIsMovingBody(false), mMovingBody(nullptr) {
2015-07-21 23:18:32 +00:00
2015-08-03 21:05:55 +00:00
shadowMapTextureLevel++;
// Move the lights
float lightsRadius = 30.0f;
float lightsHeight = 20.0f;
mLight0.translateWorld(Vector3(0 * lightsRadius, lightsHeight, 1 * lightsRadius));
mLight1.translateWorld(Vector3(0.95f * lightsRadius, lightsHeight, -0.3f * lightsRadius));
mLight2.translateWorld(Vector3(-0.58f * lightsRadius, lightsHeight, -0.81f * lightsRadius));
// Set the lights colors
mLight0.setDiffuseColor(Color(0.6f, 0.6f, 0.6f, 1.0f));
mLight1.setDiffuseColor(Color(0.6f, 0.6f, 0.6f, 1.0f));
mLight2.setDiffuseColor(Color(0.6f, 0.6f, 0.6f, 1.0f));
mShadowMapLightCameras[0].translateWorld(mLight0.getOrigin());
mShadowMapLightCameras[0].rotateLocal(Vector3(1, 0, 0), -PI / 4.0f);
mShadowMapLightCameras[1].translateWorld(mLight1.getOrigin());
mShadowMapLightCameras[1].rotateLocal(Vector3(0, 1, 0), -5.0f * PI/3.7f);
mShadowMapLightCameras[1].rotateLocal(Vector3(1, 0, 0), -PI/4.0f);
mShadowMapLightCameras[2].translateWorld(mLight2.getOrigin());
mShadowMapLightCameras[2].rotateLocal(Vector3(0, 1, 0), 5 * PI/4.0f);
mShadowMapLightCameras[2].rotateLocal(Vector3(1, 0 , 0), -PI/4.0f);
for (int i = 0; i < NB_SHADOW_MAPS; i++) {
mShadowMapLightCameras[i].setDimensions(SHADOWMAP_WIDTH, SHADOWMAP_HEIGHT);
mShadowMapLightCameras[i].setFieldOfView(100.0f);
mShadowMapLightCameras[i].setSceneRadius(100);
}
2015-07-21 23:18:32 +00:00
2015-07-26 22:30:45 +00:00
mShadowMapBiasMatrix.setAllValues(0.5, 0.0, 0.0, 0.5,
0.0, 0.5, 0.0, 0.5,
0.0, 0.0, 0.5, 0.5,
0.0, 0.0, 0.0, 1.0);
2015-07-21 23:18:32 +00:00
// Create the Shadow map FBO and texture
2015-08-03 21:05:55 +00:00
if (mIsShadowMappingEnabled) {
createShadowMapFBOAndTexture();
}
createQuadVBO();
2015-08-11 16:32:45 +00:00
2020-05-05 22:34:56 +00:00
createDebugVBO();
// Init rendering for the AABBs
AABB::init();
2015-08-11 16:32:45 +00:00
VisualContactPoint::createStaticData(mMeshFolderPath);
2015-07-21 23:18:32 +00:00
}
// Destructor
SceneDemo::~SceneDemo() {
for (int i = 0; i < NB_SHADOW_MAPS; i++) {
mShadowMapTexture[i].destroy();
mFBOShadowMap[i].destroy();
}
mVBOQuad.destroy();
mDepthShader.destroy();
mPhongShader.destroy();
mQuadShader.destroy();
mColorShader.destroy();
2015-08-11 16:32:45 +00:00
// Destroy the contact points
removeAllVisualContactPoints();
2015-08-11 16:32:45 +00:00
// Destroy rendering data for the AABB
AABB::destroy();
2015-08-11 16:32:45 +00:00
VisualContactPoint::destroyStaticData();
}
// Update the scene
void SceneDemo::update() {
2020-05-07 13:12:59 +00:00
mPhysicsWorld->getDebugRenderer().setIsDebugItemDisplayed(rp3d::DebugRenderer::DebugItem::CONTACT_POINT, mAreContactPointsDisplayed);
mPhysicsWorld->getDebugRenderer().setIsDebugItemDisplayed(rp3d::DebugRenderer::DebugItem::CONTACT_NORMAL, mAreContactNormalsDisplayed);
mPhysicsWorld->getDebugRenderer().setIsDebugItemDisplayed(rp3d::DebugRenderer::DebugItem::COLLIDER_BROADPHASE_AABB, mAreBroadPhaseAABBsDisplayed);
mPhysicsWorld->getDebugRenderer().setIsDebugItemDisplayed(rp3d::DebugRenderer::DebugItem::COLLIDER_AABB, mAreCollidersAABBsDisplayed);
mPhysicsWorld->getDebugRenderer().setIsDebugItemDisplayed(rp3d::DebugRenderer::DebugItem::COLLISION_SHAPE, mAreCollisionShapesDisplayed);
2015-08-11 16:32:45 +00:00
// Update the contact points
2020-05-07 13:12:59 +00:00
updateSnapshotContactPoints();
2017-10-19 15:42:21 +00:00
// Update the position and orientation of the physics objects
for (std::vector<PhysicsObject*>::iterator it = mPhysicsObjects.begin(); it != mPhysicsObjects.end(); ++it) {
// Update the transform used for the rendering
(*it)->updateTransform(mInterpolationFactor);
}
}
// Update the physics world (take a simulation step)
// Can be called several times per frame
void SceneDemo::updatePhysics() {
// Clear contacts points
2020-05-07 13:12:59 +00:00
mSnapshotsContactPoints.clear();
if (mIsPhysicsWorldSimulated) {
// Take a simulation step
mPhysicsWorld->update(mEngineSettings.timeStep);
}
2015-07-21 23:18:32 +00:00
}
// Render the scene (in multiple passes for shadow mapping)
void SceneDemo::render() {
2020-05-05 22:34:56 +00:00
// Update the VBO for the debug infos
updateDebugVBO();
2015-07-21 23:18:32 +00:00
glEnable(GL_DEPTH_TEST);
glEnable(GL_CULL_FACE);
Matrix4 shadowMapProjMatrix[NB_SHADOW_MAPS];
openglframework::Matrix4 worldToLightCameraMatrix[NB_SHADOW_MAPS];
for (int i = 0; i < NB_SHADOW_MAPS; i++) {
shadowMapProjMatrix[i] = mShadowMapLightCameras[i].getProjectionMatrix();
worldToLightCameraMatrix[i] = mShadowMapLightCameras[i].getTransformMatrix().getInverse();
}
// ---------- Render the scene to generate the shadow map (first pass) ----------- //
2015-07-21 23:18:32 +00:00
2015-08-03 21:05:55 +00:00
// If Shadow Mapping is enabled
if (mIsShadowMappingEnabled) {
2015-07-21 23:18:32 +00:00
2015-08-03 21:05:55 +00:00
// Culling switching, rendering only backface, this is done to avoid self-shadowing
glCullFace(GL_BACK);
2015-07-21 23:18:32 +00:00
// For each shadow map
for (int i = 0; i < NB_SHADOW_MAPS; i++) {
mFBOShadowMap[i].bind();
// Bind the shader
mDepthShader.bind();
// Set the variables of the shader
mDepthShader.setMatrix4x4Uniform("projectionMatrix", shadowMapProjMatrix[i]);
// Set the viewport to render into the shadow map texture
glViewport(0, 0, SHADOWMAP_WIDTH, SHADOWMAP_HEIGHT);
2015-07-21 23:18:32 +00:00
// Clear previous frame values
glClear(GL_DEPTH_BUFFER_BIT);
2015-07-21 23:18:32 +00:00
// Disable color rendering, we only want to write to the Z-Buffer
glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
2015-07-21 23:18:32 +00:00
// Render the objects of the scene
renderSinglePass(mDepthShader, worldToLightCameraMatrix[i]);
// Unbind the shader
mDepthShader.unbind();
2015-07-31 19:54:02 +00:00
mFBOShadowMap[i].unbind();
}
2015-08-03 21:05:55 +00:00
glDisable(GL_POLYGON_OFFSET_FILL);
}
2015-07-21 23:18:32 +00:00
// ---------- Render the scene for final rendering (second pass) ----------- //
glCullFace(GL_BACK);
// Get the world-space to camera-space matrix
const openglframework::Matrix4 worldToCameraMatrix = mCamera.getTransformMatrix().getInverse();
2015-07-21 23:18:32 +00:00
mPhongShader.bind();
// Is shadow mapping is enabled
GLint textureUnits[NB_SHADOW_MAPS];
if (mIsShadowMappingEnabled) {
for (int i = 0; i < NB_SHADOW_MAPS; i++) {
mShadowMapTexture[i].bind();
}
for (int i = 0; i < NB_SHADOW_MAPS; i++) {
textureUnits[i] = mShadowMapTexture[i].getUnit();
}
}
// Set the variables of the phong shader
2015-07-21 23:18:32 +00:00
mPhongShader.setMatrix4x4Uniform("projectionMatrix", mCamera.getProjectionMatrix());
mPhongShader.setMatrix4x4Uniform("shadowMapLight0ProjectionMatrix", mShadowMapBiasMatrix * shadowMapProjMatrix[0]);
mPhongShader.setMatrix4x4Uniform("shadowMapLight1ProjectionMatrix", mShadowMapBiasMatrix * shadowMapProjMatrix[1]);
mPhongShader.setMatrix4x4Uniform("shadowMapLight2ProjectionMatrix", mShadowMapBiasMatrix * shadowMapProjMatrix[2]);
mPhongShader.setMatrix4x4Uniform("worldToLight0CameraMatrix", worldToLightCameraMatrix[0]);
mPhongShader.setMatrix4x4Uniform("worldToLight1CameraMatrix", worldToLightCameraMatrix[1]);
mPhongShader.setMatrix4x4Uniform("worldToLight2CameraMatrix", worldToLightCameraMatrix[2]);
mPhongShader.setVector3Uniform("light0PosCameraSpace", worldToCameraMatrix * mLight0.getOrigin());
mPhongShader.setVector3Uniform("light1PosCameraSpace", worldToCameraMatrix * mLight1.getOrigin());
mPhongShader.setVector3Uniform("light2PosCameraSpace", worldToCameraMatrix * mLight2.getOrigin());
mPhongShader.setVector3Uniform("lightAmbientColor", Vector3(0.3f, 0.3f, 0.3f));
mPhongShader.setVector3Uniform("light0DiffuseColor", Vector3(mLight0.getDiffuseColor().r, mLight0.getDiffuseColor().g, mLight0.getDiffuseColor().b));
mPhongShader.setVector3Uniform("light1DiffuseColor", Vector3(mLight1.getDiffuseColor().r, mLight1.getDiffuseColor().g, mLight1.getDiffuseColor().b));
mPhongShader.setVector3Uniform("light2DiffuseColor", Vector3(mLight2.getDiffuseColor().r, mLight2.getDiffuseColor().g, mLight2.getDiffuseColor().b));
mPhongShader.setIntUniform("shadowMapSampler0", textureUnits[0]);
mPhongShader.setIntUniform("shadowMapSampler1", textureUnits[1]);
mPhongShader.setIntUniform("shadowMapSampler2", textureUnits[2]);
2015-08-03 21:05:55 +00:00
mPhongShader.setIntUniform("isShadowEnabled", mIsShadowMappingEnabled);
2015-08-11 20:28:16 +00:00
mPhongShader.setVector2Uniform("shadowMapDimension", Vector2(SHADOWMAP_WIDTH, SHADOWMAP_HEIGHT));
mPhongShader.unbind();
// Set the variables of the color shader
mColorShader.bind();
mColorShader.setMatrix4x4Uniform("projectionMatrix", mCamera.getProjectionMatrix());
mColorShader.unbind();
2015-07-21 23:18:32 +00:00
// Set the viewport to render the scene
glViewport(mViewportX, mViewportY, mViewportWidth, mViewportHeight);
//Enabling color write (previously disabled for light POV z-buffer rendering)
glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
// Clear previous frame values
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
2015-07-21 23:18:32 +00:00
// Render the objects of the scene
renderSinglePass(mPhongShader, worldToCameraMatrix);
2015-07-21 23:18:32 +00:00
2020-05-07 13:12:59 +00:00
// Render the snapshots contact points
renderSnapshotsContactPoints(mPhongShader, worldToCameraMatrix);
2020-05-05 22:34:56 +00:00
// Render the debug infos
if (mPhysicsWorld->getIsDebugRenderingEnabled()) {
renderDebugInfos(mColorShader, worldToCameraMatrix);
}
// Is shadow mapping is enabled
if (mIsShadowMappingEnabled) {
for (int i = 0; i < NB_SHADOW_MAPS; i++) {
mShadowMapTexture[i].unbind();
}
}
2015-07-21 23:18:32 +00:00
mPhongShader.unbind();
2015-08-11 19:40:07 +00:00
//drawTextureQuad();
2015-07-21 23:18:32 +00:00
}
2017-10-19 15:42:21 +00:00
// Render the scene in a single pass
void SceneDemo::renderSinglePass(openglframework::Shader& shader, const openglframework::Matrix4& worldToCameraMatrix) {
if (mIsWireframeEnabled) {
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
}
// Bind the shader
2017-10-19 15:42:21 +00:00
shader.bind();
// Render all the physics objects of the scene
for (std::vector<PhysicsObject*>::iterator it = mPhysicsObjects.begin(); it != mPhysicsObjects.end(); ++it) {
(*it)->render(mIsWireframeEnabled ? mColorShader : shader, worldToCameraMatrix);
2017-10-19 15:42:21 +00:00
}
// Unbind the shader
shader.unbind();
if (mIsWireframeEnabled) {
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
}
2017-10-19 15:42:21 +00:00
}
2015-07-21 23:18:32 +00:00
// Create the Shadow map FBO and texture
void SceneDemo::createShadowMapFBOAndTexture() {
// For each shadow map
for (int i = 0; i < NB_SHADOW_MAPS; i++) {
// Create the texture for the depth values
mShadowMapTexture[i].create(SHADOWMAP_WIDTH, SHADOWMAP_HEIGHT, GL_DEPTH_COMPONENT24, GL_DEPTH_COMPONENT,
GL_UNSIGNED_BYTE, GL_LINEAR, GL_LINEAR, GL_CLAMP_TO_BORDER, GL_CLAMP_TO_BORDER, NULL);
mShadowMapTexture[i].setUnit(i);
2015-07-21 23:18:32 +00:00
// Make sure that texture lookups outside the texture coords range will not
// treated as beeing in shadow
glBindTexture(GL_TEXTURE_2D, mShadowMapTexture[i].getID());
GLfloat border[] = { 1.0f, 0.0f, 0.0f, 0.0f };
glTexParameterfv(GL_TEXTURE_2D, GL_TEXTURE_BORDER_COLOR, border);
glBindTexture(GL_TEXTURE_2D, 0);
// Create the FBO for the shadow map
mFBOShadowMap[i].create(0, 0, false);
mFBOShadowMap[i].bind();
// Tell OpenGL that we won't bind a color texture with the currently binded FBO
glDrawBuffer(GL_NONE);
glReadBuffer(GL_NONE);
mFBOShadowMap[i].attachTexture(GL_DEPTH_ATTACHMENT, mShadowMapTexture[i].getID());
mFBOShadowMap[i].unbind();
}
2015-08-03 21:05:55 +00:00
mIsShadowMappingInitialized = true;
}
2015-08-11 16:32:45 +00:00
// Used for debugging shadow maps
void SceneDemo::createQuadVBO() {
mVAOQuad.create();
mVAOQuad.bind();
static const GLfloat quadVertexData[] = {
-1.0f, -1.0f, 0.0f,
1.0f, -1.0f, 0.0f,
-1.0f, 1.0f, 0.0f,
-1.0f, 1.0f, 0.0f,
1.0f, -1.0f, 0.0f,
1.0f, 1.0f, 0.0f,
};
mVBOQuad.create();
mVBOQuad.bind();
mVBOQuad.copyDataIntoVBO(sizeof(quadVertexData), quadVertexData, GL_STATIC_DRAW);
mVBOQuad.unbind();
mVAOQuad.unbind();
2015-07-21 23:18:32 +00:00
}
2020-05-05 22:34:56 +00:00
// Create a the VAO and VBOs to render the debug infos
void SceneDemo::createDebugVBO() {
// ----- Lines ----- //
// Create the VBO for the vertices data
mDebugVBOLinesVertices.create();
// Create the VAO for both VBOs
mDebugLinesVAO.create();
mDebugLinesVAO.bind();
// Bind the VBO of vertices
mDebugVBOLinesVertices.bind();
// Unbind the VAO
mDebugLinesVAO.unbind();
mDebugVBOLinesVertices.unbind();
// ----- Triangles ----- //
// Create the VBO for the vertices data
mDebugVBOTrianglesVertices.create();
// Create the VAO for both VBOs
mDebugTrianglesVAO.create();
mDebugTrianglesVAO.bind();
// Bind the VBO of vertices
mDebugVBOTrianglesVertices.bind();
// Unbind the VAO
mDebugTrianglesVAO.unbind();
mDebugVBOTrianglesVertices.unbind();
}
void SceneDemo::drawTextureQuad() {
glViewport(mViewportX, mViewportY, mViewportWidth, mViewportHeight);
glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
// Clear previous frame values
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
2015-07-21 23:18:32 +00:00
const int SHADOW_MAP_TEXTURE_TO_DRAW = 0;
const GLuint textureUnit = SHADOW_MAP_TEXTURE_TO_DRAW;
mVAOQuad.bind();
mQuadShader.bind();
mShadowMapTexture[SHADOW_MAP_TEXTURE_TO_DRAW].bind();
mQuadShader.setIntUniform("textureSampler", textureUnit);
mVBOQuad.bind();
GLint vertexPositionLoc = mQuadShader.getAttribLocation("vertexPosition");
glEnableVertexAttribArray(vertexPositionLoc);
glVertexAttribPointer(
vertexPositionLoc, // attribute 0. No particular reason for 0, but must match the layout in the shader.
3, // size
GL_FLOAT, // type
GL_FALSE, // normalized?
0, // stride
(void*)0 // array buffer offset
);
// Draw the triangles !
glDrawArrays(GL_TRIANGLES, 0, 6); // 2*3 indices starting at 0 -> 2 triangles
glDisableVertexAttribArray(vertexPositionLoc);
mVBOQuad.unbind();
mShadowMapTexture[SHADOW_MAP_TEXTURE_TO_DRAW].unbind();
mQuadShader.unbind();
mVAOQuad.unbind();
2015-07-21 23:18:32 +00:00
}
2015-08-11 16:32:45 +00:00
2020-05-07 13:12:59 +00:00
// Gather and create snapshots contact points
void SceneDemo::updateSnapshotContactPoints() {
2015-08-11 16:32:45 +00:00
// Remove the previous contact points
removeAllVisualContactPoints();
2015-08-11 16:32:45 +00:00
2020-05-07 13:12:59 +00:00
// For each contact point
std::vector<SceneContactPoint>::const_iterator it;
for (it = mSnapshotsContactPoints.begin(); it != mSnapshotsContactPoints.end(); ++it) {
2015-08-11 16:32:45 +00:00
2020-05-07 13:12:59 +00:00
// Create a visual contact point for rendering
VisualContactPoint* point = new VisualContactPoint(it->point, mMeshFolderPath, it->point + it->normal, it->color);
mVisualContactPoints.push_back(point);
2015-08-11 16:32:45 +00:00
}
}
// Render the contact points
2020-05-07 13:12:59 +00:00
void SceneDemo::renderSnapshotsContactPoints(openglframework::Shader& shader, const openglframework::Matrix4& worldToCameraMatrix) {
2015-08-11 16:32:45 +00:00
// Render all the contact points
for (std::vector<VisualContactPoint*>::iterator it = mVisualContactPoints.begin();
it != mVisualContactPoints.end(); ++it) {
(*it)->render(mColorShader, worldToCameraMatrix);
2015-08-11 16:32:45 +00:00
}
}
2020-05-05 22:34:56 +00:00
// Update VBO with vertices and indices of debug info
void SceneDemo::updateDebugVBO() {
rp3d::DebugRenderer& debugRenderer = mPhysicsWorld->getDebugRenderer();
if (mPhysicsWorld->getIsDebugRenderingEnabled()) {
// ----- Lines ---- //
const uint nbLines = debugRenderer.getNbLines();
if (nbLines > 0) {
// Vertices
mDebugVBOLinesVertices.bind();
GLsizei sizeVertices = static_cast<GLsizei>(nbLines * sizeof(rp3d::DebugRenderer::DebugLine));
mDebugVBOLinesVertices.copyDataIntoVBO(sizeVertices, debugRenderer.getLinesArray(), GL_STREAM_DRAW);
mDebugVBOLinesVertices.unbind();
}
// ----- Triangles ---- //
const uint nbTriangles = debugRenderer.getNbTriangles();
if (nbTriangles > 0) {
// Vertices
mDebugVBOTrianglesVertices.bind();
GLsizei sizeVertices = static_cast<GLsizei>(nbTriangles * sizeof(rp3d::DebugRenderer::DebugTriangle));
mDebugVBOTrianglesVertices.copyDataIntoVBO(sizeVertices, debugRenderer.getTrianglesArray(), GL_STREAM_DRAW);
mDebugVBOTrianglesVertices.unbind();
}
}
}
// Render Debug Infos
void SceneDemo::renderDebugInfos(openglframework::Shader& shader, const openglframework::Matrix4& worldToCameraMatrix) {
rp3d::DebugRenderer& debugRenderer = mPhysicsWorld->getDebugRenderer();
// Render in wireframe mode
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
// Bind the shader
shader.bind();
// Set the normal matrix (inverse transpose of the 3x3 upper-left sub matrix of the
// model-view matrix)
const openglframework::Matrix4 localToCameraMatrix = worldToCameraMatrix;
const openglframework::Matrix3 normalMatrix = localToCameraMatrix.getUpperLeft3x3Matrix().getInverse().getTranspose();
shader.setMatrix3x3Uniform("normalMatrix", normalMatrix, false);
// Set the model to camera matrix
shader.setMatrix4x4Uniform("localToWorldMatrix", openglframework::Matrix4::identity());
shader.setMatrix4x4Uniform("worldToCameraMatrix", worldToCameraMatrix);
shader.setIntUniform("isGlobalVertexColorEnabled", 0, false);
// Get the location of shader attribute variables
GLint vertexPositionLoc = shader.getAttribLocation("vertexPosition");
GLint vertexColorLoc = shader.getAttribLocation("vertexColor");
// Lines
if (debugRenderer.getNbLines() > 0) {
// Bind the VAO
mDebugLinesVAO.bind();
mDebugVBOLinesVertices.bind();
glEnableVertexAttribArray(vertexPositionLoc);
glVertexAttribPointer(vertexPositionLoc, 3, GL_FLOAT, GL_FALSE, sizeof(rp3d::Vector3) + sizeof(rp3d::uint32), (char*)nullptr);
glEnableVertexAttribArray(vertexColorLoc);
glVertexAttribIPointer(vertexColorLoc, 3, GL_UNSIGNED_INT, sizeof(rp3d::Vector3) + sizeof(rp3d::uint32), (void*)sizeof(rp3d::Vector3));
// Draw the lines geometry
glDrawArrays(GL_LINES, 0, debugRenderer.getNbLines() * 2);
glDisableVertexAttribArray(vertexPositionLoc);
glDisableVertexAttribArray(vertexColorLoc);
mDebugVBOLinesVertices.unbind();
// Unbind the VAO
mDebugLinesVAO.unbind();
}
// Triangles
if (debugRenderer.getNbTriangles() > 0) {
// Bind the VAO
mDebugTrianglesVAO.bind();
mDebugVBOTrianglesVertices.bind();
glEnableVertexAttribArray(vertexPositionLoc);
glVertexAttribPointer(vertexPositionLoc, 3, GL_FLOAT, GL_FALSE, sizeof(rp3d::Vector3) + sizeof(rp3d::uint32), (char*)nullptr);
glEnableVertexAttribArray(vertexColorLoc);
glVertexAttribIPointer(vertexColorLoc, 3, GL_UNSIGNED_INT, sizeof(rp3d::Vector3) + sizeof(rp3d::uint32), (void*)sizeof(rp3d::Vector3));
// Draw the triangles geometry
glDrawArrays(GL_TRIANGLES, 0, debugRenderer.getNbTriangles() * 3);
glDisableVertexAttribArray(vertexPositionLoc);
glDisableVertexAttribArray(vertexColorLoc);
mDebugVBOTrianglesVertices.unbind();
// Unbind the VAO
mDebugTrianglesVAO.unbind();
}
// Unbind the shader
shader.unbind();
// Disable wireframe mode
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
}
void SceneDemo::removeAllVisualContactPoints() {
2015-08-11 16:32:45 +00:00
// Destroy all the visual contact points
for (std::vector<VisualContactPoint*>::iterator it = mVisualContactPoints.begin();
it != mVisualContactPoints.end(); ++it) {
2015-08-11 16:32:45 +00:00
delete (*it);
}
mVisualContactPoints.clear();
2015-08-11 16:32:45 +00:00
}
2018-03-15 22:11:26 +00:00
// Called when the user is moving a body with the mouse
void SceneDemo::moveBodyWithMouse(double mousePosX, double mousePosY) {
if (!mIsMovingBody) {
// Find the body and the position of the mouse on that body (with raycasting)
openglframework::Vector4 screenPoint1((mousePosX / mWindowWidth) * 2.0 - 1.0, ((mWindowHeight - mousePosY) / mWindowHeight) * 2.0 - 1.0, -1, 1);
openglframework::Vector4 screenPoint2((mousePosX / mWindowWidth) * 2.0 - 1.0, ((mWindowHeight - mousePosY) / mWindowHeight) * 2.0 - 1.0, 1, 1);
openglframework::Vector4 worldP1 = (mCamera.getTransformMatrix() * mCamera.getProjectionMatrix().getInverse()) * screenPoint1;
openglframework::Vector4 worldP2 = (mCamera.getTransformMatrix() * mCamera.getProjectionMatrix().getInverse()) * screenPoint2;
openglframework::Vector3 cameraPos = mCamera.getOrigin();
rp3d::Vector3 worldPoint1(worldP1.x, worldP1.y, worldP1.z);
rp3d::Vector3 worldPoint2(worldP2.x, worldP2.y, worldP2.z);
rp3d::Ray ray(worldPoint1, worldPoint2);
mPhysicsWorld->raycast(ray, this);
}
if (mMovingBody != nullptr) {
openglframework::Vector4 previousScreenPos(mLastMouseX / mWindowWidth, (mWindowHeight - mLastMouseY) / mWindowHeight, 0, 0);
openglframework::Vector4 currentScreenPos(mousePosX / mWindowWidth, (mWindowHeight - mousePosY) / mWindowHeight, 0, 0);
openglframework::Vector4 forceScreen = currentScreenPos - previousScreenPos;
openglframework::Vector4 f = mCamera.getTransformMatrix() * forceScreen * MOUSE_MOVE_BODY_FORCE;
rp3d::Vector3 force(f.x, f.y, f.z);
mMovingBody->applyForceAtLocalPosition(force, mMovingBodyLocalPoint);
}
mLastMouseX = mousePosX;
mLastMouseY = mousePosY;
mIsMovingBody = true;
}
// Called when a mouse button event occurs
bool SceneDemo::mouseButtonEvent(int button, bool down, int mods, double mousePosX, double mousePosY) {
// Left mouse click with CTRL key pressed on keyboard (moving a body)
if (down && (mods & GLFW_MOD_CONTROL)) {
moveBodyWithMouse(mousePosX, mousePosY);
return true;
}
mIsMovingBody = false;
mMovingBody = nullptr;
return Scene::mouseButtonEvent(button, down, mods, mousePosX, mousePosY);
}
// Called when a mouse motion event occurs
bool SceneDemo::mouseMotionEvent(double xMouse, double yMouse, int leftButtonState, int rightButtonState, int middleButtonState, int altKeyState) {
if (mIsMovingBody) {
moveBodyWithMouse(xMouse, yMouse);
return true;
}
return Scene::mouseMotionEvent(xMouse, yMouse, leftButtonState, rightButtonState, middleButtonState, altKeyState);
}
// Called when a raycast hit occurs (used to move a body with the mouse)
rp3d::decimal SceneDemo::notifyRaycastHit(const rp3d::RaycastInfo& raycastInfo) {
rp3d::RigidBody* body = dynamic_cast<rp3d::RigidBody*>(raycastInfo.body);
mMovingBody = body;
const rp3d::Transform localToWorldTransform = raycastInfo.collider->getLocalToWorldTransform();
mMovingBodyLocalPoint = localToWorldTransform.getInverse() * raycastInfo.worldPoint;
return raycastInfo.hitFraction;
}
2018-03-15 22:11:26 +00:00
// Update the engine settings
void SceneDemo::updateEngineSettings() {
if (mIsPhysicsWorldSimulated) {
2018-03-15 22:11:26 +00:00
// Update the physics engine parameters
mPhysicsWorld->setIsGravityEnabled(mEngineSettings.isGravityEnabled);
2018-03-15 22:11:26 +00:00
rp3d::Vector3 gravity(mEngineSettings.gravity.x, mEngineSettings.gravity.y,
mEngineSettings.gravity.z);
mPhysicsWorld->setGravity(gravity);
mPhysicsWorld->enableSleeping(mEngineSettings.isSleepingEnabled);
mPhysicsWorld->setSleepLinearVelocity(mEngineSettings.sleepLinearVelocity);
mPhysicsWorld->setSleepAngularVelocity(mEngineSettings.sleepAngularVelocity);
mPhysicsWorld->setNbIterationsPositionSolver(mEngineSettings.nbPositionSolverIterations);
mPhysicsWorld->setNbIterationsVelocitySolver(mEngineSettings.nbVelocitySolverIterations);
mPhysicsWorld->setTimeBeforeSleep(mEngineSettings.timeBeforeSleep);
2018-03-15 22:11:26 +00:00
}
}