Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/objects/SpaceShip.h @ 1399

Last change on this file since 1399 was 1399, checked in by FelixSchulthess, 16 years ago

enhanced navigation with a target designation cursor

File size: 4.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 *      Benjamin Knecht
26 *
27 */
28
29#ifndef _SpaceShip_H__
30#define _SpaceShip_H__
31#include <string>
32#include "OrxonoxPrereqs.h"
33#include <OgrePrerequisites.h>
34
35#include "util/Math.h"
36#include "core/InputInterfaces.h"
37#include "Camera.h"
38#include "Model.h"
39#include "../tools/BillboardSet.h"
40
41namespace orxonox
42{
43    class _OrxonoxExport SpaceShip : public Model, public MouseHandler
44    {
45        public:
46
47            static SpaceShip *getLocalShip();
48
49            SpaceShip();
50            ~SpaceShip();
51            bool create();
52            void registerAllVariables();
53            void init();
54            void setConfigValues();
55            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
56            virtual void tick(float dt);
57
58            void setCamera(const std::string& camera = "");
59            void setMaxSpeed(float value);
60            void setMaxSideAndBackSpeed(float value);
61            void setMaxRotation(float value);
62            void setTransAcc(float value);
63            void setRotAcc(float value);
64            void setTransDamp(float value);
65            void setRotDamp(float value);
66
67            void getFocus();
68            Camera* getCamera();
69            static SpaceShip* instance_s;
70            static Vector3 getSPosition();
71            static Quaternion getSOrientation();
72            static std::string whereAmI();
73            static void setMaxSpeedTest(float value)
74                { SpaceShip::instance_s->setMaxSpeed(value); }
75
76            void mouseButtonPressed (MouseButton::Enum id);
77            void mouseButtonReleased(MouseButton::Enum id);
78            void mouseButtonHeld    (MouseButton::Enum id) { }
79            void mouseMoved         (IntVector2 abs, IntVector2 rel, IntVector2 clippingSize);
80            void mouseScrolled      (int abs, int rel) { }
81
82            float getMaxSpeed();
83
84        private:
85            void createCamera();
86
87            Vector3 testvector_;
88            bool bInvertYAxis_;
89            bool setMouseEventCallback_;
90            bool bLMousePressed_;
91            bool bRMousePressed_;
92
93            Ogre::SceneNode* camNode_;
94            Camera* cam_;
95            std::string camName_;
96
97
98            ParticleInterface* tt_;
99
100            BillboardSet redBillboard_;
101            BillboardSet greenBillboard_;
102            Ogre::SceneNode* redNode_;
103            Ogre::SceneNode* greenNode_;
104            float blinkTime_;
105
106            BillboardSet crosshairNear_;
107            BillboardSet crosshairFar_;
108            Ogre::SceneNode* chNearNode_;
109            Ogre::SceneNode* chFarNode_;
110
111            float timeToReload_;
112            float reloadTime_;
113
114            float maxSideAndBackSpeed_;
115            float maxSpeed_;
116            float maxRotation_;
117            float translationAcceleration_;
118            float rotationAcceleration_;
119            float translationDamping_;
120            float rotationDamping_;
121
122            Radian maxRotationRadian_;
123            Radian rotationAccelerationRadian_;
124            Radian rotationDampingRadian_;
125            Radian zeroRadian_;
126            Radian mouseXRotation_;
127            Radian mouseYRotation_;
128
129            float mouseX_;
130            float mouseY_;
131
132            float emitterRate_;
133            bool server_;
134    };
135}
136
137#endif /* _SpaceShip_H__ */
Note: See TracBrowser for help on using the repository browser.