Changeset 1021 for code/trunk/src/orxonox/core/Loader.cc
- Timestamp:
- Apr 10, 2008, 5:03:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/core/Loader.cc
r871 r1021 33 33 #include "Debug.h" 34 34 #include "CoreIncludes.h" 35 #include "Script.h" 35 36 36 37 #include "util/tinyxml/ticpp.h" … … 107 108 Loader::currentMask_s = level->getMask() * mask; 108 109 110 // let Lua work this out: 111 //Script* lua; 112 /*Script::loadFile(level->getFile(), true); 113 Script::init(Script::getLuaState()); 114 Script::run();*/ 115 Script* lua = Script::getInstance(); 116 lua->loadFile(level->getFile(), true); 117 lua->run(); 118 109 119 try 110 120 { … … 112 122 COUT(3) << "Mask: " << Loader::currentMask_s << std::endl; 113 123 114 ticpp::Document xmlfile(level->getFile()); 115 xmlfile.LoadFile(); 124 //ticpp::Document xmlfile(level->getFile()); 125 //xmlfile.LoadFile(); 126 //ticpp::Element myelement(*Script::getFileString()); 127 ticpp::Document xmlfile; 128 //xmlfile.ToDocument(); 129 xmlfile.Parse(lua->getLuaOutput(), true); 116 130 117 131 for ( ticpp::Iterator<ticpp::Element> child = xmlfile.FirstChildElement(false); child != child.end(); child++ )
Note: See TracChangeset
for help on using the changeset viewer.