Changeset 893 for code/branches/input/src/orxonox
- Timestamp:
- Mar 13, 2008, 4:15:41 PM (17 years ago)
- Location:
- code/branches/input/src/orxonox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/input/src/orxonox/OrxonoxPlatform.h
r790 r893 251 251 #endif 252 252 253 254 // Create a logical xor operator 255 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC 256 # define XOR ^ 257 #elif ORXONOX_COMPILER == ORXONOX_COMPILER_GCC 258 # define XOR xor 259 #else 260 # define XOR ^ 261 #endif 262 253 263 } /* namespace orxonox */ 254 264 -
code/branches/input/src/orxonox/OrxonoxStableHeaders.h
r871 r893 87 87 #include "util/String2Number.h" 88 88 #include "util/Tokenizer.h" 89 #include "util/Multitype.h" 90 #include "util/MultiTypeMath.h" 91 #include "util/MultiTypePrimitive.h" 92 #include "util/MultiTypeString.h" 93 #include "util/substring.h" 94 #include "util/XMLIncludes.h" 95 89 96 #include "util/tinyxml/ticpp.h" 90 97 #include "util/tinyxml/tinyxml.h" -
code/branches/input/src/orxonox/core/ClassTreeMask.cc
r871 r893 592 592 { 593 593 const Identifier* subclass = it->getClass(); 594 newmask.add(subclass, this->isIncluded(subclass) orother.isIncluded(subclass), false, false);594 newmask.add(subclass, this->isIncluded(subclass) || 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) orother.isIncluded(subclass), false, false);601 newmask.add(subclass, this->isIncluded(subclass) || 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) andother.isIncluded(subclass), false, false);625 newmask.add(subclass, this->isIncluded(subclass) && 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) andother.isIncluded(subclass), false, false);632 newmask.add(subclass, this->isIncluded(subclass) && 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/branches/input/src/orxonox/core/Identifier.h
r871 r893 206 206 }; 207 207 208 std::ostream& operator<<(std::ostream& out, const std::list<const Identifier*>& list);208 _CoreExport std::ostream& operator<<(std::ostream& out, const std::list<const Identifier*>& list); 209 209 210 210 -
code/branches/input/src/orxonox/objects/Tickable.cc
r871 r893 1 /* 2 * ORXONOX - the hottest 3D action shooter ever to exist 3 * 4 * 5 * License notice: 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License 9 * as published by the Free Software Foundation; either version 2 10 * of the License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 20 * 21 * Author: 22 * Fabian 'x3n' Landau 23 * Co-authors: 24 * ... 25 * 26 */ 27 28 #include "OrxonoxStableHeaders.h" 29 1 30 #include "core/CoreIncludes.h" 2 31 #include "Tickable.h" -
code/branches/input/src/orxonox/tools/Timer.cc
r871 r893 1 /* 2 * ORXONOX - the hottest 3D action shooter ever to exist 3 * 4 * 5 * License notice: 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License 9 * as published by the Free Software Foundation; either version 2 10 * of the License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 20 * 21 * Author: 22 * Fabian 'x3n' Landau 23 * Co-authors: 24 * ... 25 * 26 */ 27 28 #include "OrxonoxStableHeaders.h" 29 1 30 #include "core/CoreIncludes.h" 2 31 #include "Timer.h"
Note: See TracChangeset
for help on using the changeset viewer.