|
Last change
on this file since 6392 was
5915,
checked in by bensch, 20 years ago
|
|
orxonox/trunk: merged branches/spaceshipControll back to the trunk:
merged with command:
svn merge -r5835:HEAD branches/spaceshipcontroll trunk
conflicts resolved with dynamic indentation methodology algorithms
|
|
File size:
930 bytes
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | * @file player.h |
|---|
| 3 | * Implements a basic controllable WorldEntity |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | #ifndef _PLAYER_H |
|---|
| 7 | #define _PLAYER_H |
|---|
| 8 | |
|---|
| 9 | #include "event_listener.h" |
|---|
| 10 | |
|---|
| 11 | /* Forward Declaration */ |
|---|
| 12 | class Playable; |
|---|
| 13 | |
|---|
| 14 | //! Basic controllable WorldEntity |
|---|
| 15 | /** |
|---|
| 16 | * this is the debug player - actualy we would have to make a new |
|---|
| 17 | class derivated from Player for each player. for now, we just use |
|---|
| 18 | the player.cc for debug also |
|---|
| 19 | */ |
|---|
| 20 | class Player : public EventListener |
|---|
| 21 | { |
|---|
| 22 | |
|---|
| 23 | public: |
|---|
| 24 | Player(); |
|---|
| 25 | virtual ~Player(); |
|---|
| 26 | |
|---|
| 27 | bool setControllable(Playable* controllalble); |
|---|
| 28 | inline Playable* getControllable() { return this->controllable; }; |
|---|
| 29 | |
|---|
| 30 | bool disconnectControllable(); |
|---|
| 31 | |
|---|
| 32 | // eventListener extension. |
|---|
| 33 | virtual void process(const Event &event); |
|---|
| 34 | |
|---|
| 35 | private: |
|---|
| 36 | void init(); |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | private: |
|---|
| 40 | Playable* controllable; //!< The one we controll or NULL if none |
|---|
| 41 | }; |
|---|
| 42 | |
|---|
| 43 | #endif /* _PLAYER_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.