[670] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
[1056] | 3 | * > www.orxonox.net < |
---|
[670] | 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 | |
---|
[786] | 29 | #include "OrxonoxStableHeaders.h" |
---|
[1039] | 30 | #include "Explosion.h" |
---|
[784] | 31 | |
---|
[708] | 32 | #include <OgreParticleSystem.h> |
---|
| 33 | #include <OgreSceneManager.h> |
---|
| 34 | #include <OgreSceneNode.h> |
---|
| 35 | |
---|
[1032] | 36 | #include "core/CoreIncludes.h" |
---|
[1052] | 37 | #include "core/Executor.h" |
---|
| 38 | |
---|
[742] | 39 | #include "util/Math.h" |
---|
[1032] | 40 | #include "GraphicsEngine.h" |
---|
| 41 | #include "particle/ParticleInterface.h" |
---|
[646] | 42 | |
---|
| 43 | namespace orxonox |
---|
| 44 | { |
---|
| 45 | CreateFactory(Explosion); |
---|
| 46 | |
---|
[1293] | 47 | Explosion::Explosion(WorldEntity* owner) : |
---|
| 48 | lifetime_(0.4), |
---|
| 49 | particle_(0) |
---|
[646] | 50 | { |
---|
| 51 | RegisterObject(Explosion); |
---|
| 52 | |
---|
| 53 | if (owner) |
---|
| 54 | { |
---|
[1052] | 55 | this->destroyTimer_.setTimer(this->lifetime_, false, this, createExecutor(createFunctor(&Explosion::destroyObject))); |
---|
[646] | 56 | |
---|
| 57 | Vector3 position = owner->getNode()->getWorldPosition(); |
---|
| 58 | |
---|
[1032] | 59 | this->particle_ = new ParticleInterface(GraphicsEngine::getSingleton().getSceneManager(), "explosion" + this->getName(), "Orxonox/treibwerk"); |
---|
[646] | 60 | this->particle_->getParticleSystem()->setParameter("local_space", "true"); |
---|
| 61 | this->particle_->newEmitter(); |
---|
[664] | 62 | this->particle_->setPositionOfEmitter(0, Vector3::ZERO); |
---|
| 63 | this->particle_->setPositionOfEmitter(1, Vector3::ZERO); |
---|
| 64 | this->particle_->setColour(ColourValue(1.0, 0.8, 0.2)); |
---|
[646] | 65 | |
---|
[664] | 66 | this->setPosition(position); |
---|
| 67 | this->scale(2); |
---|
| 68 | |
---|
[646] | 69 | this->particle_->addToSceneNode(this->getNode()); |
---|
| 70 | } |
---|
| 71 | } |
---|
| 72 | |
---|
| 73 | Explosion::~Explosion() |
---|
| 74 | { |
---|
| 75 | if (this->particle_) |
---|
| 76 | { |
---|
| 77 | this->particle_->detachFromSceneNode(); |
---|
| 78 | delete this->particle_; |
---|
| 79 | } |
---|
| 80 | }; |
---|
[1421] | 81 | |
---|
[1425] | 82 | /*bool Explosion::create(){ |
---|
| 83 | if(!WorldEntity::create()) |
---|
| 84 | return false; |
---|
| 85 | classID=this->getIdentifier()->getNetworkID(); |
---|
| 86 | }*/ |
---|
[646] | 87 | |
---|
| 88 | void Explosion::destroyObject() |
---|
| 89 | { |
---|
| 90 | delete this; |
---|
| 91 | } |
---|
| 92 | } |
---|