Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: some Playable-stuff

File size: 3.2 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 <vector>
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{
28public:
29  typedef enum {
30    Vertical         = 1,
31    Horizontal       = 2,
32    FromBehind       = 4,
33    Full3D           = 8,
34  } Playmode;
35
36
37public:
38  virtual ~Playable();
39
40  virtual void loadParams(const TiXmlElement* root);
41
42  virtual void die();
43  virtual void respawn();
44
45  virtual bool pickup(PowerUp* powerUp);
46
47  void addWeapon(Weapon* weapon, int configID = -1, int slotID = -1);
48  void removeWeapon(Weapon* weapon);
49  void nextWeaponConfig();
50  void previousWeaponConfig();
51
52  inline WeaponManager& getWeaponManager() { return this->weaponMan; };
53  void weaponConfigChanged();
54
55
56  bool setPlayer(Player* player);
57  Player* getCurrentPlayer() const { return this->currentPlayer; };
58
59  void attachCamera();
60  void detachCamera();
61  virtual void setCameraMode(unsigned int cameraMode = 0);
62  bool playmodeSupported(Playable::Playmode playmode) const { return this->supportedPlaymodes & playmode; };
63  bool setPlayMode(Playable::Playmode playmode);
64
65  virtual void collidesWith(WorldEntity* entity, const Vector& location);
66  virtual void process(const Event &event);
67
68  virtual void tick(float dt);
69
70  /** @return a List of Events in PEV_* sytle */
71  inline const std::vector<int>& getEventList() { return this->events; };
72
73  int       writeSync(const byte* data, int length, int sender);
74  int       readSync(byte* data, int maxLength );
75  bool      needsReadSync();
76
77
78  //
79  virtual void setStartDirection(const Quaternion& rot) = 0;
80  void setStartDirection(float angle, float dirX, float dirY, float dirZ) { this->setStartDirection(Quaternion(angle, Vector(dirX, dirY, dirZ))); }
81
82  inline void setScore( int score ) { this->score = score; }
83  inline int  getScore() { return this->score; }
84
85protected:
86  Playable();
87
88  virtual void enter() = 0;
89  virtual void leave() = 0;
90
91  void setSupportedPlaymodes(short playmodes) { this->supportedPlaymodes = playmodes; };
92
93  void registerEvent(int eventType);
94  void unregisterEvent(int eventType);
95
96private:
97  WeaponManager         weaponMan;          //!< the weapon manager: managing a list of weapon to wepaon-slot mapping
98  std::vector<int>      events;             //!< A list of Events, that are captured for this playable
99
100  Player*               currentPlayer;      //!< The Player currently connected to this Playable (the one that has controll) otherwise NULL
101
102  bool                  bFire;              //!< If the Ship is firing.
103  int                   oldFlags;           //!< Used for synchronisation
104
105  int                   score;
106  int                   oldScore;
107
108  bool                  bDead;
109  short                 supportedPlaymodes; //!< What Playmodes are Supported in this Playable.
110  Playable::Playmode    playmode;           //!< The current playmode.
111
112  WorldEntity* collider;
113};
114
115#endif /* _PLAYABLE_H */
Note: See TracBrowser for help on using the repository browser.