| [1039] | 1 | /* | 
|---|
 | 2 |  *   ORXONOX - the hottest 3D action shooter ever to exist | 
|---|
| [1056] | 3 |  *                    > www.orxonox.net < | 
|---|
| [1039] | 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: | 
|---|
| [1293] | 25 |  *      Benjamin Knecht | 
|---|
| [1039] | 26 |  * | 
|---|
 | 27 |  */ | 
|---|
 | 28 |  | 
|---|
| [608] | 29 | #ifndef _SpaceShip_H__ | 
|---|
 | 30 | #define _SpaceShip_H__ | 
|---|
 | 31 |  | 
|---|
| [1039] | 32 | #include "OrxonoxPrereqs.h" | 
|---|
 | 33 |  | 
|---|
| [708] | 34 | #include <OgrePrerequisites.h> | 
|---|
| [608] | 35 |  | 
|---|
| [1293] | 36 | #include "core/InputInterfaces.h" | 
|---|
 | 37 | #include "Camera.h" | 
|---|
| [608] | 38 | #include "Model.h" | 
|---|
| [768] | 39 | #include "../tools/BillboardSet.h" | 
|---|
| [633] | 40 |  | 
|---|
| [608] | 41 | namespace orxonox | 
|---|
 | 42 | { | 
|---|
| [1219] | 43 |     class _OrxonoxExport SpaceShip : public Model, public MouseHandler | 
|---|
| [608] | 44 |     { | 
|---|
 | 45 |         public: | 
|---|
| [1360] | 46 |            | 
|---|
 | 47 |             static SpaceShip *getLocalShip(); | 
|---|
 | 48 |              | 
|---|
| [608] | 49 |             SpaceShip(); | 
|---|
 | 50 |             ~SpaceShip(); | 
|---|
| [1021] | 51 |             bool create(); | 
|---|
 | 52 |             void registerAllVariables(); | 
|---|
| [871] | 53 |             void init(); | 
|---|
| [697] | 54 |             void setConfigValues(); | 
|---|
| [1052] | 55 |             virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); | 
|---|
| [608] | 56 |             virtual void tick(float dt); | 
|---|
| [736] | 57 |  | 
|---|
| [871] | 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 |  | 
|---|
| [1293] | 67 |             void getFocus(); | 
|---|
 | 68 |  | 
|---|
| [1052] | 69 |             static void setMaxSpeedTest(float value) | 
|---|
 | 70 |                 { SpaceShip::instance_s->setMaxSpeed(value); } | 
|---|
 | 71 |  | 
|---|
| [1349] | 72 |             void mouseButtonPressed (MouseButton::Enum id); | 
|---|
 | 73 |             void mouseButtonReleased(MouseButton::Enum id); | 
|---|
 | 74 |             void mouseButtonHeld    (MouseButton::Enum id) { } | 
|---|
 | 75 |             void mouseMoved         (IntVector2 abs, IntVector2 rel, IntVector2 clippingSize); | 
|---|
 | 76 |             void mouseScrolled      (int abs, int rel) { } | 
|---|
| [608] | 77 |  | 
|---|
 | 78 |  | 
|---|
 | 79 |         private: | 
|---|
| [1293] | 80 |             void createCamera(); | 
|---|
| [1052] | 81 |             static SpaceShip* instance_s; | 
|---|
 | 82 |  | 
|---|
| [786] | 83 |             Vector3 testvector_; | 
|---|
| [647] | 84 |             bool bInvertYAxis_; | 
|---|
| [608] | 85 |             bool setMouseEventCallback_; | 
|---|
| [644] | 86 |             bool bLMousePressed_; | 
|---|
 | 87 |             bool bRMousePressed_; | 
|---|
| [608] | 88 |  | 
|---|
| [644] | 89 |             Ogre::SceneNode* camNode_; | 
|---|
| [1293] | 90 |             Camera* cam_;   | 
|---|
 | 91 |             std::string camName_; | 
|---|
| [644] | 92 |  | 
|---|
| [1293] | 93 |  | 
|---|
| [708] | 94 |             ParticleInterface* tt_; | 
|---|
| [608] | 95 |  | 
|---|
| [633] | 96 |             BillboardSet redBillboard_; | 
|---|
 | 97 |             BillboardSet greenBillboard_; | 
|---|
 | 98 |             Ogre::SceneNode* redNode_; | 
|---|
 | 99 |             Ogre::SceneNode* greenNode_; | 
|---|
 | 100 |             float blinkTime_; | 
|---|
 | 101 |  | 
|---|
| [661] | 102 |             BillboardSet crosshairNear_; | 
|---|
 | 103 |             BillboardSet crosshairFar_; | 
|---|
 | 104 |             Ogre::SceneNode* chNearNode_; | 
|---|
 | 105 |             Ogre::SceneNode* chFarNode_; | 
|---|
 | 106 |  | 
|---|
| [643] | 107 |             float timeToReload_; | 
|---|
 | 108 |             float reloadTime_; | 
|---|
 | 109 |  | 
|---|
| [647] | 110 |             float maxSideAndBackSpeed_; | 
|---|
 | 111 |             float maxSpeed_; | 
|---|
 | 112 |             float maxRotation_; | 
|---|
 | 113 |             float translationAcceleration_; | 
|---|
 | 114 |             float rotationAcceleration_; | 
|---|
 | 115 |             float translationDamping_; | 
|---|
 | 116 |             float rotationDamping_; | 
|---|
 | 117 |  | 
|---|
 | 118 |             Radian maxRotationRadian_; | 
|---|
 | 119 |             Radian rotationAccelerationRadian_; | 
|---|
 | 120 |             Radian rotationDampingRadian_; | 
|---|
 | 121 |             Radian zeroRadian_; | 
|---|
 | 122 |             Radian mouseXRotation_; | 
|---|
 | 123 |             Radian mouseYRotation_; | 
|---|
 | 124 |  | 
|---|
 | 125 |             float mouseX_; | 
|---|
 | 126 |             float mouseY_; | 
|---|
 | 127 |  | 
|---|
| [1037] | 128 |             float emitterRate_; | 
|---|
| [1293] | 129 |             bool server_; | 
|---|
| [608] | 130 |     }; | 
|---|
 | 131 | } | 
|---|
 | 132 |  | 
|---|
| [673] | 133 | #endif /* _SpaceShip_H__ */ | 
|---|