Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/OrxonoxPrereqs.h @ 5693

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

merged libraries branch back to trunk

  • Property svn:eol-style set to native
File size: 5.4 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 Contains all the necessary forward declarations for all classes and structs.
32*/
33
34#ifndef _OrxonoxPrereqs_H__
35#define _OrxonoxPrereqs_H__
36
37#include "OrxonoxConfig.h"
38
39#include "tools/ToolsPrereqs.h"
40
41//-----------------------------------------------------------------------
42// Shared library settings
43//-----------------------------------------------------------------------
44#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined(ORXONOX_STATIC_BUILD)
45#  ifdef ORXONOX_SHARED_BUILD
46#    define _OrxonoxExport __declspec(dllexport)
47#  else
48#    if defined( __MINGW32__ )
49#      define _OrxonoxExport
50#    else
51#      define _OrxonoxExport __declspec(dllimport)
52#    endif
53#  endif
54#elif defined ( ORXONOX_GCC_VISIBILITY )
55#  define _OrxonoxExport  __attribute__ ((visibility("default")))
56#else
57#  define _OrxonoxExport
58#endif
59
60//-----------------------------------------------------------------------
61// Forward declarations
62//-----------------------------------------------------------------------
63
64namespace orxonox
65{
66    // manager
67    class CameraManager;
68    class LevelManager;
69    class PawnManager;
70    class PlayerManager;
71
72    // interfaces
73    class GametypeMessageListener;
74    class NotificationListener;
75    class PawnListener;
76    class RadarListener;
77    class RadarViewable;
78    class Rewardable;
79    class Teamcolourable;
80
81    // objects
82    class Level;
83    class Scene;
84    class Tickable;
85
86    // worldentities
87    class WorldEntity;
88    class StaticEntity;
89    class MobileEntity;
90    class ControllableEntity;
91    class MovableEntity;
92
93    // graphics
94    class Model;
95    class Billboard;
96    class BlinkingBillboard;
97    class BigExplosion;
98    class ExplosionChunk;
99    class FadingBillboard;
100    class GlobalShader;
101    class Light;
102    class Backlight;
103    class ParticleEmitter;
104    class ParticleSpawner;
105    class Camera;
106
107    // mixed
108    class PongCenterpoint;
109    class PongBall;
110    class PongBat;
111
112    class EventListener;
113    class EventDispatcher;
114    class EventTarget;
115
116    class SpawnPoint;
117    class TeamSpawnPoint;
118
119    class Attacher;
120    class CameraPosition;
121    class Sublevel;
122    class ForceField;
123    class Radar;
124
125    class Test;
126
127    // pawns
128    class Spectator;
129    class Pawn;
130    class SpaceShip;
131    class TeamBaseMatchBase;
132    class Destroyer;
133
134    // gametypes
135    class Gametype;
136    class Deathmatch;
137    class TeamDeathmatch;
138    class Asteroids;
139    class TeamBaseMatch;
140    class UnderAttack;
141    class Pong;
142
143    // pickups
144    class BaseItem;
145    class DroppedItem;
146    class EquipmentItem;
147    class ModifierPickup;
148    class PassiveItem;
149    class PickupCollection;
150    class PickupInventory;
151    class PickupSpawner;
152    class UsableItem;
153
154    class Jump;
155    class HealthUsable;
156    class PassiveItem;
157
158    // items
159    class Item;
160    class Engine;
161    class MultiStateEngine;
162    class RotatingEngine;
163
164    // trigger
165    class Trigger;
166    class DistanceTrigger;
167    class EventTrigger;
168    class PlayerTrigger;
169    class CheckPoint;
170
171    // weaponsystem
172    class WeaponSystem;
173    class WeaponSet;
174    class WeaponSlot;
175    class WeaponPack;
176    class Weapon;
177    class WeaponMode;
178    class DefaultWeaponmodeLink;
179    class Munition;
180
181    // controller
182    class Controller;
183    class HumanController;
184    class ArtificialController;
185    class AIController;
186    class ScriptController;
187    class WaypointController;
188    class WaypointPatrolController;
189    class PongAI;
190
191    // infos
192    class Info;
193    class PlayerInfo;
194    class HumanPlayer;
195    class Bot;
196    class PongBot;
197    class GametypeInfo;
198
199    // collision
200    class CollisionShape;
201    class SphereCollisionShape;
202    class CompoundCollisionShape;
203    class PlaneCollisionShape;
204    class WorldEntityCollisionShape;
205
206    // overlays
207    class OverlayGroup;
208    class OrxonoxOverlay;
209    class Notification;
210    class NotificationManager;
211    class InGameConsole;
212    class Map;
213
214    //sound
215    class SoundBase;
216    class SoundManager;
217    class SoundMainMenu;
218}
219
220// Bullet Physics Engine
221class btTransform;
222class btVector3;
223
224class btRigidBody;
225class btCollisionObject;
226class btGhostObject;
227class btManifoldPoint;
228
229class btCollisionShape;
230class btSphereShape;
231class btCompoundShape;
232class btStaticPlaneShape;
233
234class btDiscreteDynamicsWorld;
235class bt32BitAxisSweep3;
236class btDefaultCollisionConfiguration;
237class btCollisionDispatcher;
238class btSequentialImpulseConstraintSolver;
239
240// ALUT
241typedef struct ALCcontext_struct ALCcontext;
242typedef struct ALCdevice_struct ALCdevice;
243typedef unsigned int ALuint;
244typedef int ALint;
245
246#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.