Changeset 4260 in orxonox.OLD
- Timestamp:
- May 22, 2005, 3:11:10 AM (19 years ago)
- Location:
- orxonox/branches/levelLoader/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/levelLoader/src/story_entities/world.cc
r4259 r4260 436 436 glNewList (objectList, GL_COMPILE); 437 437 438 trackManager->drawGraph(.01);439 trackManager->debug(2);438 // trackManager->drawGraph(.01); 439 // trackManager->debug(2); 440 440 glEndList(); 441 441 -
orxonox/branches/levelLoader/src/track_manager.cc
r4239 r4260 422 422 if( sscanf( container->Value(), "%lf,%lf,%lf", &x, &y, &z) == 3) 423 423 { 424 PRINTF( 0)("Loaded Point: %lf,%lf,%lf (%s)\n", x, y, z, container->Value());424 PRINTF(5)("Loaded Point: %lf,%lf,%lf (%s)\n", x, y, z, container->Value()); 425 425 addPoint( Vector( x, y, z)); 426 426 } -
orxonox/branches/levelLoader/src/util/loading/load_param.cc
r4259 r4260 55 55 /** 56 56 \param descriptionText The text to set as a description for this Parameter 57 */ 58 void BaseLoadParam::describe(const char* descriptionText) 57 \returns a pointer to itself. 58 */ 59 BaseLoadParam* BaseLoadParam::describe(const char* descriptionText) 59 60 { 60 61 if (LoadClassDescription::parametersDescription && this->paramDesc && !this->paramDesc->getDescription()) … … 62 63 this->paramDesc->setDescription(descriptionText); 63 64 } 65 return this; 64 66 } 65 67 … … 207 209 \brief prints out all loadable Classes, and their parameters 208 210 */ 209 void LoadClassDescription::printAll( void)211 void LoadClassDescription::printAll(const char* fileName) 210 212 { 211 213 PRINT(3)("===============================================================\n"); -
orxonox/branches/levelLoader/src/util/loading/load_param.h
r4256 r4260 186 186 LoadParamDescription* addParam(const char* paramName); 187 187 188 static void printAll( void);188 static void printAll(const char* fileName = NULL); 189 189 190 190 static bool parametersDescription; //!< if parameter-description should be enabled. … … 199 199 { 200 200 public: 201 voiddescribe(const char* descriptionText);201 BaseLoadParam* describe(const char* descriptionText); 202 202 203 203 protected:
Note: See TracChangeset
for help on using the changeset viewer.