Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/world_entities/playable.h @ 7444

Last change on this file since 7444 was 7444, checked in by rennerc, 18 years ago

new network system implemented. yet with a lot of empty function bodys

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