Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 16, 2007, 11:43:15 PM (17 years ago)
Author:
patrick
Message:

much more on the resources. it's not that simple at all

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/mount_points/src/lib/graphics/importer/oif/object_information_file.cc

    r10240 r10241  
    5252void OIFData::load(const std::string& fileName)
    5353{
    54   PRINTF(0)("loading %s as oif data\n", fileName.c_str());
    55     if( fileName.empty())
     54  PRINTF(0)("loading |%s| as oif data\n", fileName.c_str());
     55  if( fileName.empty())
    5656  {
    57     PRINTF(3)("No filename specified for object information loading");
     57    PRINTF(0)("No filename specified for object information loading");
    5858    return;
    5959  }
     
    6464  {
    6565    // report an error
    66     PRINTF(1)("Could not load XML File %s: %s @ %d:%d\n", fileName.c_str(), XMLDoc.ErrorDesc(), XMLDoc.ErrorRow(), XMLDoc.ErrorCol());
     66    PRINTF(0)("Could not load XML File %s: %s @ %d:%d\n", fileName.c_str(), XMLDoc.ErrorDesc(), XMLDoc.ErrorRow(), XMLDoc.ErrorCol());
    6767    return;
    6868  }
     
    7575  {
    7676    // report an error
    77     PRINTF(2)("Specified XML File is not an orxonox object information file (<ObjectInformationFile> element missing)\n");
     77    PRINTF(0)("Specified XML File is not an orxonox object information file (<ObjectInformationFile> element missing)\n");
    7878    return;
    7979  }
     80  PRINTF(0)("OIF loaded\n");
    8081
    8182}
     
    139140
    140141
     142void ObjectInformationFile::load(const std::string& fileName)
     143{
     144}
     145
     146
    141147/**
    142148 * standard deconstructor
Note: See TracChangeset for help on using the changeset viewer.