/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ 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 CONCAVE_RAYCAST_DEMO_H #define CONCAVE_RAYCAST_DEMO_H #include "DemoApplication.h" #include "LinearMath/btAlignedObjectArray.h" class btBroadphaseInterface; class btCollisionShape; class btOverlappingPairCache; class btCollisionDispatcher; class btConstraintSolver; struct btCollisionAlgorithmCreateFunc; class btDefaultCollisionConfiguration; class btTriangleIndexVertexArray; ///ConcaveRaycastDemo shows usage of static concave triangle meshes class ConcaveRaycastDemo : public DemoApplication { //keep the collision shapes, for deletion/cleanup btAlignedObjectArray m_collisionShapes; btTriangleIndexVertexArray* m_indexVertexArrays; btBroadphaseInterface* m_broadphase; btCollisionDispatcher* m_dispatcher; btConstraintSolver* m_solver; class btThreadSupportInterface* m_threadSupportRaycast; btDefaultCollisionConfiguration* m_collisionConfiguration; bool m_animatedMesh; public: ConcaveRaycastDemo() : m_animatedMesh(false) { } void initPhysics(); void exitPhysics(); virtual ~ConcaveRaycastDemo() { exitPhysics(); } virtual void clientMoveAndDisplay(); virtual void displayCallback(); //to show refit works void setVertexPositions(float waveheight, float offset); virtual void keyboardCallback(unsigned char key, int x, int y); static DemoApplication* Create() { ConcaveRaycastDemo* demo = new ConcaveRaycastDemo(); demo->myinit(); demo->initPhysics(); return demo; }; }; #endif //CONCAVE_RAYCAST_DEMO_H