public:t-gede-15-1:lab5
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
public:t-gede-15-1:lab5 [2015/02/16 15:10] – created marino | public:t-gede-15-1:lab5 [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== LAB5: Human Interface Devices ====== | ||
+ | |||
+ | This lab is only loosely based on Chapter 8 on human interface devices in the text book. The focus here is on being able to control the on-screen character with a specialized game interface device. | ||
+ | |||
+ | ===== Discussion ===== | ||
+ | |||
+ | Discussion thread for this lab is here on Piazza: [[https:// | ||
+ | |||
+ | ===== Goal ====== | ||
+ | |||
+ | The primary goal of this lab is to hook a joypad game input device up to your Ogre application and use it to control both the character and the camera. This is also an opportunity to see how you set up buffered input (previously you've been using unbuffered input in this application). | ||
+ | |||
+ | ===== Preparation ===== | ||
+ | |||
+ | No special preparation is required - preparing the joypad is explained in the project steps below. You do not have to use the latest lab as a base for this one, you can use the base of lab2 or any other **//except lab1//** if you feel like the project has become to bloated. | ||
+ | |||
+ | **NOTE:** To get the joypads to start sending data, you may have to press a **Mode** button in the center of the device. This is true for the joypads handed out in the lab class! | ||
+ | |||
+ | |||
+ | |||
===== Lab Project ===== | ===== Lab Project ===== | ||
Line 4: | Line 24: | ||
- **Create a New Project** Create a new empty project called " | - **Create a New Project** Create a new empty project called " | ||
- | | ||
- **Plug in and Test Joypad** Plug a USB joypad into your computer and find the device in your system' | - **Plug in and Test Joypad** Plug a USB joypad into your computer and find the device in your system' | ||
- **Initialize Joystick Input** Your MyFrameListener class needs to receive callbacks from the joystick device and therefore has to inherit joystick callback methods from an abstract class called '' | - **Initialize Joystick Input** Your MyFrameListener class needs to receive callbacks from the joystick device and therefore has to inherit joystick callback methods from an abstract class called '' | ||
Line 82: | Line 101: | ||
_Cam-> | _Cam-> | ||
</ | </ | ||
+ | |||
+ | ====== Bonus points ====== | ||
+ | <box green 100% | Bonus points> | ||
+ | - **Make the input a little bit more useful :)** Either make your own modifications to the input or follow the instructions given: | ||
+ | - **Remove the code** from frameStarted: | ||
+ | Ogre:: | ||
+ | float _rotation = 0.0f; | ||
+ | |||
+ | if (_Keyboard-> | ||
+ | SinbadTranslate += Ogre:: | ||
+ | walked = true; | ||
+ | _rotation = 3.14f; | ||
+ | } | ||
+ | if (_Keyboard-> | ||
+ | SinbadTranslate += Ogre:: | ||
+ | walked = true; | ||
+ | _rotation = 0.0f; | ||
+ | } | ||
+ | if (_Keyboard-> | ||
+ | SinbadTranslate += Ogre:: | ||
+ | walked = true; | ||
+ | _rotation = -1.57f; | ||
+ | } | ||
+ | if (_Keyboard-> | ||
+ | SinbadTranslate += Ogre:: | ||
+ | walked = true; | ||
+ | _rotation = 1.57f; | ||
+ | } | ||
+ | |||
+ | _node-> | ||
+ | _node-> | ||
+ | _node-> | ||
+ | </ | ||
+ | - **Now we will make the Sinbad move with the left analog stick** Add these two member variables to the '' | ||
+ | int _walkMagnitude; | ||
+ | int _turnMagnitude; | ||
+ | float _orientation; | ||
+ | </ | ||
+ | - **Capture the state of the left axis** in the function '' | ||
+ | bool MyFrameListener:: | ||
+ | int value = e.state.mAxes[axis].abs; | ||
+ | switch (axis) { | ||
+ | case 1: | ||
+ | _camangle = Ogre:: | ||
+ | break; | ||
+ | // Add these lines, dont forget to break :) | ||
+ | case 2: | ||
+ | _walkMagnitude = (float)value / -float(_Joystick-> | ||
+ | break; | ||
+ | case 3: | ||
+ | _turnMagnitude = (float)value / -float(_Joystick-> | ||
+ | break; | ||
+ | } | ||
+ | return true; | ||
+ | } | ||
+ | </ | ||
+ | - **Now add the new input method for Sinbad** add this code in place for the code removed from section //a// <code cpp> | ||
+ | bool walked = false; | ||
+ | Ogre:: | ||
+ | |||
+ | // If the joystick is not available, use the keyboard as input. | ||
+ | if (!_Joystick) { | ||
+ | if (_Keyboard-> | ||
+ | _walkMagnitude = 1; | ||
+ | } | ||
+ | else if (_Keyboard-> | ||
+ | _walkMagnitude = -1; | ||
+ | } | ||
+ | else { | ||
+ | _walkMagnitude = 0; | ||
+ | } | ||
+ | |||
+ | if (_Keyboard-> | ||
+ | _turnMagnitude = 1; | ||
+ | } | ||
+ | else if (_Keyboard-> | ||
+ | _turnMagnitude = -1; | ||
+ | } | ||
+ | else { | ||
+ | _turnMagnitude = 0; | ||
+ | } | ||
+ | } | ||
+ | // Create the translation vector. | ||
+ | SinbadTranslate = _node-> | ||
+ | walked = true; | ||
+ | |||
+ | // Increment the roation angle. | ||
+ | _orientation += evt.timeSinceLastFrame * _turnMagnitude*2; | ||
+ | |||
+ | // Now finally apply the rotation and translation. | ||
+ | _node-> | ||
+ | _node-> | ||
+ | </ | ||
+ | - **As of now the camera follows Sinbad in a strange manner.** By adding buffered keyboard input, create a method of toggling the camera from following Sinbad behind his back, and a free roaming camera that you cam move with the mouse and " | ||
+ | // This will make the camera a child of the Sinbad Scene node, and thus all transformation made to Sinbad will be applied to the Camera as well. | ||
+ | _node-> | ||
+ | </ | ||
+ | // Add the inheritance of OIS:: | ||
+ | // the buffered input by providing you with the two virtual functions, keyPressed and keyReleased. | ||
+ | class MyFrameListener : public Ogre:: | ||
+ | //... | ||
+ | // Change the way the frameListener initializes the Keyboard object pointer in the constructor. | ||
+ | // And make " | ||
+ | MyFrameListener() : ... { | ||
+ | //... | ||
+ | // Notice the last parameter in the createInputObject() has changed from false to true!! | ||
+ | // That parameter indicates that we want to enable buffered keyboard input. | ||
+ | _Keyboard = static_cast< | ||
+ | _Keyboard-> | ||
+ | //... | ||
+ | } | ||
+ | | ||
+ | // Now implement those two virtual functions. | ||
+ | // The KeyEvent holds information on which key was pressed. | ||
+ | virtual bool keyPressed(const OIS:: | ||
+ | return true; | ||
+ | } | ||
+ | virtual bool keyReleased(const OIS:: | ||
+ | return true; | ||
+ | } | ||
+ | //... | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ===== When You Are Finished ===== | ||
+ | |||
+ | Upload your **commented source files** into Lab5 in MySchool (zip them up if more than one). The lab projects will not be graded, but their completion counts towards your participation grade. | ||
+ | |||
+ | |||
/var/www/cadia.ru.is/wiki/data/attic/public/t-gede-15-1/lab5.1424099418.txt.gz · Last modified: 2024/04/29 13:32 (external edit)