[11134] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Oli Scheuss |
---|
| 24 | * Co-authors: |
---|
| 25 | * Damian 'Mozork' Frick |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | #include "AutonomousDroneController.h" |
---|
| 30 | |
---|
| 31 | #include "worldentities/AutonomousDrone.h" |
---|
| 32 | #include "util/Math.h" |
---|
| 33 | |
---|
| 34 | namespace orxonox |
---|
| 35 | { |
---|
[11136] | 36 | //TODO: Put your code in here: |
---|
| 37 | // Create the factory for the drone controller. |
---|
[11134] | 38 | |
---|
| 39 | /** |
---|
| 40 | @brief |
---|
| 41 | Constructor. |
---|
| 42 | @param context |
---|
| 43 | The context of this object. |
---|
| 44 | */ |
---|
| 45 | AutonomousDroneController::AutonomousDroneController(Context* context) : Controller(context) |
---|
| 46 | { |
---|
| 47 | //TODO: Place your code here: |
---|
[11136] | 48 | // Make sure to register the object and create the factory. |
---|
[11134] | 49 | |
---|
| 50 | // This checks that our context really is a drone |
---|
| 51 | // and saves the pointer to the drone for the controlling commands |
---|
| 52 | /* NOTE from Sandro: This is currently broken */ |
---|
| 53 | //AutonomousDrone* drone = dynamic_cast<AutonomousDrone*>(context); |
---|
[11136] | 54 | //assert(drone != nullptr); |
---|
[11134] | 55 | //this->setControllableEntity(drone); |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | /** |
---|
| 59 | @brief |
---|
| 60 | Destructor. |
---|
| 61 | */ |
---|
| 62 | AutonomousDroneController::~AutonomousDroneController() |
---|
| 63 | { |
---|
| 64 | |
---|
| 65 | } |
---|
| 66 | |
---|
| 67 | /** |
---|
| 68 | @brief |
---|
| 69 | The controlling happens here. This method defines what the controller has to do each tick. |
---|
| 70 | @param dt |
---|
| 71 | The duration of the tick. |
---|
| 72 | */ |
---|
| 73 | void AutonomousDroneController::tick(float dt) |
---|
| 74 | { |
---|
| 75 | /* NOTE: Ugly hack by Sandro to make the tutorial work for the moment. |
---|
| 76 | * This will be reverted once the framework update is complete |
---|
| 77 | */ |
---|
| 78 | //AutonomousDrone *myDrone = static_cast<AutonomousDrone*>(this->getControllableEntity()); |
---|
[11136] | 79 | ObjectList<AutonomousDrone> objectList; |
---|
| 80 | ObjectList<AutonomousDrone>::iterator it = objectList.begin(); |
---|
| 81 | AutonomousDrone* myDrone = *it; |
---|
[11134] | 82 | |
---|
[11136] | 83 | if (myDrone != nullptr) |
---|
| 84 | { |
---|
| 85 | //TODO: Place your code here: |
---|
| 86 | // Steering commands |
---|
| 87 | // You can use the commands provided by the AutonomousDrone to steer it: |
---|
| 88 | // - moveFrontBack, moveRightLeft, moveUpDown |
---|
| 89 | // - rotatePitch, rotateYaw, rotateRoll |
---|
| 90 | // You will see, that the AutonomousDrone has two variants for each of these commands, one with a vector as input and one with just a float. Use the one with just the float as input. |
---|
| 91 | // Apply them to myDrone (e.g. myDrone->rotateYaw(..) ) |
---|
| 92 | // dt is the time passed since the last call of the tick function in seconds. |
---|
[11134] | 93 | |
---|
[11136] | 94 | |
---|
| 95 | |
---|
| 96 | } |
---|
[11134] | 97 | } |
---|
| 98 | } |
---|