| [786] | 1 | /* | 
|---|
 | 2 |  *   ORXONOX - the hottest 3D action shooter ever to exist | 
|---|
| [1505] | 3 |  *                    > www.orxonox.net < | 
|---|
| [786] | 4 |  * | 
|---|
 | 5 |  * | 
|---|
 | 6 |  *   License notice: | 
|---|
 | 7 |  * | 
|---|
 | 8 |  *   This program is free software; you can redistribute it and/or | 
|---|
 | 9 |  *   modify it under the terms of the GNU General Public License | 
|---|
 | 10 |  *   as published by the Free Software Foundation; either version 2 | 
|---|
 | 11 |  *   of the License, or (at your option) any later version. | 
|---|
 | 12 |  * | 
|---|
 | 13 |  *   This program is distributed in the hope that it will be useful, | 
|---|
 | 14 |  *   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
 | 15 |  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
 | 16 |  *   GNU General Public License for more details. | 
|---|
 | 17 |  * | 
|---|
 | 18 |  *   You should have received a copy of the GNU General Public License | 
|---|
 | 19 |  *   along with this program; if not, write to the Free Software | 
|---|
 | 20 |  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
|---|
 | 21 |  * | 
|---|
 | 22 |  *   Author: | 
|---|
 | 23 |  *      Reto Grieder | 
|---|
 | 24 |  *   Co-authors: | 
|---|
 | 25 |  *      ... | 
|---|
 | 26 |  * | 
|---|
 | 27 |  */ | 
|---|
 | 28 |  | 
|---|
 | 29 | /** | 
|---|
 | 30 |  @file  OrxonoxStableHeaders.h | 
|---|
 | 31 |  @brief Contains the bigger (or smaller) header files in order to precompile them with MSVC | 
|---|
 | 32 |  */ | 
|---|
| [1505] | 33 |  | 
|---|
 | 34 | #ifndef _OrxonoxStableHeaders_H__ | 
|---|
 | 35 | #define _OrxonoxStableHeaders_H__ | 
|---|
 | 36 |  | 
|---|
 | 37 | #include "util/OrxonoxPlatform.h" | 
|---|
 | 38 |  | 
|---|
 | 39 | #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC | 
|---|
 | 40 |  | 
|---|
 | 41 | // including std headers here is useless since they're already precompiled | 
|---|
 | 42 |  | 
|---|
 | 43 | #ifndef WIN32_LEAN_AND_MEAN | 
|---|
 | 44 | // prevent Ogre from including winsock.h that messes with winsock2.h from enet | 
|---|
 | 45 | #  define WIN32_LEAN_AND_MEAN | 
|---|
 | 46 | #endif | 
|---|
 | 47 | // not including the entire Ogre.h doesn't exceed the default heap size for pch | 
|---|
 | 48 | //#include <Ogre.h> | 
|---|
 | 49 | #include <OgreBillboardSet.h> | 
|---|
 | 50 | #include <OgreCamera.h> | 
|---|
 | 51 | #include <OgreColourValue.h> | 
|---|
 | 52 | #include <OgreConfigFile.h> | 
|---|
 | 53 | #include <OgreEntity.h> | 
|---|
 | 54 | #include <OgreException.h> | 
|---|
 | 55 | #include <OgreFrameListener.h> | 
|---|
 | 56 | #include <OgreLight.h> | 
|---|
 | 57 | #include <OgreLog.h> | 
|---|
 | 58 | #include <OgreLogManager.h> | 
|---|
 | 59 | #include <OgreMath.h> | 
|---|
 | 60 | #include <OgreMatrix3.h> | 
|---|
| [1543] | 61 | #include <OgreMatrix4.h> | 
|---|
 | 62 | #include <OgreMesh.h> | 
|---|
| [1505] | 63 | #include <OgreOverlay.h> | 
|---|
 | 64 | #include <OgreOverlayElement.h> | 
|---|
 | 65 | #include <OgreOverlayManager.h> | 
|---|
 | 66 | #include <OgreParticleEmitter.h> | 
|---|
 | 67 | #include <OgreParticleSystem.h> | 
|---|
 | 68 | #include <OgreQuaternion.h> | 
|---|
 | 69 | #include <OgreResourceGroupManager.h> | 
|---|
 | 70 | #include <OgreRenderWindow.h> | 
|---|
 | 71 | #include <OgreRoot.h> | 
|---|
 | 72 | #include <OgreSceneManager.h> | 
|---|
 | 73 | #include <OgreSceneNode.h> | 
|---|
| [1543] | 74 | #include <OgreString.h> | 
|---|
| [1505] | 75 | #include <OgreStringConverter.h> | 
|---|
 | 76 | #include <OgreTextureManager.h> | 
|---|
 | 77 | #include <OgreTimer.h> | 
|---|
 | 78 | #include <OgreVector2.h> | 
|---|
 | 79 | #include <OgreVector3.h> | 
|---|
 | 80 | #include <OgreVector3.h> | 
|---|
 | 81 | #include <OgreViewport.h> | 
|---|
 | 82 | #include <OgreWindowEventUtilities.h> | 
|---|
 | 83 |  | 
|---|
| [1064] | 84 | //----------------------------------------------------------------------- | 
|---|
 | 85 | // ORXONOX HEADERS | 
|---|
 | 86 | //----------------------------------------------------------------------- | 
|---|
 | 87 |  | 
|---|
| [1505] | 88 | #include "ois/OIS.h" | 
|---|
| [1543] | 89 | #include "cpptcl/CppTcl.h" | 
|---|
 | 90 | #include "tinyxml/ticpp.h" | 
|---|
 | 91 | #include "tinyxml/tinyxml.h" | 
|---|
| [1219] | 92 |  | 
|---|
| [1543] | 93 | #include "util/Convert.h" | 
|---|
| [1505] | 94 | #include "util/Math.h" | 
|---|
| [1543] | 95 | #include "util/Multitype.h" | 
|---|
 | 96 | #include "util/MultiTypeMath.h" | 
|---|
| [1505] | 97 | #include "util/Sleep.h" | 
|---|
 | 98 | #include "util/String.h" | 
|---|
 | 99 | #include "util/SubString.h" | 
|---|
| [1543] | 100 | #include "util/XMLIncludes.h" | 
|---|
| [1505] | 101 |  | 
|---|
 | 102 | #include "core/BaseObject.h" | 
|---|
| [1543] | 103 | #include "core/ConsoleCommand.h" | 
|---|
 | 104 | #include "core/CoreIncludes.h" | 
|---|
 | 105 | #include "core/ConfigValueIncludes.h" | 
|---|
| [1505] | 106 | #include "core/Debug.h" | 
|---|
| [1543] | 107 | #include "core/OutputBuffer.h" | 
|---|
 | 108 | #include "core/OutputHandler.h" | 
|---|
 | 109 | #include "core/Executor.h" | 
|---|
 | 110 | #include "core/XMLPort.h" | 
|---|
| [1505] | 111 |  | 
|---|
 | 112 | #include "network/Synchronisable.h" | 
|---|
 | 113 |  | 
|---|
| [1543] | 114 | #include "tools/Mesh.h" | 
|---|
| [1505] | 115 | #include "tools/Timer.h" | 
|---|
| [1543] | 116 | #include "objects/Model.h" | 
|---|
| [1535] | 117 | #include "objects/Tickable.h" | 
|---|
| [1505] | 118 | #include "objects/WorldEntity.h" | 
|---|
 | 119 |  | 
|---|
 | 120 | #endif /* Compiler MSVC */ | 
|---|
 | 121 |  | 
|---|
 | 122 | #endif /* _OrxonoxStableHeaders_H__ */ | 
|---|