Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6100 in orxonox.OLD


Ignore:
Timestamp:
Dec 14, 2005, 1:46:12 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: copied the heightMap to the trunk, and adapted to partly new framework

Location:
trunk/src
Files:
2 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/defs/class_id.h

    r6010 r6100  
    202202  CL_PROMITIVE_MODEL            =    0x00000808,
    203203  CL_MD2Model                   =    0x00000809,
    204   CL_LIGHT                      =    0x0000080a,
    205   CL_PARTICLE_EMITTER           =    0x0000080b,
    206   CL_PARTICLE_SYSTEM            =    0x0000080c,
    207   CL_ENVIRONMENT                =    0x00000810,
    208   CL_SHADER                     =    0x00000811,
     204  CL_HEIGHT_MAP                 =    0x0000080a,
     205  CL_LIGHT                      =    0x00000811,
     206  CL_PARTICLE_EMITTER           =    0x00000812,
     207  CL_PARTICLE_SYSTEM            =    0x00000813,
     208  CL_ENVIRONMENT                =    0x00000821,
     209  CL_SHADER                     =    0x00000822,
    209210  // GL-GUI
    210211  CL_GLGUI_WIDGET               =    0x00501901,
  • trunk/src/lib/graphics/importer/Makefile.am

    r6022 r6100  
    1212                           material.cc \
    1313                           texture.cc \
    14                            texture_sequence.cc
     14                           texture_sequence.cc \
     15                           height_map.cc
    1516
    1617
     
    2526                 texture.h \
    2627                 texture_sequence.h \
     28                 height_map.h \
    2729                 anorms.h \
    2830                 anormtab.h
  • trunk/src/lib/graphics/importer/height_map.cc

    r6099 r6100  
    2727#endif
    2828
    29 HeightMap::HeightMap() : Model()
     29HeightMap::HeightMap() : StaticModel()
    3030{
    3131       
    3232}
    3333
    34 HeightMap::HeightMap(const char* height_map_name = NULL) : Model()
     34HeightMap::HeightMap(const char* height_map_name = NULL) : StaticModel()
    3535{
    3636   this->setClassID(CL_HEIGHT_MAP, "HeightMap");
  • trunk/src/lib/graphics/importer/height_map.h

    r6099 r6100  
    1414
    1515
    16 #include "model.h"
     16#include "static_model.h"
    1717
    1818class SDL_Surface;
    1919class Vector;
    2020
    21 class HeightMap : public Model
     21class HeightMap : public StaticModel
    2222{
    2323public:
Note: See TracChangeset for help on using the changeset viewer.