public:t-gede-14-1:lab5
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:lab5 [2014/02/16 11:56] – [Lab Project] marino | public:t-gede-14-1:lab5 [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 13: | Line 13: | ||
===== Preparation ===== | ===== Preparation ===== | ||
- | No special preparation is required - preparing the joypad is explained in the project steps below. | + | 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! | **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 22: | Line 24: | ||
- **Create a New Project** Create a new empty project called " | - **Create a New Project** Create a new empty project called " | ||
- | - <box green 100% | **2. half a Bonus pt :),** lets reuse the blasted resources and plugins files. !> | + | - <box green 100% | **2. An early Bonus pt :),** Lets reuse the blasted resources and plugins files. !> |
- **Create a folder** somewhere in your filesystem to hold the '' | - **Create a folder** somewhere in your filesystem to hold the '' | ||
- **Change the following lines in your code:** dont forget to make the backslashes forward slashes, and repeating them for the sake of c++ strings escape characters.< | - **Change the following lines in your code:** dont forget to make the backslashes forward slashes, and repeating them for the sake of c++ strings escape characters.< | ||
Line 39: | Line 41: | ||
</ | </ | ||
- **From the previous lab** You created a folder Models, and Materials if you did the bonus points. In the '' | - **From the previous lab** You created a folder Models, and Materials if you did the bonus points. In the '' | ||
- | - Now whenever you modify the resources or add files or folders, do that in the folder you just created and all your lab assignments will reuse the configuration files. | + | |
</ | </ | ||
- **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' | ||
Line 73: | Line 75: | ||
</ | </ | ||
- **Move Character with POV** Now you want to give players the option to move the character by pressing one of the directions on the POV (point of view) digital button on the left of the joypad. You should still retain the keyboard control of the movement. First explore the values you get when you press the POV button. <code cpp> | - **Move Character with POV** Now you want to give players the option to move the character by pressing one of the directions on the POV (point of view) digital button on the left of the joypad. You should still retain the keyboard control of the movement. First explore the values you get when you press the POV button. <code cpp> | ||
+ | // Create a member variable in the MyFrameListener class: int _povState | ||
+ | |||
bool MyFrameListener:: | bool MyFrameListener:: | ||
- | int direction | + | _povState |
- | std::cout << | + | std::cout << |
return true; | return true; | ||
} | } | ||
- | </ | + | </ |
- | _WalkingNorth = false; | + | if (_Keyboard-> |
- | _WalkingSouth = false; | + | SinbadTranslate += Ogre::Vector3(0, 0, -1); |
- | _WalkingEast = false; | + | walked |
- | _WalkingWest = false; | + | _rotation = 3.14f; |
- | switch(direction) { | + | } |
- | case | + | if (_Keyboard-> |
- | _WalkingSouth | + | SinbadTranslate += Ogre::Vector3(0, 0, 1); |
- | break; | + | walked |
- | case | + | _rotation = 0.0f; |
- | _WalkingNorth | + | } |
- | break; | + | if (_Keyboard-> |
- | case | + | SinbadTranslate += Ogre:: |
- | _WalkingWest | + | walked |
- | break; | + | _rotation = -1.57f; |
- | case | + | } |
- | _WalkingEast | + | if (_Keyboard-> |
- | break; | + | SinbadTranslate += Ogre:: |
- | case OIS:: | + | walked = true; |
- | break; | + | _rotation = 1.57f; |
- | } | + | } |
- | </ | + | </ |
- | | + | if( _Joystick ) |
- | </ | + | _Joystick-> |
- | if( _Joystick ) | + | |
- | _Joystick-> | + | |
</ | </ | ||
- | - **Rotate Camera with Analog Stick** Now you should try to rotate (or swivel) the camera around the character with the right analog stick on the joypad. You first need to create a new member variable in your MyFrameListener class that stores the current camera angle (e.g. '' | + | - **Rotate Camera with Analog Stick** Now you should try to rotate (or swivel) the camera around the character with the right analog stick on the joypad. You first need to create a new member variable in your MyFrameListener class that stores the current camera angle (e.g. '' |
- | int value = e.state.mAxes[axis].abs; | + | int value = e.state.mAxes[axis].abs; |
- | switch(axis) { | + | switch(axis) { |
- | case 0: | + | case 1: |
- | std::cout << "0:" << value << " | + | std::cout << "1:" << value << " |
- | break; | + | break; |
- | } | + | } |
- | </ | + | </ |
- | | + | _camangle = Ogre:: |
- | </ | + | </ |
- | _Cam-> | + | _Cam-> |
- | _Cam-> | + | _Cam-> |
</ | </ | ||
- | - **OPTIONAL: Map more axes and buttons** Add more controls | + | |
+ | ====== Bonus points ====== | ||
+ | <box green 100% | Bonus points> | ||
+ | - **Make the input a little bit more useful :)** Either make your own modifications | ||
+ | - **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** | ||
+ | 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 | ||
+ | // This will make the camera | ||
+ | _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 | ||
+ | // That parameter indicates that we want to enable buffered keyboard input. | ||
+ | _Keyboard = static_cast< | ||
+ | _Keyboard-> | ||
+ | //... | ||
+ | } | ||
+ | |||
+ | // Now implement those two virtual functions. | ||
+ | virtual bool keyPressed(const OIS:: | ||
+ | return true; | ||
+ | } | ||
+ | virtual bool keyReleased(const OIS:: | ||
+ | return true; | ||
+ | } | ||
+ | // | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | </ | ||
Line 125: | Line 250: | ||
===== When You Are Finished ===== | ===== When You Are Finished ===== | ||
- | Upload your **commented source files** into Lab4 in MySchool (zip them up if more than one). The lab projects will not be graded, but their completion counts towards your participation grade. | + | 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-14-1/lab5.1392551805.txt.gz · Last modified: 2024/04/29 13:32 (external edit)