Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/libraries/src/orxonox/OrxonoxPrereqs.h @ 5634

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

Added ToolsPrereqs.h and _ToolsExport

  • Property svn:eol-style set to native
File size: 5.9 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    class RadarViewable;
67    class Radar;
68    class RadarListener;
69
70    class Teamcolourable;
71
72    class CameraManager;
73    class LevelManager;
74    class PawnManager;
75    class PlayerManager;
76
77    // objects
78    class Level;
79    class Scene;
80    class Tickable;
81
82    class AddQuest;
83    class AddQuestHint;
84    class AddReward;
85    class ChangeQuestStatus;
86    class CompleteQuest;
87    class FailQuest;
88    class GlobalQuest;
89    class LocalQuest;
90    class Quest;
91    class QuestDescription;
92    class QuestEffect;
93    class QuestEffectBeacon;
94    class QuestHint;
95    class QuestItem;
96    class QuestListener;
97    class QuestManager;
98    class QuestNotification;
99    class Rewardable;
100
101    class WorldEntity;
102    class StaticEntity;
103    class MobileEntity;
104    class ControllableEntity;
105    class MovableEntity;
106    class Sublevel;
107    class ForceField;
108    class Attacher;
109
110    class Model;
111    class Billboard;
112    class BlinkingBillboard;
113    class BigExplosion;
114    class ExplosionChunk;
115    class FadingBillboard;
116    class GlobalShader;
117    class Light;
118    class Backlight;
119    class ParticleEmitter;
120    class ParticleSpawner;
121
122    class PongCenterpoint;
123    class PongBall;
124    class PongBat;
125
126    class Camera;
127    class CameraPosition;
128    class SpawnPoint;
129    class TeamSpawnPoint;
130    class Test;
131
132    class Spectator;
133    class Pawn;
134    class SpaceShip;
135    class TeamBaseMatchBase;
136    class Destroyer;
137
138    class BaseItem;
139    class DroppedItem;
140    class EquipmentItem;
141    class ModifierPickup;
142    class PassiveItem;
143    class PickupCollection;
144    class PickupInventory;
145    class PickupSpawner;
146    class UsableItem;
147
148    class Jump;
149    class HealthUsable;
150    class PassiveItem;
151
152    class Item;
153    class Engine;
154    class MultiStateEngine;
155    class RotatingEngine;
156
157    class Trigger;
158    class DistanceTrigger;
159    class EventTrigger;
160    class PlayerTrigger;
161    class CheckPoint;
162
163    class WeaponSystem;
164    class WeaponSet;
165    class WeaponSlot;
166    class WeaponPack;
167    class Weapon;
168    class WeaponMode;
169    class DefaultWeaponmodeLink;
170    class MuzzleFlash;
171
172    class LaserFire;
173    class FusionFire;
174    class HsW01;
175    class LightningGun;
176    class EnergyDrink;
177
178    class ReplenishingMunition;
179    class Munition;
180    class LaserMunition;
181    class FusionMunition;
182
183    class Projectile;
184    class BillboardProjectile;
185    class ParticleProjectile;
186    class LightningGunProjectile;
187
188    class EventListener;
189    class EventDispatcher;
190    class EventTarget;
191
192    class Controller;
193    class HumanController;
194    class ArtificialController;
195    class AIController;
196    class ScriptController;
197    class WaypointController;
198    class WaypointPatrolController;
199    class PongAI;
200
201    class Info;
202    class PlayerInfo;
203    class HumanPlayer;
204    class Bot;
205    class PongBot;
206    class GametypeInfo;
207
208    class Gametype;
209    class Deathmatch;
210    class TeamDeathmatch;
211    class Asteroids;
212    class TeamBaseMatch;
213    class UnderAttack;
214    class Pong;
215
216    // collision
217    class CollisionShape;
218    class SphereCollisionShape;
219    class CompoundCollisionShape;
220    class PlaneCollisionShape;
221    class WorldEntityCollisionShape;
222
223    // overlays
224    class OverlayGroup;
225    class OrxonoxOverlay;
226    class Notification;
227    class NotificationListener;
228    class NotificationManager;
229    class InGameConsole;
230    class Map;
231
232    //sound
233    class SoundBase;
234    class SoundManager;
235    class SoundMainMenu;
236}
237
238// Bullet Physics Engine
239class btTransform;
240class btVector3;
241
242class btRigidBody;
243class btCollisionObject;
244class btGhostObject;
245class btManifoldPoint;
246
247class btCollisionShape;
248class btSphereShape;
249class btCompoundShape;
250class btStaticPlaneShape;
251
252class btDiscreteDynamicsWorld;
253class bt32BitAxisSweep3;
254class btDefaultCollisionConfiguration;
255class btCollisionDispatcher;
256class btSequentialImpulseConstraintSolver;
257
258// ALUT
259typedef struct ALCcontext_struct ALCcontext;
260typedef struct ALCdevice_struct ALCdevice;
261typedef unsigned int ALuint;
262typedef int ALint;
263
264#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.