Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2013


Ignore:
Timestamp:
Oct 25, 2008, 9:50:26 PM (16 years ago)
Author:
rgrieder
Message:

tiny adjustments to various files. just came across certain things..

Location:
code/branches/objecthierarchy
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/init/common/def_keybindings.ini

    r1994 r2013  
    4040KeyF8=
    4141KeyF9=
    42 KeyG=
     42KeyG=greet
    4343KeyGrave="openConsole"
    4444KeyH=
  • code/branches/objecthierarchy/src/core/ArgumentCompletionFunctions.cc

    r1505 r2013  
    3030#include <map>
    3131
    32 #include "boost/filesystem.hpp"
     32#include <boost/filesystem.hpp>
    3333
    3434#include "ArgumentCompletionFunctions.h"
  • code/branches/objecthierarchy/src/core/Template.cc

    r1993 r2013  
    2727 */
    2828
    29 #include "OrxonoxStableHeaders.h"
    3029#include "Template.h"
    3130
  • code/branches/objecthierarchy/src/orxonox/OrxonoxStableHeaders.h

    r1841 r2013  
    3737#include "util/OrxonoxPlatform.h"
    3838
    39 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC && !defined(ORXONOX_DISABLE_PCH)
     39#if defined(ORXONOX_ENABLE_PCH)
    4040
    4141// including std headers here is useless since they're already precompiled
     
    4747#include <Ogre.h>
    4848#include <CEGUI.h>
     49#include "ois/OIS.h"
    4950#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>
    5455#include "tinyxml/ticpp.h"
    5556#include "tinyxml/tinyxml.h"
     57#include "tolua/tolua++.h"
    5658
    57 //Get around Windows hackery (windows.h is included by Ogre)
     59//Get around Windows hackery (windows.h is included by Ogre.h)
    5860#if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32
    5961#  ifdef max
     
    6769//----------- Our files ----------
    6870//--------------------------------
    69 // only include when not debugging so that we may find issues with missing headers quicker
    70 #if defined(NDEBUG)
     71//// only include when not debugging so that we may find issues with missing headers quicker
     72//#if defined(NDEBUG)
    7173
    7274#include "util/Convert.h"
    7375#include "util/Debug.h"
     76#include "util/Exception.h"
    7477#include "util/Math.h"
    7578#include "util/Multitype.h"
    76 #include "util/OutputBuffer.h"
    77 #include "util/OutputHandler.h"
    7879#include "util/Sleep.h"
    7980#include "util/String.h"
     
    8586#include "core/ConfigValueIncludes.h"
    8687#include "core/CommandExecutor.h"
     88#include "core/Core.h"
    8789#include "core/Executor.h"
     90#include "core/ObjectList.h"
     91#include "core/Super.h"
    8892#include "core/XMLIncludes.h"
    8993#include "core/XMLPort.h"
     94#include "core/input/SimpleInputState.h"
     95#include "core/input/InputManager.h"
    9096
    9197#include "network/Synchronisable.h"
    9298
    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"
    98100
    99 #endif /* ifdef NDEBUG */
     101//#endif /* ifdef NDEBUG */
    100102
    101103#endif /* ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC && !defined(ORXONOX_DISABLE_PCH) */
  • code/branches/objecthierarchy/src/orxonox/gamestates/GSGraphics.cc

    r2007 r2013  
    489489            it->windowResized(this->renderWindow_->getWidth(), this->renderWindow_->getHeight());
    490490
    491                 // OIS needs this under linux even if we only use relative input measurement.
    492                 if (this->inputManager_)
     491        // OIS needs this under linux even if we only use relative input measurement.
     492        if (this->inputManager_)
    493493            this->inputManager_->setWindowExtents(renderWindow_->getWidth(), renderWindow_->getHeight());
    494494    }
     
    506506
    507507        // instruct InputManager to clear the buffers (core library so we cannot use the interface)
    508                 if (this->inputManager_)
     508        if (this->inputManager_)
    509509            this->inputManager_->clearBuffers();
    510510    }
     
    518518    void GSGraphics::windowClosed(Ogre::RenderWindow *rw)
    519519    {
    520         // using CommandExecutor in order to avoid depending on Orxonox.h.
    521         //CommandExecutor::execute("exit", false);
    522520        this->requestState("root");
    523521    }
  • code/branches/objecthierarchy/src/orxonox/gamestates/GSIOConsole.cc

    r1755 r2013  
    3636
    3737#include "core/ConsoleCommand.h"
    38 #include "core/TclThreadManager.h"
    3938#include "GraphicsEngine.h"
    4039
  • code/branches/objecthierarchy/src/orxonox/gui/OgreCEGUIRenderer.cpp

    r1755 r2013  
    2525*************************************************************************/
    2626
     27#include "OrxonoxStableHeaders.h"
    2728#include <CEGUIImagesetManager.h>
    2829#include <CEGUIImageset.h>
  • code/branches/objecthierarchy/src/orxonox/gui/OgreCEGUIResourceProvider.cpp

    r1755 r2013  
    2424    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    2525*************************************************************************/
     26#include "OrxonoxStableHeaders.h"
    2627#include "OgreCEGUIResourceProvider.h"
    2728
  • code/branches/objecthierarchy/src/orxonox/gui/OgreCEGUITexture.cpp

    r1755 r2013  
    2525*************************************************************************/
    2626
     27#include "OrxonoxStableHeaders.h"
    2728#include <CEGUISystem.h>
    2829#include <CEGUIExceptions.h>
  • code/branches/objecthierarchy/src/orxonox/objects/Trigger.h

    r1969 r2013  
    3636
    3737#include "worldentities/PositionableEntity.h"
    38 
    39 #include "../tools/BillboardSet.h"
     38#include "tools/BillboardSet.h"
    4039
    4140namespace orxonox {
  • code/branches/objecthierarchy/visual_studio/vc8/core.vcproj

    r1994 r2013  
    604604                                </File>
    605605                                <File
    606                                         RelativePath="..\..\src\core\Level.h"
    607                                         >
    608                                 </File>
    609                                 <File
    610606                                        RelativePath="..\..\src\core\Loader.h"
    611607                                        >
     
    617613                                <File
    618614                                        RelativePath="..\..\src\core\NamespaceNode.h"
     615                                        >
     616                                </File>
     617                                <File
     618                                        RelativePath="..\..\src\core\XMLFile.h"
    619619                                        >
    620620                                </File>
  • code/branches/objecthierarchy/visual_studio/vc8/network.vcproj

    r1947 r2013  
    149149                        >
    150150                        <File
     151                                RelativePath="..\..\src\network\ChatListener.cc"
     152                                >
     153                        </File>
     154                        <File
    151155                                RelativePath="..\..\src\network\Client.cc"
    152156                                >
     
    235239                        >
    236240                        <File
     241                                RelativePath="..\..\src\network\ChatListener.h"
     242                                >
     243                        </File>
     244                        <File
    237245                                RelativePath="..\..\src\network\Client.h"
    238246                                >
  • code/branches/objecthierarchy/visual_studio/vc8/orxonox.vcproj

    r1994 r2013  
    3939                        <Tool
    4040                                Name="VCCLCompilerTool"
    41                                 AdditionalOptions="/Zm200"
    4241                        />
    4342                        <Tool
     
    103102                        <Tool
    104103                                Name="VCCLCompilerTool"
    105                                 AdditionalOptions="/Zm200"
    106104                        />
    107105                        <Tool
     
    275273                                        </File>
    276274                                        <File
    277                                                 RelativePath="..\..\src\orxonox\objects\infos\LevelInfo.cc"
     275                                                RelativePath="..\..\src\orxonox\objects\infos\Level.cc"
    278276                                                >
    279277                                        </File>
     
    405403                                        >
    406404                                        <File
     405                                                RelativePath="..\..\src\orxonox\overlays\hud\ChatOverlay.cc"
     406                                                >
     407                                        </File>
     408                                        <File
    407409                                                RelativePath="..\..\src\orxonox\overlays\hud\HUDBar.cc"
    408410                                                >
     
    444446                                        RelativePath="..\..\src\orxonox\gui\OgreCEGUIRenderer.cpp"
    445447                                        >
    446                                         <FileConfiguration
    447                                                 Name="Debug|Win32"
    448                                                 >
    449                                                 <Tool
    450                                                         Name="VCCLCompilerTool"
    451                                                         UsePrecompiledHeader="0"
    452                                                 />
    453                                         </FileConfiguration>
    454                                         <FileConfiguration
    455                                                 Name="Release|Win32"
    456                                                 >
    457                                                 <Tool
    458                                                         Name="VCCLCompilerTool"
    459                                                         UsePrecompiledHeader="0"
    460                                                 />
    461                                         </FileConfiguration>
    462448                                </File>
    463449                                <File
    464450                                        RelativePath="..\..\src\orxonox\gui\OgreCEGUIResourceProvider.cpp"
    465451                                        >
    466                                         <FileConfiguration
    467                                                 Name="Debug|Win32"
    468                                                 >
    469                                                 <Tool
    470                                                         Name="VCCLCompilerTool"
    471                                                         UsePrecompiledHeader="0"
    472                                                 />
    473                                         </FileConfiguration>
    474                                         <FileConfiguration
    475                                                 Name="Release|Win32"
    476                                                 >
    477                                                 <Tool
    478                                                         Name="VCCLCompilerTool"
    479                                                         UsePrecompiledHeader="0"
    480                                                 />
    481                                         </FileConfiguration>
    482452                                </File>
    483453                                <File
    484454                                        RelativePath="..\..\src\orxonox\gui\OgreCEGUITexture.cpp"
    485455                                        >
    486                                         <FileConfiguration
    487                                                 Name="Debug|Win32"
    488                                                 >
    489                                                 <Tool
    490                                                         Name="VCCLCompilerTool"
    491                                                         UsePrecompiledHeader="0"
    492                                                 />
    493                                         </FileConfiguration>
    494                                         <FileConfiguration
    495                                                 Name="Release|Win32"
    496                                                 >
    497                                                 <Tool
    498                                                         Name="VCCLCompilerTool"
    499                                                         UsePrecompiledHeader="0"
    500                                                 />
    501                                         </FileConfiguration>
    502456                                </File>
    503457                        </Filter>
     
    655609                                        </File>
    656610                                        <File
    657                                                 RelativePath="..\..\src\orxonox\objects\infos\LevelInfo.h"
     611                                                RelativePath="..\..\src\orxonox\objects\infos\Level.h"
    658612                                                >
    659613                                        </File>
     
    734688                                        Name="hud"
    735689                                        >
     690                                        <File
     691                                                RelativePath="..\..\src\orxonox\overlays\hud\ChatOverlay.h"
     692                                                >
     693                                        </File>
    736694                                        <File
    737695                                                RelativePath="..\..\src\orxonox\overlays\hud\HUDBar.h"
  • code/branches/objecthierarchy/visual_studio/vc8/orxonox.vsprops

    r1918 r2013  
    88        <Tool
    99                Name="VCCLCompilerTool"
    10                 AdditionalOptions="/MP2"
    11                 PreprocessorDefinitions="ORXONOX_NO_EXPORTS;LUA_BUILD_AS_DLL"
     10                AdditionalOptions="/MP2 /Zm200"
     11                PreprocessorDefinitions="ORXONOX_NO_EXPORTS;ORXONOX_ENABLE_PCH;LUA_BUILD_AS_DLL"
    1212                UsePrecompiledHeader="2"
    1313                PrecompiledHeaderThrough="OrxonoxStableHeaders.h"
Note: See TracChangeset for help on using the changeset viewer.