public:t-gede-14-1:lab9
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
public:t-gede-14-1:lab9 [2014/03/24 21:32] – created marino | public:t-gede-14-1:lab9 [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== LAB9: Particle Systems (Optional) | + | ====== LAB9: Physics |
- | + | ||
- | In this lab we will scratch the surface of using the Bullet physics blibrary with Ogre. This lab is intirely optional but can replace another previously unfinished lab, and counts toward participation. | + | |
- | + | ||
- | Unfortunately I was unable to give me the proper amount of time to make this lab interesting enough, but the classic brick wall | + | |
+ | In this lab we will scratch the surface of using the Bullet physics blibrary with Ogre. | ||
+ | {{ : | ||
===== Discussion ===== | ===== Discussion ===== | ||
Discussion thread for this lab is on Piazza | Discussion thread for this lab is on Piazza | ||
Line 10: | Line 8: | ||
===== Preperation ===== | ===== Preperation ===== | ||
You can use your own project or start fresh with the base application {{: | You can use your own project or start fresh with the base application {{: | ||
+ | |||
+ | ===== Bullet ===== | ||
+ | - Setup Bullet Project. | ||
+ | - Downlaod [[https:// | ||
+ | - Build Bullet | ||
+ | - Run <bullet root> | ||
+ | - Open the <bullet root> | ||
+ | - Make sure you compile using the v100 version of the visual studio compiler \\ **Note:** that you can select properties for one project, then multi select the projects you want to change the properties for to change the value in multiple projects at the same time. | ||
+ | - Change the C/ | ||
+ | - Build the solution for debug and release. | ||
===== Lab ===== | ===== Lab ===== | ||
- | | + | And now for the Ogre project. |
+ | - **Add** ''< | ||
+ | - **Add** ''< | ||
+ | - **Add** '' | ||
+ | - **Add** '' | ||
+ | | ||
+ | // Header! | ||
- | - Downlaod Bullet | + | #ifndef PHYSICS_H |
+ | #define PHYSICS_H | ||
+ | #include " | ||
+ | #include " | ||
+ | #include " | ||
+ | #include < | ||
+ | #include <map> | ||
- | | + | class Physics{ |
- | | + | btDefaultCollisionConfiguration* collisionConfiguration; |
- | | + | btCollisionDispatcher* dispatcher; |
- | | + | btBroadphaseInterface* overlappingPairCache; |
- | - Note that you can select properties | + | btSequentialImpulseConstraintSolver* solver; |
- | - Build the solution | + | btDiscreteDynamicsWorld* dynamicsWorld; |
+ | std:: | ||
+ | std:: | ||
+ | public: | ||
+ | Physics(); | ||
+ | void initObjects(); | ||
+ | virtual ~Physics(); | ||
+ | btDiscreteDynamicsWorld* getDynamicsWorld(); | ||
+ | |||
+ | }; | ||
+ | |||
+ | #endif // | ||
+ | |||
+ | // Implementation! | ||
+ | |||
+ | #include " | ||
+ | |||
+ | Physics:: | ||
+ | |||
+ | } | ||
+ | |||
+ | Physics:: | ||
+ | delete dynamicsWorld; | ||
+ | delete solver; | ||
+ | delete overlappingPairCache; | ||
+ | delete dispatcher; | ||
+ | delete collisionConfiguration; | ||
+ | } | ||
+ | |||
+ | void Physics:: | ||
+ | collisionConfiguration = new btDefaultCollisionConfiguration(); | ||
+ | dispatcher = new btCollisionDispatcher(collisionConfiguration); | ||
+ | overlappingPairCache = new btDbvtBroadphase(); | ||
+ | solver = new btSequentialImpulseConstraintSolver(); | ||
+ | dynamicsWorld = new btDiscreteDynamicsWorld(dispatcher, | ||
+ | } | ||
+ | |||
+ | btDiscreteDynamicsWorld* Physics:: | ||
+ | return dynamicsWorld; | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | | ||
+ | _physicsEngine-> | ||
+ | - **Before we start** there are some basic changes that have to made to the environment, | ||
+ | - **You can check out Sinbad' | ||
+ | - **Now scale** the sinbad node down by 0.2 '' | ||
+ | - **Change** the nearClippingPlaneDistance of the camera to 0.5 | ||
+ | - **In the frameListener class,** change the movement speed of the camera to something around 10-20. | ||
+ | - **Now to create Rigid Bodies we must** first let bullet | ||
+ | - Add this function to your Physics class. <code cpp>btRigidBody* AddDynamicCubeRigidBoidy(Ogre:: | ||
+ | |||
+ | btRigidBody* Physics:: | ||
+ | Ogre:: | ||
+ | |||
+ | btScalar x = 0.5f * node-> | ||
+ | btScalar y = 0.5f * node-> | ||
+ | btScalar z = 0.5f * node-> | ||
+ | btCollisionShape* colShape = new btBoxShape(btVector3(x, | ||
+ | |||
+ | /// Create Dynamic Objects | ||
+ | btTransform startTransform; | ||
+ | startTransform.setIdentity(); | ||
+ | |||
+ | // | ||
+ | bool isDynamic = (mass != 0.f); | ||
+ | |||
+ | btVector3 localInertia(0, | ||
+ | if (isDynamic) | ||
+ | colShape-> | ||
+ | |||
+ | startTransform.setOrigin(btVector3(node-> | ||
+ | |||
+ | btQuaternion initRotation(node-> | ||
+ | startTransform.setRotation(initRotation); | ||
+ | |||
+ | OgreMotionState* motionState = new OgreMotionState(startTransform, | ||
+ | btRigidBody:: | ||
+ | btRigidBody* body = new btRigidBody(rbInfo); | ||
+ | |||
+ | dynamicsWorld-> | ||
+ | |||
+ | return body; | ||
+ | }</ | ||
+ | - As you might have noticed, that function uses a class called OgreMotionState, | ||
+ | - Add the file OgreMotionState.h to your project.<code cpp>#ifndef OGREMOTIONSTATE_H | ||
+ | #define OGREMOTIONSTATE_H | ||
+ | |||
+ | #include " | ||
+ | #include "OGRE\Ogre.h" | ||
+ | class OgreMotionState : public btMotionState { | ||
+ | public: | ||
+ | OgreMotionState(const btTransform & | ||
+ | mVisibleobj = node; | ||
+ | mPos1 = initialpos; | ||
+ | } | ||
+ | |||
+ | virtual ~OgreMotionState() { | ||
+ | } | ||
+ | |||
+ | void setNode(Ogre:: | ||
+ | mVisibleobj = node; | ||
+ | } | ||
+ | |||
+ | virtual void getWorldTransform(btTransform & | ||
+ | worldTrans = mPos1; | ||
+ | } | ||
+ | |||
+ | virtual void setWorldTransform(const btTransform & | ||
+ | if (NULL == mVisibleobj) | ||
+ | return; | ||
+ | btQuaternion rot = worldTrans.getRotation(); | ||
+ | mVisibleobj-> | ||
+ | btVector3 pos = worldTrans.getOrigin(); | ||
+ | mVisibleobj-> | ||
+ | } | ||
+ | |||
+ | protected: | ||
+ | Ogre:: | ||
+ | btTransform mPos1; | ||
+ | }; | ||
+ | |||
+ | #endif // | ||
+ | - **Now we are ready to create some rigid Bodies.** | ||
+ | - **Lets start by setting the ground as a collision plane**. | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | 1500, 1500, 200, 200, true, 1, 5, 5, Ogre:: | ||
+ | |||
+ | // Set the plane as the ground and add a texture to it. | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | groundNode-> | ||
+ | ground-> | ||
+ | |||
+ | groundNode-> | ||
+ | |||
+ | // Create the collision shape, and give it the ground plane normals. | ||
+ | btCollisionShape* groundShape = new btStaticPlaneShape(btVector3(plane.normal.x, | ||
+ | |||
+ | // Create the collision transform. | ||
+ | btTransform groundTransform; | ||
+ | |||
+ | // Set up the collision location and orientation. | ||
+ | groundTransform.setIdentity(); | ||
+ | groundTransform.setOrigin(btVector3(groundNode-> | ||
+ | btQuaternion initRotation(groundNode-> | ||
+ | groundTransform.setRotation(initRotation); | ||
+ | |||
+ | // Give the plane a mass of 0, because our plane will be static, thus will not moce. | ||
+ | btScalar mass(0.0f); | ||
+ | |||
+ | // Set the ground as a static object. | ||
+ | bool isDynamic = false; | ||
+ | |||
+ | // This plane isnt going to be moving so i dont care about setting the motion state | ||
+ | btDefaultMotionState* myMotionState = new btDefaultMotionState(groundTransform); | ||
+ | btRigidBody:: | ||
+ | btRigidBody* body = new btRigidBody(rbInfo); | ||
+ | |||
+ | //add the body to the dynamics world | ||
+ | _physicsEngine-> | ||
+ | - **Now lets add some cubes :)**, add this function to your create scene function. <code cpp> int ringCount = 16; | ||
+ | int ringheight = 10; | ||
+ | for (int i = 0; i < ringheight; ++i) { | ||
+ | for (int j = 0; j < ringCount; ++j) { | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | cubeNode-> | ||
+ | Ogre:: | ||
+ | |||
+ | cubeNode-> | ||
+ | // | ||
+ | |||
+ | cubeNode-> | ||
+ | |||
+ | cubeNode-> | ||
+ | btRigidBody* temp = _physicsEngine-> | ||
+ | temp-> | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | - **And finally we must update | ||
+ | - **You can either do that via the constructor**, | ||
+ | - **Make the following modifications to your frameListener** \\ **Make** the FrameListener also inherit from OIS:: | ||
+ | mouseMask |= 1 << (int)id; | ||
+ | return true; | ||
+ | } | ||
+ | virtual bool mouseMoved(const OIS:: | ||
+ | return true; | ||
+ | } | ||
+ | virtual bool mouseReleased(const OIS:: | ||
+ | return true; | ||
+ | }</ | ||
+ | </ | ||
+ | try { | ||
+ | _Mouse = static_cast< | ||
+ | _Mouse-> | ||
+ | std::cout << " | ||
+ | } | ||
+ | catch (...) { | ||
+ | std::cout << " | ||
+ | _Mouse = 0; | ||
+ | }</ | ||
+ | - **Now we spawn a cube from the origin of the camera** and give it some linear velocity in the direction of the camera. You will have to pass a pointer to the SceneManager into the frameListener. < | ||
+ | // Create a cube entity. | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | |||
+ | cubeNode-> | ||
+ | // Set the position of the cube to the front of the origin of the camera | ||
+ | cubeNode-> | ||
+ | cubeNode-> | ||
+ | |||
+ | // Now make the cube a rigid body, give it some linearVelocity and add it to the physics world | ||
+ | btRigidBody* boxBody = _physicsEngine-> | ||
+ | boxBody-> | ||
+ | }</ | ||
+ | - **Finally** we update the physics world <code cpp>// Now update the physics world with the delta time. "Note: normally we would want to have the physics world update a little more independant of the framerate, but this will do for now :)" | ||
+ | _physicsEngine-> | ||
+ | |||
+ | <box red 100% | **Attention!**> | ||
+ | ** Compile | ||
+ | cf.load(" | ||
+ | #elif NDEBUG | ||
+ | cf.load(" | ||
+ | #endif | ||
+ | #if _DEBUG | ||
+ | _root = new Ogre:: | ||
+ | #elif NDEBUG | ||
+ | _root = new Ogre:: | ||
+ | # | ||
===== When You Are Finished ===== | ===== When You Are Finished ===== | ||
Upload your **commented source files** into Lab9 in MySchool (zip them up if more than one). | Upload your **commented source files** into Lab9 in MySchool (zip them up if more than one). |
/var/www/cadia.ru.is/wiki/data/attic/public/t-gede-14-1/lab9.1395696727.txt.gz · Last modified: 2024/04/29 13:32 (external edit)