Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/orxonox/objects/worldentities/pawns/SpaceShip.cc @ 2485

Last change on this file since 2485 was 2485, checked in by landauf, 15 years ago

Merged objecthierarchy2 into presentation branch

Couln't merge 2 lines in Gamestate.cc and a whole block of code in GSDedicated.cc (it seems like oli implemented in both branches something like a network-tick-limiter but with different approaches)

Not yet tested in network mode and with bots
The SpaceShips movement is also not yet fully adopted to the new physics (see Engine class)

  • Property svn:eol-style set to native
File size: 7.2 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 "SpaceShip.h"
31
32#include "BulletDynamics/Dynamics/btRigidBody.h"
33
34#include "util/Math.h"
35#include "util/Exception.h"
36#include "core/CoreIncludes.h"
37#include "core/ConfigValueIncludes.h"
38#include "core/Template.h"
39#include "core/XMLPort.h"
40#include "objects/items/Engine.h"
41
42namespace orxonox
43{
44    const float orientationGain = 100;
45    CreateFactory(SpaceShip);
46
47    SpaceShip::SpaceShip(BaseObject* creator) : Pawn(creator)
48    {
49        RegisterObject(SpaceShip);
50
51        this->primaryThrust_  = 100;
52        this->auxilaryThrust_ =  30;
53        this->rotationThrust_ =  10;
54
55        this->localLinearAcceleration_.setValue(0, 0, 0);
56        this->localAngularAcceleration_.setValue(0, 0, 0);
57        this->bBoost_ = false;
58        this->steering_ = Vector3::ZERO;
59        this->engine_ = 0;
60
61
62        this->bInvertYAxis_ = false;
63
64        this->setDestroyWhenPlayerLeft(true);
65
66        // SpaceShip is always a physical object per default
67        // Be aware of this call: The collision type legality check will not reach derived classes!
68        this->setCollisionType(WorldEntity::Dynamic);
69        // Get notification about collisions
70        this->enableCollisionCallback();
71
72        this->setConfigValues();
73        this->registerVariables();
74    }
75
76    SpaceShip::~SpaceShip()
77    {
78        if (this->isInitialized() && this->engine_)
79            delete this->engine_;
80    }
81
82    void SpaceShip::XMLPort(Element& xmlelement, XMLPort::Mode mode)
83    {
84        SUPER(SpaceShip, XMLPort, xmlelement, mode);
85
86        XMLPortParam(SpaceShip, "engine",            setEngineTemplate,    getEngineTemplate,    xmlelement, mode);
87        XMLPortParamVariable(SpaceShip, "primaryThrust",  primaryThrust_,  xmlelement, mode);
88        XMLPortParamVariable(SpaceShip, "auxilaryThrust", auxilaryThrust_, xmlelement, mode);
89        XMLPortParamVariable(SpaceShip, "rotationThrust", rotationThrust_, xmlelement, mode);
90    }
91
92    void SpaceShip::registerVariables()
93    {
94        registerVariable(this->primaryThrust_,  variableDirection::toclient);
95        registerVariable(this->auxilaryThrust_, variableDirection::toclient);
96        registerVariable(this->rotationThrust_, variableDirection::toclient);
97    }
98
99    void SpaceShip::setConfigValues()
100    {
101        SetConfigValue(bInvertYAxis_, false).description("Set this to true for joystick-like mouse behaviour (mouse up = ship down).");
102    }
103
104    bool SpaceShip::isCollisionTypeLegal(WorldEntity::CollisionType type) const
105    {
106        if (type != WorldEntity::Dynamic)
107        {
108            CCOUT(1) << "Error: Cannot tell a SpaceShip not to be dynamic! Ignoring." << std::endl;
109            assert(false); // Only in debug mode
110            return false;
111        }
112        else
113            return true;
114    }
115
116    void SpaceShip::tick(float dt)
117    {
118        SUPER(SpaceShip, tick, dt);
119
120        if (this->hasLocalController())
121        {
122            if (!this->isInMouseLook())
123            {
124                this->localLinearAcceleration_.setX(this->localLinearAcceleration_.x() * getMass() * this->auxilaryThrust_);
125                this->localLinearAcceleration_.setY(this->localLinearAcceleration_.y() * getMass() * this->auxilaryThrust_);
126                if (this->localLinearAcceleration_.z() > 0)
127                    this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() * getMass() * this->auxilaryThrust_);
128                else
129                    this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() * getMass() * this->primaryThrust_);
130                this->physicalBody_->applyCentralForce(physicalBody_->getWorldTransform().getBasis() * this->localLinearAcceleration_);
131                this->localLinearAcceleration_.setValue(0, 0, 0);
132            }
133
134            this->localAngularAcceleration_ *= this->getLocalInertia() * this->rotationThrust_;
135            this->physicalBody_->applyTorque(physicalBody_->getWorldTransform().getBasis() * this->localAngularAcceleration_);
136            this->localAngularAcceleration_.setValue(0, 0, 0);
137        }
138    }
139
140    void SpaceShip::moveFrontBack(const Vector2& value)
141    {
142        this->localLinearAcceleration_.setZ(this->localLinearAcceleration_.z() - value.x);
143        this->steering_.z = -value.x;
144    }
145
146    void SpaceShip::moveRightLeft(const Vector2& value)
147    {
148        this->localLinearAcceleration_.setX(this->localLinearAcceleration_.x() + value.x);
149        this->steering_.x = value.x;
150    }
151
152    void SpaceShip::moveUpDown(const Vector2& value)
153    {
154        this->localLinearAcceleration_.setY(this->localLinearAcceleration_.y() + value.x);
155        this->steering_.y = value.x;
156    }
157
158    void SpaceShip::rotateYaw(const Vector2& value)
159    {
160        this->localAngularAcceleration_.setY(this->localAngularAcceleration_.y() + value.x);
161
162        Pawn::rotateYaw(value);
163    }
164
165    void SpaceShip::rotatePitch(const Vector2& value)
166    {
167        this->localAngularAcceleration_.setX(this->localAngularAcceleration_.x() + value.x);
168
169        Pawn::rotatePitch(value);
170    }
171
172    void SpaceShip::rotateRoll(const Vector2& value)
173    {
174        this->localAngularAcceleration_.setZ(this->localAngularAcceleration_.z() + value.x);
175
176        Pawn::rotateRoll(value);
177    }
178
179    void SpaceShip::fire()
180    {
181    }
182
183    void SpaceShip::boost()
184    {
185        this->bBoost_ = true;
186    }
187
188    void SpaceShip::loadEngineTemplate()
189    {
190        if (this->enginetemplate_ != "")
191        {
192            Template* temp = Template::getTemplate(this->enginetemplate_);
193
194            if (temp)
195            {
196                Identifier* identifier = temp->getBaseclassIdentifier();
197
198                if (identifier)
199                {
200                    BaseObject* object = identifier->fabricate(this);
201                    this->engine_ = dynamic_cast<Engine*>(object);
202
203                    if (this->engine_)
204                    {
205                        this->engine_->addTemplate(temp);
206                        this->engine_->addToSpaceShip(this);
207                    }
208                    else
209                    {
210                        delete object;
211                    }
212                }
213            }
214        }
215    }
216
217    void SpaceShip::setEngine(Engine* engine)
218    {
219        this->engine_ = engine;
220        if (engine && engine->getShip() != this)
221            engine->addToSpaceShip(this);
222    }
223}
Note: See TracBrowser for help on using the repository browser.