Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/playable.h @ 7337

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

orxonox/trunk: simple useless stuff

File size: 2.7 KB
Line 
1
2/*!
3 * @file playable.h
4 * Interface for a basic controllable WorldEntity
5 */
6#ifndef _PLAYABLE_H
7#define _PLAYABLE_H
8
9#include "world_entity.h"
10#include "extendable.h"
11#include "event.h"
12#include <list>
13
14#include "world_entities/weapons/weapon_manager.h"
15
16class Weapon;
17class DotEmitter;
18class Player;
19class SpriteParticles;
20class Explosion;
21
22//! Basic controllable WorldEntity
23/**
24 *
25 */
26class Playable : public WorldEntity, public Extendable
27{
28  public:
29    virtual ~Playable();
30
31    virtual void loadParams(const TiXmlElement* root);
32
33    virtual void die();
34    virtual void respawn();
35
36    virtual bool pickup(PowerUp* powerUp);
37
38    void addWeapon(Weapon* weapon, int configID = -1, int slotID = -1);
39    void removeWeapon(Weapon* weapon);
40    void nextWeaponConfig();
41    void previousWeaponConfig();
42
43    inline WeaponManager& getWeaponManager() { return this->weaponMan; };
44    void weaponConfigChanged();
45
46
47    bool setPlayer(Player* player);
48    Player* getCurrentPlayer() const { return this->currentPlayer; };
49
50    void attachCamera();
51    void detachCamera();
52    virtual void setCameraMode(unsigned int cameraMode = 0);
53
54    virtual void collidesWith(WorldEntity* entity, const Vector& location);
55    virtual void process(const Event &event);
56
57    virtual void tick(float dt);
58
59    /** @return a List of Events in PEV_* sytle */
60    inline const std::list<int>& getEventList() { return this->events; };
61
62    int       writeSync(const byte* data, int length, int sender);
63    int       readSync(byte* data, int maxLength );
64    bool      needsReadSync();
65
66
67    //
68    virtual void setStartDirection(const Quaternion& rot) = 0;
69    void setStartDirection(float angle, float dirX, float dirY, float dirZ) { this->setStartDirection(Quaternion(angle, Vector(dirX, dirY, dirZ))); }
70
71    inline void setScore( int score ) { this->score = score; }
72    inline int  getScore() { return this->score; }
73
74  protected:
75    Playable();
76
77    virtual void enter() = 0;
78    virtual void leave() = 0;
79
80    void registerEvent(int eventType);
81    void unregisterEvent(int eventType);
82
83  private:
84    WeaponManager         weaponMan;          //!< the weapon manager: managing a list of weapon to wepaon-slot mapping
85    std::list<int>        events;             //!< A list of Events, that are captured for this playable
86
87    Player*               currentPlayer;      //!< The Player currently connected to this Playable (the one that has controll) otherwise NULL
88
89    bool                  bFire;              //!< If the Ship is firing.
90    int                   oldFlags;           //!< Used for synchronisation
91
92    int                   score;
93    int                   oldScore;
94
95    bool                  bDead;
96
97    //TODO HACK: explosion emitter
98
99
100    WorldEntity* collider;
101};
102
103#endif /* _PLAYABLE_H */
Note: See TracBrowser for help on using the repository browser.