Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 2875 was 2839, checked in by landauf, 16 years ago

added AI for the Pong gametype
improved Pong gameplay

  • Property svn:eol-style set to native
File size: 6.4 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
[1024]39//-----------------------------------------------------------------------
40// Shared library settings
41//-----------------------------------------------------------------------
[2710]42#define ORXONOX_NO_EXPORTS // This is an executable that needs no exports
43#if defined(ORXONOX_PLATFORM_WINDOWS) && !(defined(ORXONOX_STATIC_BUILD) || defined(ORXONOX_NO_EXPORTS))
[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]63namespace orxonox
64{
[1625]65    namespace LODParticle
[1563]66    {
[1625]67        enum LOD
68        {
69            off = 0,
70            low = 1,
71            normal = 2,
72            high = 3
73        };
74    }
[1563]75
[2662]76    //put here all existing munitionTypes
77    namespace MunitionType
78    {
79
80
81
82        enum Enum
83        { laserGunMunition };
84    }
85
86    //put here all weapon fire modes.
87    //they have to be added to Pawn and HumanController, too.
88    namespace WeaponMode
89    {
90        enum Enum
91        {
92            fire     = 0x1,
93            altFire  = 0x2,
94            altFire2 = 0x4
95        };
96    }
97
98
[1625]99    class GraphicsEngine;
[1755]100    class Settings;
[612]101
[1625]102    class RadarViewable;
103    class Radar;
104    class RadarListener;
[1024]105
[2826]106    class Teamcolourable;
107
[2087]108    class CameraManager;
109    class LevelManager;
[2662]110    class PawnManager;
[2171]111    class PlayerManager;
[2087]112
[1625]113    // objects
[2171]114    class Level;
[2087]115    class Scene;
116
[2095]117    class AddQuest;
118    class AddQuestHint;
119    class AddReward;
120    class ChangeQuestStatus;
121    class CompleteQuest;
122    class FailQuest;
123    class GlobalQuest;
124    class LocalQuest;
125    class Quest;
126    class QuestDescription;
127    class QuestEffect;
[2261]128    class QuestEffectBeacon;
[2095]129    class QuestHint;
130    class QuestItem;
[2662]131    class QuestListener;
[2095]132    class QuestManager;
133    class Rewardable;
134
[2087]135    class WorldEntity;
[2662]136    class StaticEntity;
137    class MobileEntity;
138    class ControllableEntity;
[2087]139    class MovableEntity;
140    class Sublevel;
141
142    class Model;
143    class Billboard;
144    class BlinkingBillboard;
[2662]145    class ExplosionChunk;
146    class FadingBillboard;
147    class GlobalShader;
[2087]148    class Light;
[1625]149    class Backlight;
[2087]150    class ParticleEmitter;
151    class ParticleSpawner;
152
[2826]153    class PongCenterpoint;
154    class PongBall;
155    class PongBat;
156
[1625]157    class Camera;
[2087]158    class CameraPosition;
159    class SpawnPoint;
[2826]160    class TeamSpawnPoint;
[2087]161
162    class Spectator;
163    class Pawn;
[1625]164    class SpaceShip;
[1552]165
[2662]166    class Item;
167    class Engine;
168    class MultiStateEngine;
169    class RotatingEngine;
170
[2087]171    class Trigger;
172    class DistanceTrigger;
173    class EventTrigger;
[2261]174    class PlayerTrigger;
[1024]175
[2096]176    class WeaponSystem;
177    class WeaponSet;
178    class WeaponSlot;
[2662]179    class WeaponPack;
[2096]180    class Weapon;
181    class Munition;
[2662]182    class LaserGun;
183    class LaserGunMunition;
[2096]184
[2087]185    class EventListener;
186    class EventDispatcher;
187    class EventTarget;
188
189    class Controller;
190    class HumanController;
[2662]191    class ArtificialController;
192    class AIController;
193    class ScriptController;
[2839]194    class PongAI;
[2087]195
196    class Info;
197    class PlayerInfo;
198    class HumanPlayer;
[2662]199    class Bot;
[2839]200    class PongBot;
[2662]201    class GametypeInfo;
[2087]202
203    class Gametype;
[2826]204    class Deathmatch;
205    class TeamDeathmatch;
206    class Pong;
[2087]207
208    class Scores;
[2662]209    class CreateLines;
210    class Scoreboard;
211    class Stats;
[2087]212
[2662]213    // collision
214    class CollisionShape;
215    class SphereCollisionShape;
216    class CompoundCollisionShape;
217    class PlaneCollisionShape;
218    class WorldEntityCollisionShape;
219
[1625]220    // tools
221    class BillboardSet;
222    class Light;
223    class Mesh;
224    class ParticleInterface;
[2662]225    class Shader;
[1625]226    template <class T>
227    class Timer;
[612]228
[1625]229    // overlays
230    class BarColour;
231    class DebugFPSText;
232    class DebugRTRText;
233    class HUDBar;
234    class HUDNavigation;
235    class HUDRadar;
236    class HUDSpeedBar;
[2662]237    class HUDHealthBar;
[1625]238    class InGameConsole;
[2662]239    class Notification;
240    class NotificationManager;
241    class NotificationQueue;
[1625]242    class OrxonoxOverlay;
243    class OverlayGroup;
244    class OverlayText;
[2662]245    class GametypeStatus;
246    class CreateLines;
247    class Scoreboard;
[1755]248
249    //gui
250    class GUIManager;
251
252    // game states
253    class GSRoot;
254    class GSGraphics;
255    class GSIO;
256    class GSIOConsole;
257    class GSLevel;
258    class GSStandalone;
259    class GSServer;
260    class GSClient;
261    class GSGUI;
[1625]262}
[708]263
[1625]264namespace Ogre
265{
266    // some got forgotten in OgrePrerequisites
267    class BorderPanelOverlayElement;
268    class PanelOverlayElement;
269    class TextAreaOverlayElement;
[612]270}
271
[1755]272namespace CEGUI
273{
274    class LuaScriptModule;
275
276    class OgreCEGUIRenderer;
277    class OgreCEGUIResourceProvider;
278    class OgreCEGUITexture;
279}
280
[2662]281// Bullet Physics Engine
282
283class btTransform;
284class btVector3;
285
286class btRigidBody;
287class btCollisionObject;
288class btGhostObject;
289class btManifoldPoint;
290
291class btCollisionShape;
292class btSphereShape;
293class btCompoundShape;
294class btStaticPlaneShape;
295
296class btDiscreteDynamicsWorld;
297class bt32BitAxisSweep3;
298class btDefaultCollisionConfiguration;
299class btCollisionDispatcher;
300class btSequentialImpulseConstraintSolver;
301
302// lua
[1755]303struct lua_State;
304
[673]305#endif /* _OrxonoxPrereqs_H__ */
Note: See TracBrowser for help on using the repository browser.