Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/objects/weaponSystem/projectiles/Projectile.cc @ 2100

Last change on this file since 2100 was 2100, checked in by landauf, 16 years ago

did some small adjustments in Projectile.cc although it's only a sample

  • Property svn:eol-style set to native
File size: 4.0 KB
Line 
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#include "OrxonoxStableHeaders.h"
30#include "Projectile.h"
31
32#include <OgreBillboard.h>
33
34#include "core/CoreIncludes.h"
35#include "core/Executor.h"
36#include "core/ConfigValueIncludes.h"
37#include "core/Iterator.h"
38#include "tools/ParticleInterface.h"
39
40#include "objects/worldentities/Model.h"
41#include "objects/worldentities/ParticleSpawner.h"
42#include "Settings.h"
43
44namespace orxonox
45{
46    float Projectile::speed_s = 5000;
47
48    Projectile::Projectile(BaseObject* creator, Weapon* owner) : MovableEntity(creator), owner_(owner)
49    {
50        RegisterObject(Projectile);
51
52        this->setConfigValues();
53        this->explosionTemplateName_ = "Orxonox/explosion3";
54        this->smokeTemplateName_ = "Orxonox/smoke4";
55
56        this->setStatic(false);
57        this->translate(Vector3(55, 0, 0), Ogre::Node::TS_LOCAL);
58
59        if (this->owner_)
60        {
61            this->setOrientation(this->owner_->getOrientation());
62            this->setPosition(this->owner_->getPosition());
63            this->setVelocity(this->owner_->getInitialDir() * this->speed_);
64        }
65
66        if(!orxonox::Settings::isClient()) //only if not on client
67          this->destroyTimer_.setTimer(this->lifetime_, false, this, createExecutor(createFunctor(&Projectile::destroyObject)));
68    }
69
70    Projectile::~Projectile()
71    {
72    }
73
74    void Projectile::setConfigValues()
75    {
76        SetConfigValue(damage_, 15.0).description("The damage caused by the projectile");
77        SetConfigValue(lifetime_, 4.0).description("The time in seconds a projectile stays alive");
78        SetConfigValue(speed_, 5000.0).description("The speed of a projectile in units per second").callback(this, &Projectile::speedChanged);
79    }
80
81    void Projectile::speedChanged()
82    {
83        Projectile::speed_s = this->speed_;
84        if (this->owner_)
85            this->setVelocity(this->owner_->getInitialDir() * this->speed_);
86    }
87
88    void Projectile::tick(float dt)
89    {
90        SUPER(Projectile, tick, dt);
91
92        if (!this->isActive())
93            return;
94
95        float radius;
96        for (ObjectList<Model>::iterator it = ObjectList<Model>::begin(); it; ++it)
97        {
98//            if ((*it) != this->owner_)
99            {
100                radius = it->getScale3D().x * 3.0;
101
102                if (this->getPosition().squaredDistance(it->getPosition()) <= (radius*radius))
103                {
104                    // hit
105                    ParticleSpawner* explosion = new ParticleSpawner(this->explosionTemplateName_, LODParticle::low, 2.0);
106                    explosion->setPosition(this->getPosition());
107                    explosion->create();
108                    ParticleSpawner* smoke = new ParticleSpawner(this->smokeTemplateName_, LODParticle::normal, 2.0, 0.0);
109                    smoke->setPosition(this->getPosition());
110//                    smoke->getParticleInterface()->setSpeedFactor(3.0);
111                    smoke->create();
112                    delete this;
113                    return;
114                }
115            }
116        }
117    }
118
119    void Projectile::destroyObject()
120    {
121        delete this;
122    }
123
124    bool Projectile::create(){
125      return WorldEntity::create();
126    }
127}
Note: See TracBrowser for help on using the repository browser.