Changeset 996 for code/branches/script/src/orxonox/core
- Timestamp:
- Apr 5, 2008, 9:47:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/script/src/orxonox/core/Loader.cc
r871 r996 33 33 #include "Debug.h" 34 34 #include "CoreIncludes.h" 35 #include "../script/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 109 116 try 110 117 { … … 112 119 COUT(3) << "Mask: " << Loader::currentMask_s << std::endl; 113 120 114 ticpp::Document xmlfile(level->getFile()); 115 xmlfile.LoadFile(); 121 //ticpp::Document xmlfile(level->getFile()); 122 //xmlfile.LoadFile(); 123 //ticpp::Element myelement(*Script::getFileString()); 124 ticpp::Document xmlfile; 125 //xmlfile.ToDocument(); 126 xmlfile.Parse(*Script::getFileString(), true); 116 127 117 128 for ( ticpp::Iterator<ticpp::Element> child = xmlfile.FirstChildElement(false); child != child.end(); child++ )
Note: See TracChangeset
for help on using the changeset viewer.