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