Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/items/Engine.h @ 7552

Last change on this file since 7552 was 7552, checked in by dafrick, 14 years ago

Resolving some TODOs and doing some additional cleanup. Almost done now…

  • Property svn:eol-style set to native
File size: 5.4 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#ifndef _Engine_H__
30#define _Engine_H__
31
32#include "OrxonoxPrereqs.h"
33
34#include "tools/interfaces/Tickable.h"
35#include "Item.h"
36
37#include "interfaces/PickupCarrier.h"
38
39namespace orxonox
40{
41    class _OrxonoxExport Engine : public Item, public Tickable, public PickupCarrier
42    {
43        public:
44            Engine(BaseObject* creator);
45            virtual ~Engine();
46
47            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
48            void setConfigValues();
49
50            virtual void tick(float dt);
51            virtual void changedActivity();
52
53            virtual void addToSpaceShip(SpaceShip* ship);
54            inline SpaceShip* getShip() const
55                { return this->ship_; }
56
57            inline void setBoostFactor(float factor)
58                { this->boostFactor_ = factor; }
59            inline float getBoostFactor() const
60                { return this->boostFactor_; }
61
62            inline void setSpeedFactor(float factor)
63                { this->speedFactor_ = factor; }
64            inline float getSpeedFactor() const
65                { return this->speedFactor_; }
66
67            inline void setMaxSpeedFront(float speed)
68                { this->maxSpeedFront_ = speed; }
69            inline void setMaxSpeedBack(float speed)
70                { this->maxSpeedBack_ = speed; }
71            inline void setMaxSpeedLeftRight(float speed)
72                { this->maxSpeedLeftRight_ = speed; }
73            inline void setMaxSpeedUpDown(float speed)
74                { this->maxSpeedUpDown_ = speed; }
75
76            inline float getMaxSpeedFront() const
77                { return this->maxSpeedFront_; }
78            inline float getMaxSpeedBack() const
79                { return this->maxSpeedBack_; }
80            inline float getMaxSpeedLeftRight() const
81                { return this->maxSpeedLeftRight_; }
82            inline float getMaxSpeedUpDown() const
83                { return this->maxSpeedUpDown_; }
84
85            inline void setAccelerationFront(float acceleration)
86                { this->accelerationFront_ = acceleration; }
87            inline void setAccelerationBrake(float acceleration)
88                { this->accelerationBrake_ = acceleration; }
89            inline void setAccelerationBack(float acceleration)
90                { this->accelerationBack_ = acceleration; }
91            inline void setAccelerationLeftRight(float acceleration)
92                { this->accelerationLeftRight_ = acceleration; }
93            inline void setAccelerationUpDown(float acceleration)
94                { this->accelerationUpDown_ = acceleration; }
95
96            inline float getAccelerationFront() const
97                { return this->accelerationFront_; }
98            inline float getAccelerationBrake() const
99                { return this->accelerationBrake_; }
100            inline float getAccelerationBack() const
101                { return this->accelerationBack_; }
102            inline float getAccelerationLeftRight() const
103                { return this->accelerationLeftRight_; }
104            inline float getAccelerationUpDown() const
105                { return this->accelerationUpDown_; }
106
107            inline float getSpeedAdd(void)
108                { return this->speedAdd_; }
109            inline float getSpeedMultiply(void)
110                { return this->speedMultiply_; }
111
112            virtual const Vector3& getDirection() const;
113
114            virtual const Vector3& getCarrierPosition(void) const;
115
116            inline void setSpeedAdd(float speedAdd)
117                { this->speedAdd_=speedAdd; }
118            inline void setSpeedMultiply(float speedMultiply)
119                { this->speedMultiply_=speedMultiply; }
120
121        protected:
122            virtual std::vector<PickupCarrier*>* getCarrierChildren(void) const
123                { return new std::vector<PickupCarrier*>(); }
124            virtual PickupCarrier* getCarrierParent(void) const;
125
126        private:
127            void registerVariables();
128            void networkcallback_shipID();
129
130            SpaceShip* ship_;
131            unsigned int shipID_;
132
133            float boostFactor_;
134            float speedFactor_;
135
136            float speedAdd_;
137            float speedMultiply_;
138
139            float maxSpeedFront_;
140            float maxSpeedBack_;
141            float maxSpeedLeftRight_;
142            float maxSpeedUpDown_;
143
144            float accelerationFront_;
145            float accelerationBrake_;
146            float accelerationBack_;
147            float accelerationLeftRight_;
148            float accelerationUpDown_;
149
150            Shader* boostBlur_;
151            float blurStrength_;
152    };
153}
154
155#endif /* _Engine_H__ */
Note: See TracBrowser for help on using the repository browser.