Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/world_entities/player.h @ 3649

Last change on this file since 3649 was 3620, checked in by patrick, 19 years ago

orxonox/trunk: added worldinterface, to enable all worldentities to access the entities list. so they can add entities themselfes. this is a nice hack

File size: 1.6 KB
Line 
1/*!
2    \file player.h
3    \brief Implements a basic controllable WorldEntity
4*/
5
6#ifndef _PLAYER_H
7#define _PLAYER_H
8
9#include "world_entity.h"
10
11template<class T> class tList;
12class OBJModel;
13class Weapon;
14class Vector;
15class World;
16
17//! Basic controllable WorldEntity
18class Player : public WorldEntity
19{
20  friend class World;
21 
22 public:
23  Player();
24  virtual ~Player();
25
26  void addWeapon(Weapon* weapon);
27  void removeWeapon(Weapon* weapon);
28 
29  virtual void postSpawn();
30  virtual void leftWorld();
31  virtual void hit(WorldEntity* weapon, Vector* loc);
32  virtual void collide(WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags);
33
34  virtual void tick(float time); 
35  virtual void draw();
36
37  virtual void command(Command* cmd);
38 
39 private:
40  bool bUp;              //!< up button pressed.
41  bool bDown;            //!< down button pressed.
42  bool bLeft;            //!< left button pressed.
43  bool bRight;           //!< right button pressed.
44  bool bAscend;          //!< ascend button pressed.
45  bool bDescend;         //!< descend button presses.
46  bool bFire;            //!< fire button pressed.
47  bool bWeaponChange;    //!< weapon change button pressed
48
49  tList<Weapon>* weapons;//!< a list of weapon
50  Weapon* activeWeapon;  //!< the weapon that is currenty activated
51  World* myWorld;        //!< reference to the world object
52
53  Vector* velocity;       //!< the velocity of the player.
54  float travelSpeed;     //!< the current speed of the player (to make soft movement)
55  float acceleration;    //!< the acceleration of the player.
56 
57  void move(float time);
58  void weapon(void);
59 
60};
61
62#endif /* _PLAYER_H */
Note: See TracBrowser for help on using the repository browser.