Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Merged revisions 8098 - 8277 from kicklib to kicklib2.

  • Property svn:eol-style set to native
File size: 8.5 KB
RevLine 
[682]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
[1502]3 *                    > www.orxonox.net <
[682]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/**
[5929]30@file
31@brief
32    Shared library macros, enums, constants and forward declarations for the core library
[871]33*/
[682]34
35#ifndef _CorePrereqs_H__
36#define _CorePrereqs_H__
37
[2710]38#include "OrxonoxConfig.h"
[7169]39#include <boost/version.hpp>
[8283]40#include <CEGUIVersion.h>
[1062]41
[728]42//-----------------------------------------------------------------------
43// Shared library settings
44//-----------------------------------------------------------------------
[5929]45
[2710]46#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined( CORE_STATIC_BUILD )
[728]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
[8284]56#  define _CorePrivate
57#elif defined (ORXONOX_GCC_VISIBILITY)
[728]58#  define _CoreExport  __attribute__ ((visibility("default")))
[8284]59#  define _CorePrivate __attribute__ ((visibility("hidden")))
[728]60#else
61#  define _CoreExport
[8284]62#  define _CorePrivate
[728]63#endif
[682]64
[5929]65//-----------------------------------------------------------------------
66// Constants
67//-----------------------------------------------------------------------
[728]68
[5929]69namespace orxonox
70{
71    static const uint32_t OBJECTID_UNKNOWN = static_cast<uint32_t>(-1);
72}
73
[682]74//-----------------------------------------------------------------------
[5929]75// Enums
[728]76//-----------------------------------------------------------------------
[5929]77
[728]78namespace orxonox
[684]79{
[3196]80    namespace XMLPort
[1052]81    {
[3196]82        enum Mode
83        {
[5929]84            NOP,
[3196]85            LoadObject,
86            SaveObject,
87            ExpandObject
88        };
89    }
[1052]90
[6536]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
[3196]102    namespace KeybindMode
[1502]103    {
[3280]104        enum Value
[3196]105        {
106            OnPress,
107            OnHold,
108            OnRelease,
109            None
110        };
[1502]111    };
[5929]112}
[1349]113
[5929]114//-----------------------------------------------------------------------
115// Forward declarations
116//-----------------------------------------------------------------------
117
118namespace orxonox
119{
[3196]120    typedef std::string LanguageEntryLabel;
[1024]121
[7271]122    template <class T, class U>
123    T orxonox_cast(U*);
124
[3196]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;
[6021]134    class CommandLineParser;
[3196]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;
[7849]144    class DestructionListener;
[5693]145    class DynLib;
146    class DynLibManager;
[3196]147    struct Event;
[5929]148    class EventState;
[3196]149    class Factory;
[5929]150    class Game;
151    class GameState;
152    struct GameStateInfo;
153    struct GameStateTreeNode;
[3370]154    class GraphicsManager;
155    class GUIManager;
[3196]156    class Identifier;
157    template <class T>
158    class Iterator;
159    class Language;
[7284]160    class LuaFunctor;
[5695]161    class LuaState;
162    class MemoryArchive;
163    class MemoryArchiveFactory;
[3196]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;
[3370]176    class OgreWindowEventListener;
[3196]177    class OrxonoxClass;
[5929]178    class PathConfig;
[5695]179    struct ResourceInfo;
[6536]180    class SettingsConfigFile;
[3196]181    template <class T>
[5929]182    class SmartPtr;
183    template <class T>
[3196]184    class SubclassIdentifier;
185    class Template;
[5929]186    class Thread;
187    class ThreadPool;
[8079]188    class ViewportEventListener;
[5929]189    template <class T>
190    class WeakPtr;
[3327]191    class WindowEventListener;
[3196]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;
[1219]200
[7284]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
[5929]226    // Input
[3196]227    class BaseCommand;
228    class BufferedParamCommand;
229    class Button;
230    class HalfAxis;
231    class InputBuffer;
[3327]232    class InputDevice;
233    template <class Traits>
234    class InputDeviceTemplated;
235    class InputHandler;
[3196]236    class InputManager;
237    class InputState;
[5929]238    struct InputStatePriority;
239    class JoyStickQuantityListener;
[3327]240    class JoyStick;
[5929]241    class KeyBinder;
242    class KeyBinderManager;
[3327]243    class Keyboard;
[3196]244    class KeyDetector;
[5929]245    class KeyEvent;
246    class Mouse;
[3196]247    class ParamCommand;
248    class SimpleCommand;
[682]249}
250
[7284]251#include "command/FunctorPtr.h"
252#include "command/ExecutorPtr.h"
253
[3196]254// CppTcl
255namespace Tcl
256{
257    class interpreter;
258    class object;
259}
260
261// Boost
[3304]262namespace boost
[3318]263{
[8285]264#if (BOOST_VERSION < 104400)
265
[3304]266    namespace filesystem
267    {
268        struct path_traits;
269        template <class String, class Traits> class basic_path;
270        typedef basic_path<std::string, path_traits> path;
271    }
[8285]272
273#elif (BOOST_VERSION < 104800)
274
275# if BOOST_FILESYSTEM_VERSION == 2
[7169]276    namespace filesystem2
277    {
278        struct path_traits;
279        template <class String, class Traits> class basic_path;
280        typedef basic_path<std::string, path_traits> path;
281    }
282    namespace filesystem
283    {
284        using filesystem2::basic_path;
285        using filesystem2::path_traits;
286        using filesystem2::path;
287    }
[8285]288# elif BOOST_FILESYSTEM_VERSION == 3
[8284]289    namespace filesystem3
290    {
291        class path;
292    }
293    namespace filesystem
294    {
295        using filesystem3::path;
296    }
[8285]297# endif
298
299#else
300
301    // TODO: Check this once boost 1.48 is released
302    namespace filesystem
303    {
304        class path;
305    }
306
[7169]307#endif
[8285]308
[3304]309    class thread;
310    class mutex;
[3318]311    class shared_mutex;
312    class condition_variable;
[3304]313}
[3196]314
[5695]315// Ogre
316namespace Ogre
317{
318    class DataStream;
319    template <class T> class SharedPtr;
320    typedef SharedPtr<DataStream> DataStreamPtr;
321}
322namespace orxonox
323{
324    // Import the Ogre::DataStream
325    using Ogre::DataStream;
326    using Ogre::DataStreamPtr;
327}
328
[3370]329// CEGUI
330namespace CEGUI
331{
332    class DefaultLogger;
333    class Logger;
334    class LuaScriptModule;
335
[8283]336#if CEGUI_VERSION_MAJOR < 1 && CEGUI_VERSION_MINOR < 7
[3370]337    class OgreCEGUIRenderer;
338    class OgreCEGUIResourceProvider;
339    class OgreCEGUITexture;
[8283]340#else
341    class OgreRenderer;
342    class OgreResourceProvider;
343    class OgreImageCodec;
344#endif
[3370]345}
346
347// Lua
348struct lua_State;
349
[3196]350// TinyXML and TinyXML++
351class TiXmlString;
352class TiXmlOutStream;
353class TiXmlNode;
354class TiXmlHandle;
355class TiXmlDocument;
356class TiXmlElement;
357class TiXmlComment;
358class TiXmlUnknown;
359class TiXmlAttribute;
360class TiXmlText;
361class TiXmlDeclaration;
362class TiXmlParsingData;
363namespace ticpp
364{
365    class Document;
366    class Element;
367    class Declaration;
368    class StylesheetReference;
369    class Text;
370    class Comment;
371    class Attribute;
372}
373namespace orxonox
374{
375    using ticpp::Element;
376}
377
[682]378#endif /* _CorePrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.