Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/terrain.h @ 5357

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

orxonox/trunk: some minor cleanup, of the mess i made with AutoMake-sh

File size: 862 bytes
Line 
1/*!
2 * @file terrain.h
3  *  Defines and handles the terrain of the World
4
5    @todo implement it
6
7    The terrain should either be build from a Model a OBJModel or from a HeightMap.
8*/
9
10#ifndef _TERRAIN_H
11#define _TERRAIN_H
12
13#include "world_entity.h"
14
15// FORWARD DEFINITION
16class SpatialSeparation;
17
18//! A simple method to call a desired debug world.
19enum DebugTerrain {TERRAIN_DAVE, TERRAIN_BENSCH};
20
21
22//! A Class to handle Terrain of orxonox
23class Terrain : public WorldEntity
24{
25
26 public:
27  Terrain(const TiXmlElement* root = NULL);
28  Terrain(const char* fileName);
29  Terrain(DebugTerrain debugTerrain);
30  virtual ~Terrain();
31
32  void init();
33  void loadParams(const TiXmlElement* root);
34
35  void buildDebugTerrain(DebugTerrain debugTerrain);
36  virtual void draw();
37
38  public:
39    SpatialSeparation* ssp;
40
41 private:
42  int objectList;
43};
44
45#endif /* _TERRAIN_H */
Note: See TracBrowser for help on using the repository browser.