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