Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/trackManager/src/world_entity.h @ 3430

Last change on this file since 3430 was 3430, checked in by bensch, 19 years ago

orxonox/branches/trackManager: merged trunk back to trackManager
merged with command
svn merge -r 3369:HEAD trunk/ branches/trackManager
resoloved conflicts in favor of the trunk.

File size: 1.1 KB
RevLine 
[2077]1/*!
2    \file world_entity.h
[2190]3    \brief Definition of the basic WorldEntity
4*/
[2036]5
[3224]6#ifndef _WORLD_ENTITY_H
7#define _WORLD_ENTITY_H
[2036]8
[2190]9#include "stdincl.h"
[3365]10#include "p_node.h"
[2036]11
[2190]12class CollisionCluster;
[3430]13class OBJModel;
[2036]14
[2190]15//! Basic class from which all interactive stuff in the world is derived from
[3365]16class WorldEntity : public PNode
[2190]17{       
[2551]18  friend class World;
[3365]19
[2036]20 public:
[2190]21  WorldEntity (bool isFree = false);
[3221]22  virtual ~WorldEntity ();
[3365]23
[3430]24  OBJModel* model;
[2551]25 
[3229]26  void setCollision (CollisionCluster* newhull);
[2551]27 
28  bool isFree ();
29 
[2190]30  //void addAbility(Ability* ability);
31  //void removeAbility(Ability* ability);
[2551]32 
[3229]33  virtual void postSpawn ();
[2190]34  virtual void tick (float time);
35  virtual void hit (WorldEntity* weapon, Vector loc);
36  virtual void destroy ();
37  virtual void collide (WorldEntity* other,  Uint32 ownhitflags, Uint32 otherhitflags);
[2551]38  virtual void command (Command* cmd);
[3365]39
40  void processDraw ();
[2190]41  virtual void draw ();
[3365]42  void setDrawable (bool bDraw);
[2551]43 
[3229]44  virtual void leftWorld ();
[2551]45 
[2036]46 private:
[2190]47  const bool bFree;     
48  bool bCollide;
49  bool bDraw;
[3365]50
[2551]51  CollisionCluster* collisioncluster;
[2036]52};
53
[3224]54#endif /* _WORLD_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.