Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/orxonox/OrxonoxPrereqs.h @ 2485

Last change on this file since 2485 was 2485, checked in by landauf, 15 years ago

Merged objecthierarchy2 into presentation branch

Couln't merge 2 lines in Gamestate.cc and a whole block of code in GSDedicated.cc (it seems like oli implemented in both branches something like a network-tick-limiter but with different approaches)

Not yet tested in network mode and with bots
The SpaceShips movement is also not yet fully adopted to the new physics (see Engine class)

  • Property svn:eol-style set to native
File size: 5.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//-----------------------------------------------------------------------
42#if (ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32) && !(defined(ORXONOX_STATIC_BUILD) || defined(ORXONOX_NO_EXPORTS))
43#  ifdef ORXONOX_SHARED_BUILD
44#    define _OrxonoxExport __declspec(dllexport)
45#  else
46#    if defined( __MINGW32__ )
47#      define _OrxonoxExport
48#    else
49#      define _OrxonoxExport __declspec(dllimport)
50#    endif
51#  endif
52#elif defined ( ORXONOX_GCC_VISIBILITY )
53#  define _OrxonoxExport  __attribute__ ((visibility("default")))
54#else
55#  define _OrxonoxExport
56#endif
[729]57
58//-----------------------------------------------------------------------
[1024]59// Forward declarations
60//-----------------------------------------------------------------------
[729]61
[1563]62namespace orxonox
63{
[1625]64    namespace LODParticle
[1563]65    {
[1625]66        enum LOD
67        {
68            off = 0,
69            low = 1,
70            normal = 2,
71            high = 3
72        };
73    }
[1563]74
[1625]75    class GraphicsEngine;
[1755]76    class Settings;
[612]77
[1625]78    class RadarViewable;
79    class Radar;
80    class RadarListener;
[1024]81
[2087]82    class CameraManager;
83    class LevelManager;
[2485]84    class PawnManager;
[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;
[2385]105    class QuestListener;
[2095]106    class QuestManager;
107    class Rewardable;
108
[2087]109    class WorldEntity;
[2459]110    class StaticEntity;
111    class MobileEntity;
112    class ControllableEntity;
[2087]113    class MovableEntity;
114    class Sublevel;
115
116    class Model;
117    class Billboard;
118    class BlinkingBillboard;
[2485]119    class ExplosionChunk;
120    class FadingBillboard;
121    class GlobalShader;
[2087]122    class Light;
[1625]123    class Backlight;
[2087]124    class ParticleEmitter;
125    class ParticleSpawner;
126
[1625]127    class Camera;
[2087]128    class CameraPosition;
129    class SpawnPoint;
130
131    class Spectator;
132    class Pawn;
[1625]133    class SpaceShip;
[1552]134
[2485]135    class Item;
136    class Engine;
137    class MultiStateEngine;
138    class RotatingEngine;
139
[2087]140    class Trigger;
141    class DistanceTrigger;
142    class EventTrigger;
[2261]143    class PlayerTrigger;
[1024]144
[2096]145    class WeaponSystem;
146    class WeaponSet;
147    class WeaponSlot;
148    class Weapon;
149    class Munition;
150
[2087]151    class EventListener;
152    class EventDispatcher;
153    class EventTarget;
154
155    class Controller;
156    class HumanController;
[2485]157    class ArtificialController;
158    class AIController;
159    class ScriptController;
[2087]160
161    class Info;
162    class PlayerInfo;
163    class HumanPlayer;
[2485]164    class Bot;
165    class GametypeInfo;
[2087]166
167    class Gametype;
168
169    class Scores;
170
[2459]171    // collision
172    class CollisionShape;
173    class SphereCollisionShape;
174    class CompoundCollisionShape;
175    class PlaneCollisionShape;
176
[1625]177    // tools
178    class BillboardSet;
179    class Light;
180    class Mesh;
181    class ParticleInterface;
[2485]182    class Shader;
[1625]183    template <class T>
184    class Timer;
[612]185
[1625]186    // overlays
187    class BarColour;
188    class DebugFPSText;
189    class DebugRTRText;
190    class HUDBar;
191    class HUDNavigation;
192    class HUDRadar;
193    class HUDSpeedBar;
[2485]194    class HUDHealthBar;
[1625]195    class InGameConsole;
[2385]196    class Notification;
197    class NotificationManager;
198    class NotificationQueue;
[1625]199    class OrxonoxOverlay;
200    class OverlayGroup;
201    class OverlayText;
[2485]202    class GametypeStatus;
[1755]203
204    //gui
205    class GUIManager;
206
207    // game states
208    class GSRoot;
209    class GSGraphics;
210    class GSIO;
211    class GSIOConsole;
212    class GSLevel;
213    class GSStandalone;
214    class GSServer;
215    class GSClient;
216    class GSGUI;
[1625]217}
[708]218
[1625]219namespace Ogre
220{
221    // some got forgotten in OgrePrerequisites
222    class BorderPanelOverlayElement;
223    class PanelOverlayElement;
224    class TextAreaOverlayElement;
[612]225}
226
[1755]227namespace CEGUI
228{
229    class LuaScriptModule;
230
231    class OgreCEGUIRenderer;
232    class OgreCEGUIResourceProvider;
233    class OgreCEGUITexture;
234}
235
[2459]236// Bullet Physics Engine
237
238class btTransform;
239class btVector3;
240
241class btRigidBody;
242class btCollisionObject;
243class btGhostObject;
[2466]244class btManifoldPoint;
[2459]245
246class btCollisionShape;
247class btSphereShape;
248class btCompoundShape;
249class btStaticPlaneShape;
250
251class btDiscreteDynamicsWorld;
252class bt32BitAxisSweep3;
253class btDefaultCollisionConfiguration;
254class btCollisionDispatcher;
255class btSequentialImpulseConstraintSolver;
256
257// lua
[1755]258struct lua_State;
259
[673]260#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.