RigsofRods
Soft-body Physics Simulation
pch.h
Go to the documentation of this file.
1 /*
2  This source file is part of Rigs of Rods
3  Copyright 2005-2012 Pierre-Michel Ricordel
4  Copyright 2007-2012 Thomas Fischer
5  Copyright 2013-2020 Petr Ohlidal & contributors
6 
7  For more information, see http://www.rigsofrods.org/
8 
9  Rigs of Rods is free software: you can redistribute it and/or modify
10  it under the terms of the GNU General Public License version 3, as
11  published by the Free Software Foundation.
12 
13  Rigs of Rods 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 Rigs of Rods. If not, see <http://www.gnu.org/licenses/>.
20 */
21 
22 #pragma once
23 
24 #include <memory>
25 #include <string>
26 #include <regex>
27 #include <future>
28 #include <thread>
29 #include <vector>
30 
31 
32 #include <Ogre.h>
33 #include <OgrePrerequisites.h>
34 #include <Bites/OgreWindowEventUtilities.h>
35 #include <Overlay/OgreFontManager.h>
36 #include <OgreUTFString.h>
37 #include <OIS.h>
38 #include <MyGUI.h>
39 #include <imgui.h>
40 #include <rapidjson/rapidjson.h>
41 #include <rapidjson/document.h>
42 #include <AL/al.h>
43 #include <AL/alc.h>
44 #include <moFileReader.hpp>
45 
46 
47 #ifdef USE_SOCKETW
48 #include <SocketW.h>
49 #endif// USE_SOCKETW
50 
51 #ifdef USE_DISCORD_RPC
52 #include <discord_rpc.h>
53 #endif// USE_DISCORD_RPC
54 
55 #ifdef USE_SOCKETW
56 #include <SocketW.h>
57 #endif// USE_SOCKETW
58 
59 #ifdef USE_ANGELSCRIPT
60 #include <angelscript.h>
61 #endif// USE_ANGELSCRIPT
62 
63 #ifdef USE_CURL
64 #include <curl/curl.h>
65 #endif// USE_CURL
66 
67 #ifdef USE_DISCORD_RPC
68 #include <discord_rpc.h>
69 #endif// USE_DISCORD_RPC
70 
71 #ifdef USE_CAELUM
72 #include <CaelumPrerequisites.h>
73 #include <Caelum.h>
74 #endif// USE_CAELUM
75 
76 #ifdef USE_PAGED
77 #include <PagedGeometry.h>
78 #include <TreeLoader2D.h>
79 #include <TreeLoader3D.h>
80 #include <BatchPage.h>
81 #include <GrassLoader.h>
82 #include <ImpostorPage.h>
83 #endif //USE_PAGED
84 
85 #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32
86 #include <windows.h>
87 #endif