Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 12, 2007, 2:15:24 PM (16 years ago)
Author:
nicolape
Message:

Disabled some stuff on loader

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/loader/LevelLoader.cc

    r347 r469  
    1515        dir.append("/");
    1616        dir.append(file);       
    17         rootNode = XMLNode::openFileHelper(dir.c_str(),"WorldDataFile");
     17        rootNode = XMLNode::openFileHelper(dir.c_str(),"orxonoxworld");
    1818        // TODO: Error handling
    1919
    2020        // Assing general level infos to class variables
    21         this->name_ = rootNode.getChildNode("name").getText();
    22         this->description_ = rootNode.getChildNode("description").getText();
    23         this->image_ = rootNode.getChildNode("image").getText();
     21        //this->name_ = (std::string)rootNode.getAttribute("name").getText();
     22        //this->image_ = (std::string)rootNode.getAttribute("image").getText();
     23        //this->description_ = (std::string)rootNode.getChildNode("description").getText();
    2424 
    25         this->loadingScreen();
     25        //this->loadingScreen();
    2626 
    2727  // Assign sub-nodes
Note: See TracChangeset for help on using the changeset viewer.