Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8965 in orxonox.OLD


Ignore:
Timestamp:
Jun 30, 2006, 4:09:47 PM (18 years ago)
Author:
ponder
Message:

Added debug information to the terrain

Location:
branches/terrain
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/terrain/acinclude.m4

    r8962 r8965  
    304304      if test -e ${_lua_lib_directory}/liblua.a  || test -e ${_lua_lib_directory}/liblua.dylib ; then
    305305        LUA_LIB_DIRECTORY=${_lua_lib_directory}
    306         LDFLAGS="${LDFLAGS} -L${LUA_LIB_DIRECTORY} -llualib -ldl"
     306        LDFLAGS="${LDFLAGS} -L${LUA_LIB_DIRECTORY} -llua -llualib -ldl"
    307307        break
    308308      fi
  • branches/terrain/src/lib/graphics/importer/terrain/terrain.cc

    r8950 r8965  
    3939                return;
    4040        }
     41        PRINTF(2)( "Loaded the elevation map\n" );
    4142        heightfield.height = tmpData->h;
    4243        heightfield.width = tmpData->w;
  • branches/terrain/src/world_entities/terrain_entity.cc

    r8929 r8965  
    137137                                PRINTF(0)( "%s not found\n", detailmap.c_str() );
    138138                        }       
     139                        else
     140                                PRINTF(0)( "loaded %s\n", detailmap.c_str() );
    139141                        TiXmlElement *repeat = (TiXmlElement*)detail->FirstChild( "repeat" );
    140142                        if ( repeat ) {
     
    152154                                        info->alpha = (Texture*)manager->load( alphamap,
    153155                                                IMAGE, RP_GAME, (int)GL_TEXTURE_2D );
     156                                        if ( !info->alpha )     
     157                                                PRINTF(0)( "%s not found\n", alphamap.c_str() );
     158                                        else
     159                                                PRINTF(0)( "loaded %s\n", alphamap.c_str() );
    154160                                }
    155161                }       
Note: See TracChangeset for help on using the changeset viewer.