Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3461 in orxonox.OLD for orxonox/trunk/src/world.h


Ignore:
Timestamp:
Mar 9, 2005, 1:23:33 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: cleaning up old stuff in world.cc and its relatives. second step…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/world.h

    r3459 r3461  
    4444  virtual void displayLoadScreen();
    4545  virtual void releaseLoadScreen();
    46 
    47 
    48   /* main functions for world-looping */
    49 
    50   void draw ();
    51   void update ();       // maps Locations to Placements
    52   //void calcCameraPos (Location* loc, Placement* plc);
    53        
     46 
     47  /* command node functions */
    5448  bool command (Command* cmd);
    5549
    56  
    57   //bool system_command (Command* cmd);
    58   Camera* getCamera ();
    59 
     50  /* interface to world */
    6051  void spawn (WorldEntity* entity);
    6152  void spawn (WorldEntity* entity, Vector* absCoor, Quaternion* absDir);
    6253
    63   tList<WorldEntity>* entities;//!< A template List of all entities. Every moving thing should be included here, and world automatically updates them.
    64  
    65   // base level data
    66   TrackManager* trackManager;  //!< The reference of the TrackManager that handles the course through the Level.
    67   Camera* localCamera;         //!< The current Camera
    6854
    6955
    7056 private:
     57  TrackManager* trackManager;  //!< The reference of the TrackManager that handles the course through the Level.
     58  Camera* localCamera;         //!< The current Camera
     59  tList<WorldEntity>* entities;//!< A template List of all entities. Every moving thing should be included here, and world automatically updates them.
     60
    7161  Uint32 lastFrame;             //!< last time of frame
    7262  bool bQuitOrxonox;            //!< quit this application
     
    9282  void timeSlice ();
    9383  void collide ();
     84  void draw ();
    9485  void display ();
    9586  void debug ();
Note: See TracChangeset for help on using the changeset viewer.