| 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 "AutonomousDrone.h" | 
|---|
| 30 |  | 
|---|
| 31 | #include "core/CoreIncludes.h" | 
|---|
| 32 | #include "BulletDynamics/Dynamics/btRigidBody.h" | 
|---|
| 33 |  | 
|---|
| 34 | namespace orxonox | 
|---|
| 35 | { | 
|---|
| 36 |     //TODO: Put your code in here: | 
|---|
| 37 |     // Create the factory for the drone. | 
|---|
| 38 |  | 
|---|
| 39 |     /** | 
|---|
| 40 |     @brief | 
|---|
| 41 |         Constructor. Registers the object and initializes some default values. | 
|---|
| 42 |     @param creator | 
|---|
| 43 |         The creator of this object. | 
|---|
| 44 |     */ | 
|---|
| 45 |  | 
|---|
| 46 |         RegisterClass(AutonomousDrone); | 
|---|
| 47 |     AutonomousDrone::AutonomousDrone(Context* context) : ControllableEntity(context) | 
|---|
| 48 |     { | 
|---|
| 49 |         //TODO: Put your code in here: | 
|---|
| 50 |         // Register the drone class to the core. | 
|---|
| 51 |  | 
|---|
| 52 |         RegisterObject(AutonomousDrone); | 
|---|
| 53 |         this->myController_ = NULL; | 
|---|
| 54 |  | 
|---|
| 55 |         this->localLinearAcceleration_.setValue(0, 0, 0); | 
|---|
| 56 |         this->localAngularAcceleration_.setValue(0, 0, 0); | 
|---|
| 57 |         this->primaryThrust_  = 100; | 
|---|
| 58 |         this->auxiliaryThrust_ = 100; | 
|---|
| 59 |         this->rotationThrust_ = 10; | 
|---|
| 60 |  | 
|---|
| 61 |         this->setCollisionType(WorldEntity::Dynamic); | 
|---|
| 62 |  | 
|---|
| 63 |         //this->myController_ = new AutonomousDroneController(this); // Creates a new controller and passes our this pointer to it as creator. | 
|---|
| 64 |     } | 
|---|
| 65 |  | 
|---|
| 66 |     /** | 
|---|
| 67 |     @brief | 
|---|
| 68 |         Destructor. Destroys controller, if present. | 
|---|
| 69 |     */ | 
|---|
| 70 |     AutonomousDrone::~AutonomousDrone() | 
|---|
| 71 |     { | 
|---|
| 72 |         // Deletes the controller if the object was initialized and the pointer to the controller is not NULL. | 
|---|
| 73 |         if( this->isInitialized() && this->myController_ != NULL ) | 
|---|
| 74 |             delete this->myController_; | 
|---|
| 75 |     } | 
|---|
| 76 |  | 
|---|
| 77 |     /** | 
|---|
| 78 |     @brief | 
|---|
| 79 |         Method for creating a AutonomousDrone through XML. | 
|---|
| 80 |     */ | 
|---|
| 81 |     void AutonomousDrone::XMLPort(Element& xmlelement, XMLPort::Mode mode) | 
|---|
| 82 |     { | 
|---|
| 83 |         // This calls the XMLPort function of the parent class | 
|---|
| 84 |         SUPER(AutonomousDrone, XMLPort, xmlelement, mode); | 
|---|
| 85 |  | 
|---|
| 86 |         XMLPortParam(AutonomousDrone, "primaryThrust", setPrimaryThrust, getPrimaryThrust, xmlelement, mode); | 
|---|
| 87 |         XMLPortParam(AutonomousDrone, "auxiliaryThrust", setAuxiliaryThrust, getAuxiliaryThrust, xmlelement, mode); | 
|---|
| 88 |         XMLPortParam(AutonomousDrone, "rotationThrust", setRotationThrust, getRotationThrust, xmlelement, mode); | 
|---|
| 89 |         //TODO: Put your code in here: | 
|---|
| 90 |         // Make sure you add the variables auxiliaryThrust_ and rotationThrust_ to XMLPort. | 
|---|
| 91 |         // Variables can be added by the following command | 
|---|
| 92 |         // XMLPortParam(Classname, "xml-attribute-name (i.e. variablename)", setFunctionName, getFunctionName, xmlelement, mode); | 
|---|
| 93 |         // Also make sure that you also create the get- and set-functions in AutonomousDrone.h. As you can see, the get- and set-functions for the variable primaryThrust_ has already been specified there, so you can get your inspiration from there. | 
|---|
| 94 |          | 
|---|
| 95 |  | 
|---|
| 96 |     } | 
|---|
| 97 |  | 
|---|
| 98 |     /** | 
|---|
| 99 |     @brief | 
|---|
| 100 |         Defines which actions the AutonomousDrone has to take in each tick. | 
|---|
| 101 |     @param dt | 
|---|
| 102 |         The length of the tick. | 
|---|
| 103 |     */ | 
|---|
| 104 |     void AutonomousDrone::tick(float dt) | 
|---|
| 105 |     { | 
|---|
| 106 |         SUPER(AutonomousDrone, tick, dt); | 
|---|
| 107 |  | 
|---|
| 108 |         this->localLinearAcceleration_.setX(this->localLinearAcceleration_.x() * getMass() * this->auxiliaryThrust_); | 
|---|
| 109 |         this->localLinearAcceleration_.setY(this->localLinearAcceleration_.y() * getMass() * this->auxiliaryThrust_); | 
|---|
| 110 |         if (this->localLinearAcceleration_.z() > 0) | 
|---|
| 111 |             this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() * getMass() * this->auxiliaryThrust_); | 
|---|
| 112 |         else | 
|---|
| 113 |             this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() * getMass() * this->primaryThrust_); | 
|---|
| 114 |         this->physicalBody_->applyCentralForce(physicalBody_->getWorldTransform().getBasis() * this->localLinearAcceleration_); | 
|---|
| 115 |         this->localLinearAcceleration_.setValue(0, 0, 0); | 
|---|
| 116 |  | 
|---|
| 117 |         this->localAngularAcceleration_ *= this->getLocalInertia() * this->rotationThrust_; | 
|---|
| 118 |         this->physicalBody_->applyTorque(physicalBody_->getWorldTransform().getBasis() * this->localAngularAcceleration_); | 
|---|
| 119 |         this->localAngularAcceleration_.setValue(0, 0, 0); | 
|---|
| 120 |     } | 
|---|
| 121 |  | 
|---|
| 122 |     /** | 
|---|
| 123 |     @brief | 
|---|
| 124 |         Moves the AutonomousDrone in the negative z-direction (Front/Back) by an amount specified by the first component of the input 2-dim vector. | 
|---|
| 125 |     @param value | 
|---|
| 126 |         The vector determining the amount of the movement. | 
|---|
| 127 |     */ | 
|---|
| 128 |     void AutonomousDrone::moveFrontBack(const Vector2& value) | 
|---|
| 129 |     { | 
|---|
| 130 |         this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() - value.x); | 
|---|
| 131 |     } | 
|---|
| 132 |  | 
|---|
| 133 |     /** | 
|---|
| 134 |     @brief | 
|---|
| 135 |         Moves the AutonomousDrone in the x-direction (Right/Left) by an amount specified by the first component of the input 2-dim vector. | 
|---|
| 136 |     @param value | 
|---|
| 137 |         The vector determining the amount of the movement. | 
|---|
| 138 |     */ | 
|---|
| 139 |     void AutonomousDrone::moveRightLeft(const Vector2& value) | 
|---|
| 140 |     { | 
|---|
| 141 |         this->localLinearAcceleration_.setX(this->localLinearAcceleration_.x() + value.x); | 
|---|
| 142 |     } | 
|---|
| 143 |  | 
|---|
| 144 |     /** | 
|---|
| 145 |     @brief | 
|---|
| 146 |         Moves the AutonomousDrone in the y-direction (Up/Down) by an amount specified by the first component of the input 2-dim vector. | 
|---|
| 147 |     @param value | 
|---|
| 148 |         The vector determining the amount of the movement. | 
|---|
| 149 |     */ | 
|---|
| 150 |     void AutonomousDrone::moveUpDown(const Vector2& value) | 
|---|
| 151 |     { | 
|---|
| 152 |         this->localLinearAcceleration_.setY(this->localLinearAcceleration_.y() + value.x); | 
|---|
| 153 |     } | 
|---|
| 154 |  | 
|---|
| 155 |     /** | 
|---|
| 156 |     @brief | 
|---|
| 157 |         Rotates the AutonomousDrone around the y-axis by the amount specified by the first component of the input 2-dim vector. | 
|---|
| 158 |     @param value | 
|---|
| 159 |         The vector determining the amount of the angular movement. | 
|---|
| 160 |     */ | 
|---|
| 161 |     void AutonomousDrone::rotateYaw(const Vector2& value) | 
|---|
| 162 |     { | 
|---|
| 163 |         this->localAngularAcceleration_.setY(this->localAngularAcceleration_.y() - value.x); | 
|---|
| 164 |     } | 
|---|
| 165 |  | 
|---|
| 166 |     /** | 
|---|
| 167 |     @brief | 
|---|
| 168 |         Rotates the AutonomousDrone around the x-axis by the amount specified by the first component of the input 2-dim vector. | 
|---|
| 169 |     @param value | 
|---|
| 170 |         The vector determining the amount of the angular movement. | 
|---|
| 171 |     */ | 
|---|
| 172 |     void AutonomousDrone::rotatePitch(const Vector2& value) | 
|---|
| 173 |     { | 
|---|
| 174 |         this->localAngularAcceleration_.setX(this->localAngularAcceleration_.x() + value.x); | 
|---|
| 175 |     } | 
|---|
| 176 |  | 
|---|
| 177 |     /** | 
|---|
| 178 |     @brief | 
|---|
| 179 |         Rotates the AutonomousDrone around the z-axis by the amount specified by the first component of the input 2-dim vector. | 
|---|
| 180 |     @param value | 
|---|
| 181 |         The vector determining the amount of the angular movement. | 
|---|
| 182 |     */ | 
|---|
| 183 |     void AutonomousDrone::rotateRoll(const Vector2& value) | 
|---|
| 184 |     { | 
|---|
| 185 |         this->localAngularAcceleration_.setZ(this->localAngularAcceleration_.z() + value.x); | 
|---|
| 186 |     } | 
|---|
| 187 |  | 
|---|
| 188 | } | 
|---|