| [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 |  | 
|---|
| [1631] | 39 | #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC | 
|---|
| [1505] | 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 |  | 
|---|
| [1638] | 48 | #include <Ogre.h> | 
|---|
 | 49 | #include <CEGUI.h> | 
|---|
 | 50 | #include <boost/thread/recursive_mutex.hpp> | 
|---|
| [1670] | 51 | #include <boost/thread/mutex.hpp> | 
|---|
 | 52 | #include <boost/thread/condition.hpp> | 
|---|
 | 53 | #include <boost/thread/thread.hpp> | 
|---|
| [1638] | 54 |  | 
|---|
| [1064] | 55 | //----------------------------------------------------------------------- | 
|---|
 | 56 | // ORXONOX HEADERS | 
|---|
 | 57 | //----------------------------------------------------------------------- | 
|---|
 | 58 |  | 
|---|
| [1543] | 59 | #include "tinyxml/ticpp.h" | 
|---|
 | 60 | #include "tinyxml/tinyxml.h" | 
|---|
| [1219] | 61 |  | 
|---|
| [1543] | 62 | #include "util/Convert.h" | 
|---|
| [1505] | 63 | #include "util/Math.h" | 
|---|
| [1543] | 64 | #include "util/Multitype.h" | 
|---|
 | 65 | #include "util/MultiTypeMath.h" | 
|---|
| [1505] | 66 | #include "util/Sleep.h" | 
|---|
 | 67 | #include "util/String.h" | 
|---|
 | 68 | #include "util/SubString.h" | 
|---|
| [1543] | 69 | #include "util/XMLIncludes.h" | 
|---|
| [1505] | 70 |  | 
|---|
 | 71 | #include "core/BaseObject.h" | 
|---|
| [1543] | 72 | #include "core/ConsoleCommand.h" | 
|---|
 | 73 | #include "core/CoreIncludes.h" | 
|---|
 | 74 | #include "core/ConfigValueIncludes.h" | 
|---|
| [1638] | 75 | #include "core/CommandExecutor.h" | 
|---|
| [1505] | 76 | #include "core/Debug.h" | 
|---|
| [1638] | 77 | #include "core/Executor.h" | 
|---|
| [1543] | 78 | #include "core/OutputBuffer.h" | 
|---|
 | 79 | #include "core/OutputHandler.h" | 
|---|
 | 80 | #include "core/XMLPort.h" | 
|---|
| [1505] | 81 |  | 
|---|
 | 82 | #include "network/Synchronisable.h" | 
|---|
 | 83 |  | 
|---|
| [1628] | 84 | //#include "tools/Mesh.h" | 
|---|
 | 85 | //#include "tools/Timer.h" | 
|---|
 | 86 | //#include "objects/Model.h" | 
|---|
 | 87 | //#include "objects/Tickable.h" | 
|---|
 | 88 | //#include "objects/WorldEntity.h" | 
|---|
| [1505] | 89 |  | 
|---|
 | 90 | #endif /* Compiler MSVC */ | 
|---|
 | 91 |  | 
|---|
 | 92 | #endif /* _OrxonoxStableHeaders_H__ */ | 
|---|