Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/src/orxonox/OrxonoxPrereqs.h @ 2583

Last change on this file since 2583 was 2583, checked in by rgrieder, 17 years ago
  • Use $ENV{BOOST_ROOT} to find boost if possible
  • Set TOLUA_PARSER_WORKING_DIRECTORY now defaults to ${CMAKE_RUNTIME_OUTPUT_PATH}
  • Added bin/release, bin/debug, release and debug to the Ogre library prefix paths
  • Lots of small fixes and changes
  • Property svn:eol-style set to native
File size: 4.6 KB
RevLine 
[612]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
[1505]3 *                    > www.orxonox.net <
[612]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:
[682]23 *      Reto Grieder
[612]24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
[1024]30  @file
31  @brief Contains all the necessary forward declarations for all classes and structs.
32*/
[612]33
[673]34#ifndef _OrxonoxPrereqs_H__
35#define _OrxonoxPrereqs_H__
[612]36
[1502]37#include "util/OrxonoxPlatform.h"
[612]38
[1024]39//-----------------------------------------------------------------------
40// Shared library settings
41//-----------------------------------------------------------------------
[2583]42#define ORXONOX_NO_EXPORTS // This is an executable that needs no exports
[1024]43#if (ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32) && !(defined(ORXONOX_STATIC_BUILD) || defined(ORXONOX_NO_EXPORTS))
44#  ifdef ORXONOX_SHARED_BUILD
45#    define _OrxonoxExport __declspec(dllexport)
46#  else
47#    if defined( __MINGW32__ )
48#      define _OrxonoxExport
49#    else
50#      define _OrxonoxExport __declspec(dllimport)
51#    endif
52#  endif
53#elif defined ( ORXONOX_GCC_VISIBILITY )
54#  define _OrxonoxExport  __attribute__ ((visibility("default")))
55#else
56#  define _OrxonoxExport
57#endif
[729]58
59//-----------------------------------------------------------------------
[1024]60// Forward declarations
61//-----------------------------------------------------------------------
[729]62
[1563]63namespace orxonox
64{
[1625]65    namespace LODParticle
[1563]66    {
[1625]67        enum LOD
68        {
69            off = 0,
70            low = 1,
71            normal = 2,
72            high = 3
73        };
74    }
[1563]75
[1625]76    class GraphicsEngine;
[1755]77    class Settings;
[612]78
[1625]79    class RadarViewable;
80    class Radar;
81    class RadarListener;
[1024]82
[2087]83    class CameraManager;
84    class LevelManager;
[2171]85    class PlayerManager;
[2087]86
[1625]87    // objects
[2171]88    class Level;
[2087]89    class Scene;
90
[2095]91    class AddQuest;
92    class AddQuestHint;
93    class AddReward;
94    class ChangeQuestStatus;
95    class CompleteQuest;
96    class FailQuest;
97    class GlobalQuest;
98    class LocalQuest;
99    class Quest;
100    class QuestDescription;
101    class QuestEffect;
[2261]102    class QuestEffectBeacon;
[2095]103    class QuestHint;
104    class QuestItem;
105    class QuestManager;
106    class Rewardable;
107
[2087]108    class WorldEntity;
109    class PositionableEntity;
110    class MovableEntity;
111    class ControllableEntity;
112    class Sublevel;
113
114    class Model;
115    class Billboard;
116    class BlinkingBillboard;
117    class Light;
[1625]118    class Backlight;
[2087]119    class ParticleEmitter;
120    class ParticleSpawner;
121
[1625]122    class Camera;
[2087]123    class CameraPosition;
124    class SpawnPoint;
125
126    class Spectator;
127    class Pawn;
[1625]128    class SpaceShip;
[1552]129
[2087]130    class Trigger;
131    class DistanceTrigger;
132    class EventTrigger;
[2261]133    class PlayerTrigger;
[1024]134
[2096]135    class WeaponSystem;
136    class WeaponSet;
137    class WeaponSlot;
138    class Weapon;
139    class Munition;
140
[2087]141    class EventListener;
142    class EventDispatcher;
143    class EventTarget;
144
145    class Controller;
146    class HumanController;
147
148    class Info;
149    class PlayerInfo;
150    class HumanPlayer;
151
152    class Gametype;
153
154    class Scores;
155
[1625]156    // tools
157    class BillboardSet;
158    class Light;
159    class Mesh;
160    class ParticleInterface;
161    template <class T>
162    class Timer;
[612]163
[1625]164    // overlays
165    class BarColour;
166    class DebugFPSText;
167    class DebugRTRText;
168    class HUDBar;
169    class HUDNavigation;
170    class HUDRadar;
171    class HUDSpeedBar;
172    class InGameConsole;
173    class OrxonoxOverlay;
174    class OverlayGroup;
175    class OverlayText;
[1755]176
177    //gui
178    class GUIManager;
179
180    // game states
181    class GSRoot;
182    class GSGraphics;
183    class GSIO;
184    class GSIOConsole;
185    class GSLevel;
186    class GSStandalone;
187    class GSServer;
188    class GSClient;
189    class GSGUI;
[1625]190}
[708]191
[1625]192namespace Ogre
193{
194    // some got forgotten in OgrePrerequisites
195    class BorderPanelOverlayElement;
196    class PanelOverlayElement;
197    class TextAreaOverlayElement;
[612]198}
199
[1755]200namespace CEGUI
201{
202    class LuaScriptModule;
203
204    class OgreCEGUIRenderer;
205    class OgreCEGUIResourceProvider;
206    class OgreCEGUITexture;
207}
208
209struct lua_State;
210
[673]211#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.