Changeset 1021 for code/trunk/src/orxonox/core
- Timestamp:
- Apr 10, 2008, 5:03:34 PM (17 years ago)
- Location:
- code/trunk/src/orxonox/core
- Files:
-
- 5 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/core/BaseObject.cc
r871 r1021 27 27 28 28 /** 29 @file BaseObject.cc29 @file 30 30 @brief Implementation of the BaseObject class. 31 31 */ -
code/trunk/src/orxonox/core/CMakeLists.txt
r871 r1021 17 17 Executor.cc 18 18 XMLPort.cc 19 Tickable.cc 20 Script.cc 19 21 ) 20 22 … … 24 26 TARGET_LINK_LIBRARIES( core 25 27 util 28 ${Lua_LIBRARIES} 26 29 ) -
code/trunk/src/orxonox/core/ClassTreeMask.cc
r890 r1021 592 592 { 593 593 const Identifier* subclass = it->getClass(); 594 newmask.add(subclass, this->isIncluded(subclass) ||other.isIncluded(subclass), false, false);594 newmask.add(subclass, this->isIncluded(subclass) or other.isIncluded(subclass), false, false); 595 595 } 596 596 … … 599 599 { 600 600 const Identifier* subclass = it->getClass(); 601 newmask.add(subclass, this->isIncluded(subclass) ||other.isIncluded(subclass), false, false);601 newmask.add(subclass, this->isIncluded(subclass) or other.isIncluded(subclass), false, false); 602 602 } 603 603 … … 623 623 { 624 624 const Identifier* subclass = it->getClass(); 625 newmask.add(subclass, this->isIncluded(subclass) &&other.isIncluded(subclass), false, false);625 newmask.add(subclass, this->isIncluded(subclass) and other.isIncluded(subclass), false, false); 626 626 } 627 627 … … 630 630 { 631 631 const Identifier* subclass = it->getClass(); 632 newmask.add(subclass, this->isIncluded(subclass) &&other.isIncluded(subclass), false, false);632 newmask.add(subclass, this->isIncluded(subclass) and other.isIncluded(subclass), false, false); 633 633 } 634 634 … … 737 737 { 738 738 const Identifier* subclass = it->getClass(); 739 newmask.add(subclass, this->isIncluded(subclass) XORother.isIncluded(subclass), false, false);739 newmask.add(subclass, this->isIncluded(subclass) xor other.isIncluded(subclass), false, false); 740 740 } 741 741 … … 744 744 { 745 745 const Identifier* subclass = it->getClass(); 746 newmask.add(subclass, this->isIncluded(subclass) XORother.isIncluded(subclass), false, false);746 newmask.add(subclass, this->isIncluded(subclass) xor other.isIncluded(subclass), false, false); 747 747 } 748 748 -
code/trunk/src/orxonox/core/DebugLevel.cc
r871 r1021 95 95 96 96 // Return a constant value while we're creating the object 97 return 4;97 return 3; 98 98 } 99 99 } -
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.