Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7649 was 7648, checked in by dafrick, 14 years ago

Merged releasetodo, containing a new way to describe and tag levels, back to trunk.

  • Property svn:eol-style set to native
File size: 4.9 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/**
[5929]30@file
31@brief
32    Shared library macros, enums, constants and forward declarations for the orxonox library
[1024]33*/
[612]34
[673]35#ifndef _OrxonoxPrereqs_H__
36#define _OrxonoxPrereqs_H__
[612]37
[2710]38#include "OrxonoxConfig.h"
[5781]39#include "tools/ToolsPrereqs.h"
40
[1024]41//-----------------------------------------------------------------------
42// Shared library settings
43//-----------------------------------------------------------------------
[5929]44
[5693]45#if defined(ORXONOX_PLATFORM_WINDOWS) && !defined(ORXONOX_STATIC_BUILD)
[1024]46#  ifdef ORXONOX_SHARED_BUILD
47#    define _OrxonoxExport __declspec(dllexport)
48#  else
49#    if defined( __MINGW32__ )
50#      define _OrxonoxExport
51#    else
52#      define _OrxonoxExport __declspec(dllimport)
53#    endif
54#  endif
55#elif defined ( ORXONOX_GCC_VISIBILITY )
56#  define _OrxonoxExport  __attribute__ ((visibility("default")))
57#else
58#  define _OrxonoxExport
59#endif
[729]60
61//-----------------------------------------------------------------------
[1024]62// Forward declarations
63//-----------------------------------------------------------------------
[729]64
[1563]65namespace orxonox
66{
[2087]67    class CameraManager;
[5929]68    class Level;
[7648]69    class LevelInfo;
70    class LevelInfoItem;
[2087]71    class LevelManager;
[2662]72    class PawnManager;
[2171]73    class PlayerManager;
[5929]74    class Radar;
[5738]75    class Scene;
76
[5929]77    // collisionshapes
78    class CollisionShape;
79    class CompoundCollisionShape;
80    class WorldEntityCollisionShape;
[5693]81
[5929]82    // controllers
83    class AIController;
84    class ArtificialController;
85    class Controller;
[7163]86    class DroneController;
[5929]87    class HumanController;
88    class ScriptController;
89    class WaypointController;
90    class WaypointPatrolController;
[2087]91
[5929]92    // gametypes
93    class Asteroids;
94    class Deathmatch;
[7163]95    class Dynamicmatch;
[5929]96    class Gametype;
97    class TeamBaseMatch;
98    class TeamDeathmatch;
99    class UnderAttack;
100
[5693]101    // graphics
[5929]102    class Backlight;
[2087]103    class Billboard;
104    class BlinkingBillboard;
[5929]105    class Camera;
[2662]106    class FadingBillboard;
107    class GlobalShader;
[2087]108    class Light;
[5929]109    class Model;
[2087]110    class ParticleEmitter;
111    class ParticleSpawner;
112
[5929]113    // infos
114    class Bot;
115    class GametypeInfo;
116    class HumanPlayer;
117    class Info;
118    class PlayerInfo;
[5693]119
[5929]120    // interfaces
121    class GametypeMessageListener;
122    class NotificationListener;
[6524]123    class Pickupable;
124    class PickupCarrier;
[5929]125    class PlayerTrigger;
126    class RadarListener;
127    class RadarViewable;
128    class Rewardable;
129    class TeamColourable;
[5693]130
[5929]131    // items
132    class Engine;
133    class Item;
134    class MultiStateEngine;
[2087]135
[5929]136    // overlays
137    class InGameConsole;
138    class Map;
139    class OrxonoxOverlay;
140    class OverlayGroup;
[7163]141
[5929]142    // pickup
[6524]143    class PickupIdentifier;
[3079]144
[5929]145    //sound
146    class AmbientSound;
147    class BaseSound;
[6417]148    class SoundBuffer;
[5929]149    class SoundManager;
[6417]150    class SoundStreamer;
[5929]151    class WorldSound;
[2662]152
[5693]153    // weaponsystem
[5929]154    class DefaultWeaponmodeLink;
155    class Munition;
156    class Weapon;
157    class WeaponMode;
158    class WeaponPack;
[2096]159    class WeaponSet;
160    class WeaponSlot;
[5929]161    class WeaponSystem;
[2096]162
[5929]163    // worldentities
164    class BigExplosion;
165    class CameraPosition;
166    class ControllableEntity;
[7163]167    class Drone;
[6417]168    class EffectContainer;
[5929]169    class ExplosionChunk;
170    class MobileEntity;
171    class MovableEntity;
172    class SpawnPoint;
173    class StaticEntity;
174    class TeamSpawnPoint;
175    class WorldEntity;
[6417]176    class Rocket;
[5929]177    // worldentities, pawns
178    class Destroyer;
179    class Pawn;
180    class SpaceShip;
181    class Spectator;
182    class TeamBaseMatchBase;
[1625]183}
[708]184
[2662]185// Bullet Physics Engine
186class btTransform;
187class btVector3;
188
189class btRigidBody;
190class btCollisionObject;
191class btGhostObject;
192class btManifoldPoint;
193
194class btCollisionShape;
195class btSphereShape;
196class btCompoundShape;
197class btStaticPlaneShape;
198
199class btDiscreteDynamicsWorld;
200class bt32BitAxisSweep3;
201class btDefaultCollisionConfiguration;
202class btCollisionDispatcher;
203class btSequentialImpulseConstraintSolver;
204
[3196]205// ALUT
206typedef struct ALCcontext_struct ALCcontext;
207typedef struct ALCdevice_struct ALCdevice;
208typedef unsigned int ALuint;
209typedef int ALint;
[6417]210typedef int ALenum;
[3196]211
[673]212#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.