Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/spaceshipcontrol/src/world_entities/playable.h @ 5864

Last change on this file since 5864 was 5864, checked in by snellen, 18 years ago

player.cc and player.h updated ( in ../src/world_entities)

File size: 959 bytes
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 "event.h"
11#include <list.h>
12
13class Weapon;
14class WeaponManager;
15
16//! Basic controllable WorldEntity
17/**
18 *
19 */
20class Playable : public WorldEntity
21{
22
23  public:
24    Playable();
25    virtual ~Playable();
26
27    void init();
28    void loadParams(const TiXmlElement* root);
29
30    virtual void addWeapon(Weapon* weapon )= 0;
31    virtual void removeWeapon(Weapon* weapon) = 0;
32
33    virtual void process(const Event &event) = 0;
34    virtual void setKeySet();
35    inline const std::list<Event*>& getEventList() { return this->events; };
36    WeaponManager* getWeaponManager();
37
38  private:
39
40    WeaponManager*        weaponMan;          //!< the weapon manager: managing a list of weapon to wepaon-slot mapping
41    std::list<Event*>     events;
42    //todo: add a event to id mapping list
43
44
45};
46
47#endif /* _PLAYABLE_H */
Note: See TracBrowser for help on using the repository browser.