Imported Upstream version 2.81
[platform/upstream/libbullet.git] / Demos / BasicDemo / BasicDemo.h
1 /*
2 Bullet Continuous Collision Detection and Physics Library
3 Copyright (c) 2003-2006 Erwin Coumans  http://continuousphysics.com/Bullet/
4
5 This software is provided 'as-is', without any express or implied warranty.
6 In no event will the authors be held liable for any damages arising from the use of this software.
7 Permission is granted to anyone to use this software for any purpose, 
8 including commercial applications, and to alter it and redistribute it freely, 
9 subject to the following restrictions:
10
11 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.
12 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
13 3. This notice may not be removed or altered from any source distribution.
14 */
15 #ifndef BASIC_DEMO_H
16 #define BASIC_DEMO_H
17
18 #ifdef _WINDOWS
19 #include "Win32DemoApplication.h"
20 #define PlatformDemoApplication Win32DemoApplication
21 #else
22 #include "GlutDemoApplication.h"
23 #define PlatformDemoApplication GlutDemoApplication
24 #endif
25
26 #include "LinearMath/btAlignedObjectArray.h"
27
28 class btBroadphaseInterface;
29 class btCollisionShape;
30 class btOverlappingPairCache;
31 class btCollisionDispatcher;
32 class btConstraintSolver;
33 struct btCollisionAlgorithmCreateFunc;
34 class btDefaultCollisionConfiguration;
35
36 ///BasicDemo is good starting point for learning the code base and porting.
37
38 class BasicDemo : public PlatformDemoApplication
39 {
40
41         //keep the collision shapes, for deletion/cleanup
42         btAlignedObjectArray<btCollisionShape*> m_collisionShapes;
43
44         btBroadphaseInterface*  m_broadphase;
45
46         btCollisionDispatcher*  m_dispatcher;
47
48         btConstraintSolver*     m_solver;
49
50         btDefaultCollisionConfiguration* m_collisionConfiguration;
51
52         public:
53
54         BasicDemo()
55         {
56         }
57         virtual ~BasicDemo()
58         {
59                 exitPhysics();
60         }
61         void    initPhysics();
62
63         void    exitPhysics();
64
65         virtual void clientMoveAndDisplay();
66
67         virtual void displayCallback();
68         virtual void    clientResetScene();
69         
70         static DemoApplication* Create()
71         {
72                 BasicDemo* demo = new BasicDemo;
73                 demo->myinit();
74                 demo->initPhysics();
75                 return demo;
76         }
77
78         
79 };
80
81 #endif //BASIC_DEMO_H
82