Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5840 was 5781, checked in by rgrieder, 15 years ago

Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).

  • Property svn:eol-style set to native
File size: 5.0 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
[2710]37#include "OrxonoxConfig.h"
[612]38
[5781]39#include "tools/ToolsPrereqs.h"
40
[1024]41//-----------------------------------------------------------------------
42// Shared library settings
43//-----------------------------------------------------------------------
[5693]44#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined(ORXONOX_STATIC_BUILD)
[1024]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
[729]59
60//-----------------------------------------------------------------------
[1024]61// Forward declarations
62//-----------------------------------------------------------------------
[729]63
[1563]64namespace orxonox
65{
[2087]66    class CameraManager;
67    class LevelManager;
[2662]68    class PawnManager;
[2171]69    class PlayerManager;
[2087]70
[5738]71    class Level;
72    class Scene;
73    class Tickable;
74
[5693]75    // interfaces
76    class GametypeMessageListener;
77    class NotificationListener;
78    class PawnListener;
[5738]79    class PlayerTrigger;
[5693]80    class RadarListener;
81    class RadarViewable;
82    class Rewardable;
83    class Teamcolourable;
84
85    // worldentities
[2087]86    class WorldEntity;
[2662]87    class StaticEntity;
88    class MobileEntity;
89    class ControllableEntity;
[2087]90    class MovableEntity;
91
[5693]92    // graphics
[2087]93    class Model;
94    class Billboard;
95    class BlinkingBillboard;
[3087]96    class BigExplosion;
[2662]97    class ExplosionChunk;
98    class FadingBillboard;
99    class GlobalShader;
[2087]100    class Light;
[1625]101    class Backlight;
[2087]102    class ParticleEmitter;
103    class ParticleSpawner;
[5693]104    class Camera;
[2087]105
[5693]106    // mixed
[2087]107    class SpawnPoint;
[2826]108    class TeamSpawnPoint;
[5693]109
110    class CameraPosition;
111    class Sublevel;
112    class Radar;
113
[3084]114    class Test;
[2087]115
[5693]116    // pawns
[2087]117    class Spectator;
118    class Pawn;
[1625]119    class SpaceShip;
[3033]120    class TeamBaseMatchBase;
121    class Destroyer;
[1552]122
[5693]123    // gametypes
124    class Gametype;
125    class Deathmatch;
126    class TeamDeathmatch;
127    class Asteroids;
128    class TeamBaseMatch;
129    class UnderAttack;
130
131    // pickups
[3079]132    class BaseItem;
133    class DroppedItem;
134    class EquipmentItem;
135    class ModifierPickup;
136    class PassiveItem;
137    class PickupCollection;
138    class PickupInventory;
139    class PickupSpawner;
140    class UsableItem;
141
142    class Jump;
143    class HealthUsable;
144    class PassiveItem;
145
[5693]146    // items
[2662]147    class Item;
148    class Engine;
149    class MultiStateEngine;
150    class RotatingEngine;
151
[5693]152    // weaponsystem
[2096]153    class WeaponSystem;
154    class WeaponSet;
155    class WeaponSlot;
[2662]156    class WeaponPack;
[2096]157    class Weapon;
[3053]158    class WeaponMode;
159    class DefaultWeaponmodeLink;
[2096]160    class Munition;
161
[5693]162    // controller
[2087]163    class Controller;
164    class HumanController;
[2662]165    class ArtificialController;
166    class AIController;
167    class ScriptController;
[3049]168    class WaypointController;
169    class WaypointPatrolController;
[2087]170
[5693]171    // infos
[2087]172    class Info;
173    class PlayerInfo;
174    class HumanPlayer;
[2662]175    class Bot;
176    class GametypeInfo;
[2087]177
[2662]178    // collision
179    class CollisionShape;
180    class CompoundCollisionShape;
181    class WorldEntityCollisionShape;
182
[1625]183    // overlays
[5693]184    class OverlayGroup;
185    class OrxonoxOverlay;
[2662]186    class Notification;
187    class NotificationManager;
[5693]188    class InGameConsole;
[3089]189    class Map;
[1755]190
[3060]191    //sound
192    class SoundBase;
193    class SoundManager;
194    class SoundMainMenu;
[1625]195}
[708]196
[2662]197// Bullet Physics Engine
198class btTransform;
199class btVector3;
200
201class btRigidBody;
202class btCollisionObject;
203class btGhostObject;
204class btManifoldPoint;
205
206class btCollisionShape;
207class btSphereShape;
208class btCompoundShape;
209class btStaticPlaneShape;
210
211class btDiscreteDynamicsWorld;
212class bt32BitAxisSweep3;
213class btDefaultCollisionConfiguration;
214class btCollisionDispatcher;
215class btSequentialImpulseConstraintSolver;
216
[3196]217// ALUT
218typedef struct ALCcontext_struct ALCcontext;
219typedef struct ALCdevice_struct ALCdevice;
220typedef unsigned int ALuint;
221typedef int ALint;
222
[673]223#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.