Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4115 in orxonox.OLD


Ignore:
Timestamp:
May 7, 2005, 10:13:19 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: windows-test

Location:
orxonox/trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/resource_manager.cc

    r4091 r4115  
    202202  // searching if the resource was loaded before.
    203203  Resource* tmpResource = this->locateResourceByInfo(fileName, type, param1, param2,param3);
    204   if (tmpResource) // if the resource was not loaded before.
     204  if (tmpResource) // if the resource was loaded before.
    205205    {
    206206      PRINTF(4)("not loading cached resource %s\n", tmpResource->name);
     
    221221
    222222      // creating the full name. (directoryName + FileName)
    223       char* fullName = new char[strlen(dataDir)+strlen(fileName)+1];
    224       sprintf(fullName, "%s%s", this->dataDir, fileName);
    225      
     223      char* fullName = new char[strlen(this->getDataDir())+strlen(fileName)+1];
     224      sprintf(fullName, "%s%s", this->getDataDir(), fileName);
     225      printf("FULLNAME: %s\n", fullName);
    226226      // Checking for the type of resource \see ResourceType
    227227      switch(type)
     
    233233            tmpResource->modelSize = 1.0;
    234234
    235           if(isFile(fullName))
     235          if(ResourceManager::isFile(fullName))
    236236            tmpResource->pointer = new OBJModel(fullName, tmpResource->modelSize);
    237237          else
  • orxonox/trunk/src/util/resource_manager.h

    r4091 r4115  
    6666  bool setDataDir(const char* dataDir);
    6767  /** \returns the Name of the data directory */
    68   const char*  getDataDir(void) {return this->dataDir;}
     68  inline const char*  getDataDir(void) {return this->dataDir;}
    6969  bool checkDataDir(const char* fileInside);
    7070  bool addImageDir(char* imageDir);
  • orxonox/trunk/src/world_entities/world_entity.cc

    r4114 r4115  
    6565  this->model = NULL;
    6666  string = grabParameter( root, "model");
    67   printf("::::::::::::::::::::::string is %s\n", string);
    6867  if( string != NULL)
    6968    this->model = (Model*)ResourceManager::getInstance()->load(string, OBJ, RP_CAMPAIGN);
Note: See TracChangeset for help on using the changeset viewer.