Changeset 2013 for code/branches/objecthierarchy/src
- Timestamp:
- Oct 25, 2008, 9:50:26 PM (16 years ago)
- Location:
- code/branches/objecthierarchy/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/core/ArgumentCompletionFunctions.cc
r1505 r2013 30 30 #include <map> 31 31 32 #include "boost/filesystem.hpp"32 #include <boost/filesystem.hpp> 33 33 34 34 #include "ArgumentCompletionFunctions.h" -
code/branches/objecthierarchy/src/core/Template.cc
r1993 r2013 27 27 */ 28 28 29 #include "OrxonoxStableHeaders.h"30 29 #include "Template.h" 31 30 -
code/branches/objecthierarchy/src/orxonox/OrxonoxStableHeaders.h
r1841 r2013 37 37 #include "util/OrxonoxPlatform.h" 38 38 39 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC && !defined(ORXONOX_DISABLE_PCH)39 #if defined(ORXONOX_ENABLE_PCH) 40 40 41 41 // including std headers here is useless since they're already precompiled … … 47 47 #include <Ogre.h> 48 48 #include <CEGUI.h> 49 #include "ois/OIS.h" 49 50 #include <boost/thread/recursive_mutex.hpp> 50 #include <boost/thread/mutex.hpp>51 #include <boost/thread/condition.hpp>52 #include <boost/thread/thread.hpp>53 51 //#include <boost/thread/mutex.hpp> 52 //#include <boost/thread/condition.hpp> 53 //#include <boost/thread/thread.hpp> 54 #include <boost/static_assert.hpp> 54 55 #include "tinyxml/ticpp.h" 55 56 #include "tinyxml/tinyxml.h" 57 #include "tolua/tolua++.h" 56 58 57 //Get around Windows hackery (windows.h is included by Ogre )59 //Get around Windows hackery (windows.h is included by Ogre.h) 58 60 #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 59 61 # ifdef max … … 67 69 //----------- Our files ---------- 68 70 //-------------------------------- 69 // only include when not debugging so that we may find issues with missing headers quicker70 #if defined(NDEBUG)71 //// only include when not debugging so that we may find issues with missing headers quicker 72 //#if defined(NDEBUG) 71 73 72 74 #include "util/Convert.h" 73 75 #include "util/Debug.h" 76 #include "util/Exception.h" 74 77 #include "util/Math.h" 75 78 #include "util/Multitype.h" 76 #include "util/OutputBuffer.h"77 #include "util/OutputHandler.h"78 79 #include "util/Sleep.h" 79 80 #include "util/String.h" … … 85 86 #include "core/ConfigValueIncludes.h" 86 87 #include "core/CommandExecutor.h" 88 #include "core/Core.h" 87 89 #include "core/Executor.h" 90 #include "core/ObjectList.h" 91 #include "core/Super.h" 88 92 #include "core/XMLIncludes.h" 89 93 #include "core/XMLPort.h" 94 #include "core/input/SimpleInputState.h" 95 #include "core/input/InputManager.h" 90 96 91 97 #include "network/Synchronisable.h" 92 98 93 //#include "tools/Mesh.h" 94 //#include "tools/Timer.h" 95 //#include "objects/Model.h" 96 //#include "objects/Tickable.h" 97 //#include "objects/WorldEntity.h" 99 #include "Settings.h" 98 100 99 #endif /* ifdef NDEBUG */101 //#endif /* ifdef NDEBUG */ 100 102 101 103 #endif /* ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC && !defined(ORXONOX_DISABLE_PCH) */ -
code/branches/objecthierarchy/src/orxonox/gamestates/GSGraphics.cc
r2007 r2013 489 489 it->windowResized(this->renderWindow_->getWidth(), this->renderWindow_->getHeight()); 490 490 491 492 491 // OIS needs this under linux even if we only use relative input measurement. 492 if (this->inputManager_) 493 493 this->inputManager_->setWindowExtents(renderWindow_->getWidth(), renderWindow_->getHeight()); 494 494 } … … 506 506 507 507 // instruct InputManager to clear the buffers (core library so we cannot use the interface) 508 508 if (this->inputManager_) 509 509 this->inputManager_->clearBuffers(); 510 510 } … … 518 518 void GSGraphics::windowClosed(Ogre::RenderWindow *rw) 519 519 { 520 // using CommandExecutor in order to avoid depending on Orxonox.h.521 //CommandExecutor::execute("exit", false);522 520 this->requestState("root"); 523 521 } -
code/branches/objecthierarchy/src/orxonox/gamestates/GSIOConsole.cc
r1755 r2013 36 36 37 37 #include "core/ConsoleCommand.h" 38 #include "core/TclThreadManager.h"39 38 #include "GraphicsEngine.h" 40 39 -
code/branches/objecthierarchy/src/orxonox/gui/OgreCEGUIRenderer.cpp
r1755 r2013 25 25 *************************************************************************/ 26 26 27 #include "OrxonoxStableHeaders.h" 27 28 #include <CEGUIImagesetManager.h> 28 29 #include <CEGUIImageset.h> -
code/branches/objecthierarchy/src/orxonox/gui/OgreCEGUIResourceProvider.cpp
r1755 r2013 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 #include "OrxonoxStableHeaders.h" 26 27 #include "OgreCEGUIResourceProvider.h" 27 28 -
code/branches/objecthierarchy/src/orxonox/gui/OgreCEGUITexture.cpp
r1755 r2013 25 25 *************************************************************************/ 26 26 27 #include "OrxonoxStableHeaders.h" 27 28 #include <CEGUISystem.h> 28 29 #include <CEGUIExceptions.h> -
code/branches/objecthierarchy/src/orxonox/objects/Trigger.h
r1969 r2013 36 36 37 37 #include "worldentities/PositionableEntity.h" 38 39 #include "../tools/BillboardSet.h" 38 #include "tools/BillboardSet.h" 40 39 41 40 namespace orxonox {
Note: See TracChangeset
for help on using the changeset viewer.