Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/lastmanstanding3/src/orxonox/OrxonoxPrereqs.h @ 8469

Last change on this file since 8469 was 7903, checked in by scheusso, 14 years ago

Merge branch 'jo-test' into lms3

  • 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/**
[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;
[7655]97    class LastManStanding;
[7903]98    class LastTeamStanding;
[5929]99    class TeamBaseMatch;
100    class TeamDeathmatch;
101    class UnderAttack;
102
[5693]103    // graphics
[5929]104    class Backlight;
[2087]105    class Billboard;
106    class BlinkingBillboard;
[5929]107    class Camera;
[2662]108    class FadingBillboard;
109    class GlobalShader;
[2087]110    class Light;
[5929]111    class Model;
[2087]112    class ParticleEmitter;
113    class ParticleSpawner;
114
[5929]115    // infos
116    class Bot;
117    class GametypeInfo;
118    class HumanPlayer;
119    class Info;
120    class PlayerInfo;
[5693]121
[5929]122    // interfaces
123    class GametypeMessageListener;
124    class NotificationListener;
[6524]125    class Pickupable;
126    class PickupCarrier;
[5929]127    class PlayerTrigger;
128    class RadarListener;
129    class RadarViewable;
130    class Rewardable;
131    class TeamColourable;
[5693]132
[5929]133    // items
134    class Engine;
135    class Item;
136    class MultiStateEngine;
[2087]137
[5929]138    // overlays
139    class InGameConsole;
140    class Map;
141    class OrxonoxOverlay;
142    class OverlayGroup;
[7163]143
[5929]144    // pickup
[6524]145    class PickupIdentifier;
[3079]146
[5929]147    //sound
148    class AmbientSound;
149    class BaseSound;
[6417]150    class SoundBuffer;
[5929]151    class SoundManager;
[6417]152    class SoundStreamer;
[5929]153    class WorldSound;
[7854]154    class WorldAmbientSound;
[2662]155
[5693]156    // weaponsystem
[5929]157    class DefaultWeaponmodeLink;
158    class Munition;
159    class Weapon;
160    class WeaponMode;
161    class WeaponPack;
[2096]162    class WeaponSet;
163    class WeaponSlot;
[5929]164    class WeaponSystem;
[2096]165
[5929]166    // worldentities
167    class BigExplosion;
168    class CameraPosition;
169    class ControllableEntity;
[7163]170    class Drone;
[6417]171    class EffectContainer;
[5929]172    class ExplosionChunk;
173    class MobileEntity;
174    class MovableEntity;
175    class SpawnPoint;
176    class StaticEntity;
177    class TeamSpawnPoint;
178    class WorldEntity;
[6417]179    class Rocket;
[5929]180    // worldentities, pawns
181    class Destroyer;
182    class Pawn;
183    class SpaceShip;
184    class Spectator;
185    class TeamBaseMatchBase;
[1625]186}
[708]187
[2662]188// Bullet Physics Engine
189class btTransform;
190class btVector3;
191
192class btRigidBody;
193class btCollisionObject;
194class btGhostObject;
195class btManifoldPoint;
196
197class btCollisionShape;
198class btSphereShape;
199class btCompoundShape;
200class btStaticPlaneShape;
201
202class btDiscreteDynamicsWorld;
203class bt32BitAxisSweep3;
204class btDefaultCollisionConfiguration;
205class btCollisionDispatcher;
206class btSequentialImpulseConstraintSolver;
207
[3196]208// ALUT
209typedef struct ALCcontext_struct ALCcontext;
210typedef struct ALCdevice_struct ALCdevice;
211typedef unsigned int ALuint;
212typedef int ALint;
[6417]213typedef int ALenum;
[3196]214
[673]215#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.