[12281] | 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 | * Fabian 'x3n' Landau |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
| 30 | @file ParticleProjectile.h |
---|
| 31 | @brief Implementation of the ParticleProjectile class. |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | #include "BallProjectile.h" |
---|
[12368] | 35 | #include "../OrxoBlox/OrxoBlox.h" |
---|
[12371] | 36 | #include "../OrxoBlox/OrxoBloxStones.h" |
---|
[12368] | 37 | #include "gametypes/Gametype.h" |
---|
[12281] | 38 | |
---|
[12368] | 39 | |
---|
[12281] | 40 | #include <OgreParticleEmitter.h> |
---|
| 41 | #include "core/CoreIncludes.h" |
---|
| 42 | #include "tools/ParticleInterface.h" |
---|
| 43 | #include "Scene.h" |
---|
| 44 | #include "core/command/Executor.h" |
---|
| 45 | #include "util/Convert.h" |
---|
[12310] | 46 | #include <bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h> |
---|
| 47 | #include <bullet/LinearMath/btVector3.h> |
---|
[12281] | 48 | |
---|
| 49 | namespace orxonox |
---|
| 50 | { |
---|
| 51 | RegisterClass(BallProjectile); |
---|
| 52 | |
---|
| 53 | BallProjectile::BallProjectile(Context* context) : BillboardProjectile(context) |
---|
| 54 | { |
---|
| 55 | RegisterObject(BallProjectile); |
---|
| 56 | this->textureIndex_ = 1; |
---|
| 57 | this->setMass(0.1f); |
---|
| 58 | this->maxTextureIndex_ = 8; |
---|
| 59 | this->setDestroyAfterCollision(false); //I want the ball to bounce, not to be destroyed |
---|
[12371] | 60 | this->fieldWidth_ = 46; |
---|
| 61 | this->fieldHeight_ = 49; |
---|
[12368] | 62 | //this->orxoblox_ = this->getOrxoBlox(); |
---|
[12281] | 63 | |
---|
| 64 | //setEffect("Orxonox/sparks2"); |
---|
| 65 | } |
---|
| 66 | |
---|
| 67 | void BallProjectile::registerVariables() |
---|
| 68 | { |
---|
| 69 | registerVariable(this->materialBase_); |
---|
[12310] | 70 | registerVariable( this->speed_ ); |
---|
[12281] | 71 | } |
---|
| 72 | |
---|
| 73 | /** |
---|
| 74 | @brief |
---|
| 75 | Set the material. |
---|
| 76 | @param material |
---|
| 77 | The name of the material. Material names with 1 to 8 appended must exist. |
---|
| 78 | */ |
---|
| 79 | void BallProjectile::setMaterial(const std::string& material) |
---|
| 80 | { |
---|
| 81 | this->materialBase_ = material; |
---|
| 82 | |
---|
| 83 | BillboardProjectile::setMaterial(material + multi_cast<std::string>(this->textureIndex_)); |
---|
| 84 | } |
---|
| 85 | |
---|
| 86 | /** |
---|
| 87 | @brief |
---|
| 88 | Change the texture. |
---|
| 89 | */ |
---|
| 90 | void BallProjectile::changeTexture() |
---|
| 91 | { |
---|
| 92 | this->textureIndex_++; |
---|
| 93 | if (this->textureIndex_ > this->maxTextureIndex_) |
---|
| 94 | this->textureIndex_ = 1; |
---|
| 95 | |
---|
| 96 | this->setMaterial(this->materialBase_); |
---|
| 97 | } |
---|
| 98 | |
---|
[12310] | 99 | |
---|
| 100 | |
---|
[12281] | 101 | void BallProjectile::Bounce(WorldEntity* otherObject, btManifoldPoint& contactPoint, const btCollisionShape* cs) { |
---|
| 102 | |
---|
| 103 | Vector3 velocity = this->getVelocity(); |
---|
[12310] | 104 | Vector3 myPosition = otherObject->getPosition(); |
---|
| 105 | btVector3 positionOtherObject = contactPoint.getPositionWorldOnA(); |
---|
[12281] | 106 | |
---|
[12310] | 107 | int distance_X = positionOtherObject.getX() - myPosition.x; |
---|
| 108 | int distance_Z = positionOtherObject.getZ() - myPosition.z; |
---|
[12281] | 109 | |
---|
| 110 | if (distance_X < 0) |
---|
[12310] | 111 | distance_X = -distance_X; |
---|
[12281] | 112 | |
---|
| 113 | |
---|
[12310] | 114 | if (distance_Z < 0) |
---|
| 115 | distance_Z = -distance_Z; |
---|
[12281] | 116 | |
---|
[12376] | 117 | //orxout() << distance_X << endl; |
---|
| 118 | //orxout() << distance_Z << endl; |
---|
[12310] | 119 | |
---|
| 120 | if (distance_X < distance_Z) { |
---|
| 121 | velocity.z = -velocity.z; |
---|
[12376] | 122 | //orxout() << "z" << endl; |
---|
[12310] | 123 | } |
---|
| 124 | if (distance_Z < distance_X) { |
---|
[12281] | 125 | velocity.x = -velocity.x; |
---|
[12376] | 126 | //orxout() << "x" << endl; |
---|
[12310] | 127 | } |
---|
[12281] | 128 | else { |
---|
| 129 | velocity.x = -velocity.x; |
---|
[12310] | 130 | velocity.z = -velocity.z; |
---|
[12376] | 131 | //orxout() << "both" << endl; |
---|
[12281] | 132 | } |
---|
[12310] | 133 | this->setVelocity(velocity); |
---|
[12281] | 134 | //} |
---|
| 135 | } |
---|
| 136 | |
---|
| 137 | |
---|
| 138 | bool BallProjectile::processCollision(WorldEntity* otherObject, btManifoldPoint& contactPoint, const btCollisionShape* cs) |
---|
| 139 | { |
---|
| 140 | bool result = BasicProjectile::processCollision(otherObject, contactPoint, cs); |
---|
[12371] | 141 | if (result == true) { |
---|
| 142 | if (otherObject->isA(Class(OrxoBloxStones))) { |
---|
| 143 | Bounce(otherObject, contactPoint, cs); |
---|
[12378] | 144 | orxout() << "BOUNCED!" << endl; |
---|
[12371] | 145 | } |
---|
| 146 | } |
---|
[12281] | 147 | return result; |
---|
| 148 | } |
---|
[12310] | 149 | |
---|
| 150 | |
---|
[12368] | 151 | /* |
---|
| 152 | OrxoBlox* BallProjectile::getOrxoBlox() |
---|
| 153 | { |
---|
| 154 | if (this->getGametype() != nullptr && this->getGametype()->isA(Class(OrxoBlox))) |
---|
| 155 | { |
---|
| 156 | OrxoBlox* orxobloxGametype = orxonox_cast<OrxoBlox*>(this->getGametype()); |
---|
| 157 | return orxobloxGametype; |
---|
| 158 | } |
---|
| 159 | else orxout()<<"There is no Gametype for OrxoBlox! ask Anna"<< endl; |
---|
| 160 | return nullptr; |
---|
| 161 | } |
---|
| 162 | */ |
---|
[12310] | 163 | |
---|
| 164 | |
---|
| 165 | void BallProjectile::tick(float dt) |
---|
| 166 | { |
---|
| 167 | SUPER(BallProjectile, tick, dt); |
---|
| 168 | |
---|
[12368] | 169 | // Get the current position, velocity and acceleration of the ball. |
---|
[12310] | 170 | Vector3 position = this->getPosition(); |
---|
| 171 | Vector3 velocity = this->getVelocity(); |
---|
| 172 | Vector3 acceleration = this->getAcceleration(); |
---|
| 173 | |
---|
[12371] | 174 | velocity.y = 0; |
---|
| 175 | position.y = 0; |
---|
| 176 | |
---|
[12310] | 177 | // If the ball has gone over the top or bottom boundary of the playing field (i.e. the ball has hit the top or bottom delimiters). |
---|
[12371] | 178 | if (position.z > this->fieldHeight_ || position.z < -this->fieldHeight_) |
---|
[12310] | 179 | { |
---|
[12368] | 180 | |
---|
[12310] | 181 | velocity.z = -velocity.z; |
---|
[12368] | 182 | // And its position is set as to not overstep the boundary it has just crossed. Remember z axis is reverted!!! |
---|
[12371] | 183 | if (position.z > this->fieldHeight_){ |
---|
[12368] | 184 | // Set the ball to be exactly at the boundary. |
---|
[12371] | 185 | position.z = this-> fieldHeight_; |
---|
[12368] | 186 | |
---|
| 187 | //orxoblox_->LevelUp(); |
---|
[12310] | 188 | |
---|
[12368] | 189 | |
---|
| 190 | //this->setSpeed(0); // doesn't work here, why??; |
---|
| 191 | //Stopping ball |
---|
[12376] | 192 | //orxout() << "Ball stopped" << endl; |
---|
[12368] | 193 | velocity.x = 0; |
---|
| 194 | velocity.y = 0; |
---|
| 195 | velocity.z = 0; |
---|
| 196 | |
---|
| 197 | //ChatManager::message("Waiting for your input"); |
---|
| 198 | //Input new speed here: |
---|
| 199 | //ChatManager::message("Setting new speed"); |
---|
| 200 | |
---|
| 201 | //%%%%%%%%%%%% |
---|
| 202 | //MAUSPOSITION |
---|
| 203 | //%%%%%%%%%%%% |
---|
| 204 | //Reads current mouse position |
---|
| 205 | //TODO: read Mouse position on click! |
---|
| 206 | //int mousex = InputManager::getInstance().getMousePosition().first; |
---|
| 207 | //int mousey = InputManager::getInstance().getMousePosition().second; |
---|
| 208 | //ChatManager::message("Read mouse position"); |
---|
| 209 | //orxout() << "Mouseposition" << endl; |
---|
| 210 | //orxout() << mousex << endl; |
---|
| 211 | //ChatManager::message(mousex); |
---|
| 212 | //ChatManager::message("mousey"); |
---|
| 213 | //ChatManager::message(mousey); |
---|
| 214 | //Set new speed here!! |
---|
| 215 | velocity.x = rnd(-100,100); |
---|
| 216 | velocity.z = rnd(-50,-100); |
---|
| 217 | |
---|
| 218 | |
---|
| 219 | } |
---|
[12371] | 220 | if (position.z < -this->fieldHeight_){ |
---|
| 221 | position.z = -this->fieldHeight_; |
---|
[12368] | 222 | |
---|
| 223 | } |
---|
| 224 | |
---|
[12310] | 225 | this->fireEvent(); |
---|
| 226 | } |
---|
| 227 | |
---|
| 228 | //Ball hits the right or left wall and should bounce back. |
---|
| 229 | // If the ball has crossed the left or right boundary of the playing field. |
---|
[12371] | 230 | if (position.x > this->fieldWidth_ || position.x < -this->fieldWidth_) |
---|
[12310] | 231 | { |
---|
| 232 | //Ball hits the right Wall |
---|
[12371] | 233 | if (position.x > this->fieldWidth_) |
---|
[12310] | 234 | { |
---|
| 235 | // Set the ball to be exactly at the boundary. |
---|
[12371] | 236 | position.x = this->fieldWidth_; |
---|
[12310] | 237 | // Invert its velocity in x-direction (i.e. it bounces off). |
---|
| 238 | velocity.x = -velocity.x; |
---|
| 239 | this->fireEvent(); |
---|
| 240 | } |
---|
| 241 | |
---|
| 242 | //Ball hits the left wall |
---|
[12371] | 243 | else if (position.x < -this->fieldWidth_) |
---|
[12310] | 244 | { |
---|
| 245 | // Set the ball to be exactly at the boundary. |
---|
[12371] | 246 | position.x = -this->fieldWidth_; |
---|
[12310] | 247 | // Invert its velocity in x-direction (i.e. it bounces off). |
---|
| 248 | velocity.x = -velocity.x; |
---|
| 249 | this->fireEvent(); |
---|
| 250 | } |
---|
| 251 | } |
---|
| 252 | |
---|
| 253 | // Set the position, velocity and acceleration of the ball, if they have changed. |
---|
| 254 | if (acceleration != this->getAcceleration()) |
---|
| 255 | this->setAcceleration(acceleration); |
---|
| 256 | if (velocity != this->getVelocity()) |
---|
| 257 | this->setVelocity(velocity); |
---|
| 258 | if (position != this->getPosition()) |
---|
| 259 | this->setPosition(position); |
---|
[12368] | 260 | //this->Collides((this->orxoblox_->CheckForCollision(this))); |
---|
| 261 | |
---|
[12310] | 262 | } |
---|
| 263 | |
---|
| 264 | |
---|
| 265 | |
---|
| 266 | void BallProjectile::setSpeed(float speed) |
---|
| 267 | { |
---|
| 268 | if (speed != this->speed_) // If the speed changes |
---|
| 269 | { |
---|
| 270 | this->speed_ = speed; |
---|
| 271 | |
---|
| 272 | // Set the speed in the direction of the balls current velocity. |
---|
| 273 | Vector3 velocity = this->getVelocity(); |
---|
| 274 | if (velocity.x != 0) |
---|
| 275 | velocity.x = sgn(velocity.x) * this->speed_; |
---|
| 276 | else // If the balls current velocity is zero, the speed is set in a random direction. |
---|
| 277 | velocity.x = this->speed_ * sgn(rnd(-1,1)); |
---|
| 278 | |
---|
| 279 | this->setVelocity(velocity); |
---|
| 280 | } |
---|
| 281 | } |
---|
| 282 | |
---|
[12378] | 283 | void BallProjectile::destroyObject(void) |
---|
| 284 | { |
---|
| 285 | if(GameMode::isMaster()) { |
---|
| 286 | } |
---|
| 287 | } |
---|
[12310] | 288 | |
---|
[12378] | 289 | |
---|
| 290 | |
---|
[12281] | 291 | } |
---|