Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/kicklib2/src/libraries/core/CorePrereqs.h @ 8284

Last change on this file since 8284 was 8284, checked in by rgrieder, 13 years ago

Merged revisions 7978 - 8096 from kicklib to kicklib2.

  • Property svn:eol-style set to native
File size: 8.3 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
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
31@brief
32    Shared library macros, enums, constants and forward declarations for the core library
33*/
34
35#ifndef _CorePrereqs_H__
36#define _CorePrereqs_H__
37
38#include "OrxonoxConfig.h"
39#include <boost/version.hpp>
40#include <CEGUIVersion.h>
41
42//-----------------------------------------------------------------------
43// Shared library settings
44//-----------------------------------------------------------------------
45
46#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined( CORE_STATIC_BUILD )
47#  ifdef CORE_SHARED_BUILD
48#    define _CoreExport __declspec(dllexport)
49#  else
50#    if defined( __MINGW32__ )
51#      define _CoreExport
52#    else
53#      define _CoreExport __declspec(dllimport)
54#    endif
55#  endif
56#  define _CorePrivate
57#elif defined (ORXONOX_GCC_VISIBILITY)
58#  define _CoreExport  __attribute__ ((visibility("default")))
59#  define _CorePrivate __attribute__ ((visibility("hidden")))
60#else
61#  define _CoreExport
62#  define _CorePrivate
63#endif
64
65//-----------------------------------------------------------------------
66// Constants
67//-----------------------------------------------------------------------
68
69namespace orxonox
70{
71    static const uint32_t OBJECTID_UNKNOWN = static_cast<uint32_t>(-1);
72}
73
74//-----------------------------------------------------------------------
75// Enums
76//-----------------------------------------------------------------------
77
78namespace orxonox
79{
80    namespace XMLPort
81    {
82        enum Mode
83        {
84            NOP,
85            LoadObject,
86            SaveObject,
87            ExpandObject
88        };
89    }
90
91    namespace ConfigFileType
92    {
93        enum Value
94        {
95            Settings,
96            JoyStickCalibration,
97            CommandHistory
98            // Don't forget to adjust the array size in the ConfigFileManager when adding a new entry here!
99        };
100    }
101
102    namespace KeybindMode
103    {
104        enum Value
105        {
106            OnPress,
107            OnHold,
108            OnRelease,
109            None
110        };
111    };
112}
113
114//-----------------------------------------------------------------------
115// Forward declarations
116//-----------------------------------------------------------------------
117
118namespace orxonox
119{
120    typedef std::string LanguageEntryLabel;
121
122    template <class T, class U>
123    T orxonox_cast(U*);
124
125    class BaseObject;
126    template <class T>
127    class ClassFactory;
128    template <class T>
129    class ClassIdentifier;
130    class ClassTreeMask;
131    class ClassTreeMaskIterator;
132    class ClassTreeMaskNode;
133    class ClassTreeMaskObjectIterator;
134    class CommandLineParser;
135    class CommandLineArgument;
136    class ConfigFile;
137    class ConfigFileEntry;
138    class ConfigFileEntryComment;
139    class ConfigFileEntryValue;
140    class ConfigFileManager;
141    class ConfigFileSection;
142    class ConfigValueContainer;
143    class Core;
144    class DestructionListener;
145    class DynLib;
146    class DynLibManager;
147    struct Event;
148    class EventState;
149    class Factory;
150    class Game;
151    class GameState;
152    struct GameStateInfo;
153    struct GameStateTreeNode;
154    class GraphicsManager;
155    class GUIManager;
156    class Identifier;
157    template <class T>
158    class Iterator;
159    class Language;
160    class LuaFunctor;
161    class LuaState;
162    class MemoryArchive;
163    class MemoryArchiveFactory;
164    class MetaObjectList;
165    class MetaObjectListElement;
166    class Namespace;
167    class NamespaceNode;
168    template <class T>
169    class ObjectList;
170    class ObjectListBase;
171    class ObjectListBaseElement;
172    template <class T>
173    class ObjectListElement;
174    template <class T>
175    class ObjectListIterator;
176    class OgreWindowEventListener;
177    class OrxonoxClass;
178    class PathConfig;
179    struct ResourceInfo;
180    class SettingsConfigFile;
181    template <class T>
182    class SmartPtr;
183    template <class T>
184    class SubclassIdentifier;
185    class Template;
186    class Thread;
187    class ThreadPool;
188    class ViewportEventListener;
189    template <class T>
190    class WeakPtr;
191    class WindowEventListener;
192    class XMLFile;
193    class XMLNameListener;
194    template <class T, class O>
195    class XMLPortClassObjectContainer;
196    template <class T>
197    class XMLPortClassParamContainer;
198    class XMLPortObjectContainer;
199    class XMLPortParamContainer;
200
201    // Command
202    class ArgumentCompleter;
203    class ArgumentCompletionListElement;
204    class CommandEvaluation;
205    class ConsoleCommand;
206    class Executor;
207    template <class T>
208    class ExecutorMember;
209    class ExecutorStatic;
210    class Functor;
211    template <class O>
212    class FunctorMember;
213    typedef FunctorMember<void> FunctorStatic;
214    template <class F, class O>
215    class FunctorPointer;
216    class IOConsole;
217    class IRC;
218    class Shell;
219    class ShellListener;
220    class TclBind;
221    struct TclInterpreterBundle;
222    template <class T>
223    class TclThreadList;
224    class TclThreadManager;
225
226    // Input
227    class BaseCommand;
228    class BufferedParamCommand;
229    class Button;
230    class HalfAxis;
231    class InputBuffer;
232    class InputDevice;
233    template <class Traits>
234    class InputDeviceTemplated;
235    class InputHandler;
236    class InputManager;
237    class InputState;
238    struct InputStatePriority;
239    class JoyStickQuantityListener;
240    class JoyStick;
241    class KeyBinder;
242    class KeyBinderManager;
243    class Keyboard;
244    class KeyDetector;
245    class KeyEvent;
246    class Mouse;
247    class ParamCommand;
248    class SimpleCommand;
249}
250
251#include "command/FunctorPtr.h"
252#include "command/ExecutorPtr.h"
253
254// CppTcl
255namespace Tcl
256{
257    class interpreter;
258    class object;
259}
260
261// Boost
262namespace boost
263{
264#if BOOST_VERSION < 104400
265    namespace filesystem
266    {
267        struct path_traits;
268        template <class String, class Traits> class basic_path;
269        typedef basic_path<std::string, path_traits> path;
270    }
271#elif BOOST_VERSION < 104600
272    namespace filesystem2
273    {
274        struct path_traits;
275        template <class String, class Traits> class basic_path;
276        typedef basic_path<std::string, path_traits> path;
277    }
278    namespace filesystem
279    {
280        using filesystem2::basic_path;
281        using filesystem2::path_traits;
282        using filesystem2::path;
283    }
284#else
285    namespace filesystem3
286    {
287        class path;
288    }
289    namespace filesystem
290    {
291        using filesystem3::path;
292    }
293#endif
294    class thread;
295    class mutex;
296    class shared_mutex;
297    class condition_variable;
298}
299
300// Ogre
301namespace Ogre
302{
303    class DataStream;
304    template <class T> class SharedPtr;
305    typedef SharedPtr<DataStream> DataStreamPtr;
306}
307namespace orxonox
308{
309    // Import the Ogre::DataStream
310    using Ogre::DataStream;
311    using Ogre::DataStreamPtr;
312}
313
314// CEGUI
315namespace CEGUI
316{
317    class DefaultLogger;
318    class Logger;
319    class LuaScriptModule;
320
321#if CEGUI_VERSION_MAJOR < 1 && CEGUI_VERSION_MINOR < 7
322    class OgreCEGUIRenderer;
323    class OgreCEGUIResourceProvider;
324    class OgreCEGUITexture;
325#else
326    class OgreRenderer;
327    class OgreResourceProvider;
328    class OgreImageCodec;
329#endif
330}
331
332// Lua
333struct lua_State;
334
335// TinyXML and TinyXML++
336class TiXmlString;
337class TiXmlOutStream;
338class TiXmlNode;
339class TiXmlHandle;
340class TiXmlDocument;
341class TiXmlElement;
342class TiXmlComment;
343class TiXmlUnknown;
344class TiXmlAttribute;
345class TiXmlText;
346class TiXmlDeclaration;
347class TiXmlParsingData;
348namespace ticpp
349{
350    class Document;
351    class Element;
352    class Declaration;
353    class StylesheetReference;
354    class Text;
355    class Comment;
356    class Attribute;
357}
358namespace orxonox
359{
360    using ticpp::Element;
361}
362
363#endif /* _CorePrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.