Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/libraries2/src/orxonox/OrxonoxPrereqs.h @ 5725

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

added a new module for the pong gametype and all related classes

  • Property svn:eol-style set to native
File size: 5.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 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 EventListener;
109    class EventDispatcher;
110    class EventTarget;
111
112    class SpawnPoint;
113    class TeamSpawnPoint;
114
115    class Attacher;
116    class CameraPosition;
117    class Sublevel;
118    class ForceField;
119    class Radar;
120
121    class Test;
122
123    // pawns
124    class Spectator;
125    class Pawn;
126    class SpaceShip;
127    class TeamBaseMatchBase;
128    class Destroyer;
129
130    // gametypes
131    class Gametype;
132    class Deathmatch;
133    class TeamDeathmatch;
134    class Asteroids;
135    class TeamBaseMatch;
136    class UnderAttack;
137
138    // pickups
139    class BaseItem;
140    class DroppedItem;
141    class EquipmentItem;
142    class ModifierPickup;
143    class PassiveItem;
144    class PickupCollection;
145    class PickupInventory;
146    class PickupSpawner;
147    class UsableItem;
148
149    class Jump;
150    class HealthUsable;
151    class PassiveItem;
152
153    // items
154    class Item;
155    class Engine;
156    class MultiStateEngine;
157    class RotatingEngine;
158
159    // trigger
160    class Trigger;
161    class DistanceTrigger;
162    class EventTrigger;
163    class PlayerTrigger;
164    class CheckPoint;
165
166    // weaponsystem
167    class WeaponSystem;
168    class WeaponSet;
169    class WeaponSlot;
170    class WeaponPack;
171    class Weapon;
172    class WeaponMode;
173    class DefaultWeaponmodeLink;
174    class Munition;
175
176    // controller
177    class Controller;
178    class HumanController;
179    class ArtificialController;
180    class AIController;
181    class ScriptController;
182    class WaypointController;
183    class WaypointPatrolController;
184
185    // infos
186    class Info;
187    class PlayerInfo;
188    class HumanPlayer;
189    class Bot;
190    class GametypeInfo;
191
192    // collision
193    class CollisionShape;
194    class SphereCollisionShape;
195    class CompoundCollisionShape;
196    class PlaneCollisionShape;
197    class WorldEntityCollisionShape;
198
199    // overlays
200    class OverlayGroup;
201    class OrxonoxOverlay;
202    class Notification;
203    class NotificationManager;
204    class InGameConsole;
205    class Map;
206
207    //sound
208    class SoundBase;
209    class SoundManager;
210    class SoundMainMenu;
211}
212
213// Bullet Physics Engine
214class btTransform;
215class btVector3;
216
217class btRigidBody;
218class btCollisionObject;
219class btGhostObject;
220class btManifoldPoint;
221
222class btCollisionShape;
223class btSphereShape;
224class btCompoundShape;
225class btStaticPlaneShape;
226
227class btDiscreteDynamicsWorld;
228class bt32BitAxisSweep3;
229class btDefaultCollisionConfiguration;
230class btCollisionDispatcher;
231class btSequentialImpulseConstraintSolver;
232
233// ALUT
234typedef struct ALCcontext_struct ALCcontext;
235typedef struct ALCdevice_struct ALCdevice;
236typedef unsigned int ALuint;
237typedef int ALint;
238
239#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.