public:t-gede-14-1:lab9
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
public:t-gede-14-1:lab9 [2014/03/24 21:50] – [Lab] 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 11: | Line 9: | ||
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 {{: | ||
- | ===== Lab ===== | + | ===== Bullet |
- | - Setup Project. | + | - Setup Bullet |
- | - Downlaod [[https://code.google.com/p/bullet/downloads/ | + | - Downlaod [[https://github.com/bulletphysics/bullet3/releases|Bullet]] |
- Build Bullet | - Build Bullet | ||
- Run <bullet root> | - Run <bullet root> | ||
Line 20: | Line 18: | ||
- Change the C/ | - Change the C/ | ||
- Build the solution for debug and release. | - Build the solution for debug and release. | ||
+ | |||
+ | ===== Lab ===== | ||
+ | And now for the Ogre project. | ||
- **Add** ''< | - **Add** ''< | ||
- **Add** ''< | - **Add** ''< | ||
Line 31: | Line 32: | ||
#include " | #include " | ||
#include " | #include " | ||
+ | #include " | ||
#include < | #include < | ||
#include <map> | #include <map> | ||
Line 44: | Line 46: | ||
public: | public: | ||
Physics(); | Physics(); | ||
+ | void initObjects(); | ||
virtual ~Physics(); | virtual ~Physics(); | ||
btDiscreteDynamicsWorld* getDynamicsWorld(); | btDiscreteDynamicsWorld* getDynamicsWorld(); | ||
Line 54: | Line 57: | ||
#include " | #include " | ||
+ | |||
+ | Physics:: | ||
+ | |||
+ | } | ||
Physics:: | Physics:: | ||
Line 76: | Line 83: | ||
</ | </ | ||
- | - **Create a pointer** to physics in your Application, | + | - **Create a pointer** to physics in your Application, |
+ | _physicsEngine-> | ||
- **Before we start** there are some basic changes that have to made to the environment, | - **Before we start** there are some basic changes that have to made to the environment, | ||
- **You can check out Sinbad' | - **You can check out Sinbad' | ||
Line 85: | Line 93: | ||
- Add this function to your Physics class. <code cpp> | - Add this function to your Physics class. <code cpp> | ||
- | btRigidBody* Physics:: | + | btRigidBody* Physics:: |
- | Ogre:: | + | Ogre:: |
- | btScalar x = 0.5 * node-> | + | btScalar x = 0.5f * node-> |
- | btScalar y = 0.5 * node-> | + | btScalar y = 0.5f * node-> |
- | btScalar z = 0.5 * node-> | + | btScalar z = 0.5f * node-> |
btCollisionShape* colShape = new btBoxShape(btVector3(x, | btCollisionShape* colShape = new btBoxShape(btVector3(x, | ||
Line 156: | Line 164: | ||
#endif // | #endif // | ||
+ | - **Now we are ready to create some rigid Bodies.** | ||
+ | - **Lets start by setting the ground as a collision plane**. Make the following changes and add the bullet code to the definition of your ground plane. <code cpp>// Create the 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 the dynamicWorld** and of course make the camera shoot some boxes! For this you will need to pass to the FrameListener a pointer to the sceneManager and the Physics engine. | ||
+ | - **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 and run using a Release built target!!! Very important, unless you plan to fry some eggs and bacon on your laptop :)** Just make sure to use the Release version of the plugins file when you run the application.It can be found under ''< | ||
+ | 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.1395697839.txt.gz · Last modified: 2024/04/29 13:32 (external edit)