Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/single_player_map/src/world_entities/space_ships/spacecraft_2d.h @ 9046

Last change on this file since 9046 was 9046, checked in by bensch, 18 years ago

orxonox/branches/single_player_map: added Spacecraft_2d

File size: 2.1 KB
Line 
1
2/*!
3 * @file spacecraft_2d.h
4 * Implements the Control of a Spacecraft2D
5 */
6
7#ifndef _SPACECRAFT_2D_H
8#define _SPACECRAFT_2D_H
9
10#include "playable.h"
11
12// Forward Declaration
13class ParticleEmitter;
14class ParticleSystem;
15
16class Spacecraft2D : public Playable
17{
18  public:
19    Spacecraft2D(const std::string& fileName);
20    Spacecraft2D(const TiXmlElement* root = NULL);
21    virtual ~Spacecraft2D();
22
23    virtual void loadParams(const TiXmlElement* root);
24    virtual void setPlayDirection(const Quaternion& rot, float speed = 0.0f);
25    virtual void enter();
26    virtual void leave();
27
28    virtual void postSpawn();
29    virtual void leftWorld();
30
31    virtual void collidesWith(WorldEntity* entity, const Vector& location);
32    virtual void tick(float dt);
33    virtual void draw() const;
34
35    virtual void process(const Event &event);
36
37  private:
38    void init();
39    void movement(float dt);
40
41  private:
42    bool                  bForward;           //!< forward button pressed.
43    bool                  bBackward;          //!< backward button pressed.
44    bool                  bLeft;              //!< left button pressed.
45    bool                  bRight;             //!< right button pressed.
46
47    int                   yInvert;
48    float                 mouseSensitivity;   //!< the mouse sensitivity
49
50    PNode                 cameraNode;
51    float                 cameraLook;
52    float                 rotation;
53
54   // Vector                velocity;           //!< the velocity of the Spacecraft2D.
55    Quaternion            direction;          //!< the direction of the Spacecraft2D.
56    float                 travelSpeed;        //!< the current speed of the Hove (to make soft movement)
57    float                 acceleration;       //!< the acceleration of the Spacecraft2D.
58    float                 airFriction;        //!< AirFriction.
59
60    float                 rotorSpeed;         //!< the speed of the rotor.
61    float                 rotorCycle;         //!< The Cycle the rotor is in.
62
63    float                 airViscosity;
64
65    ParticleEmitter*      burstEmitter;
66    ParticleSystem*       burstSystem;
67};
68
69#endif /* _SPACECRAFT_2DS_H */
Note: See TracBrowser for help on using the repository browser.