Changeset 5725 for code/branches/libraries2
- Timestamp:
- Aug 31, 2009, 8:23:07 PM (15 years ago)
- Location:
- code/branches/libraries2/src
- Files:
-
- 3 added
- 7 edited
- 14 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/libraries2/src/modules/CMakeLists.txt
r5724 r5725 22 22 ADD_SUBDIRECTORY(gamestates) 23 23 ADD_SUBDIRECTORY(overlays) 24 ADD_SUBDIRECTORY(pong) 24 25 ADD_SUBDIRECTORY(questsystem) 25 26 ADD_SUBDIRECTORY(weapons) -
code/branches/libraries2/src/modules/overlays/hud/CMakeLists.txt
r5693 r5725 11 11 KillMessage.cc 12 12 DeathMessage.cc 13 PongScore.cc14 13 UnderAttackHealthBar.cc 15 14 TeamBaseMatchScore.cc -
code/branches/libraries2/src/modules/pong/Pong.cc
r5722 r5725 31 31 #include "core/CoreIncludes.h" 32 32 #include "core/Executor.h" 33 #include " objects/worldentities/PongCenterpoint.h"34 #include " objects/worldentities/PongBall.h"35 #include " objects/worldentities/PongBat.h"36 #include " objects/infos/PongBot.h"37 #include " objects/controllers/PongAI.h"33 #include "PongCenterpoint.h" 34 #include "PongBall.h" 35 #include "PongBat.h" 36 #include "PongBot.h" 37 #include "PongAI.h" 38 38 39 39 namespace orxonox -
code/branches/libraries2/src/modules/pong/Pong.h
r5722 r5725 30 30 #define _Pong_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include "tools/Timer.h" 35 #include " Deathmatch.h"35 #include "objects/gametypes/Deathmatch.h" 36 36 37 37 namespace orxonox 38 38 { 39 class _ OrxonoxExport Pong : public Deathmatch39 class _PongExport Pong : public Deathmatch 40 40 { 41 41 public: -
code/branches/libraries2/src/modules/pong/PongAI.cc
r5722 r5725 33 33 #include "tools/Timer.h" 34 34 #include "objects/worldentities/ControllableEntity.h" 35 #include " objects/worldentities/PongBall.h"35 #include "PongBall.h" 36 36 37 37 namespace orxonox -
code/branches/libraries2/src/modules/pong/PongAI.h
r5722 r5725 30 30 #define _PongAI_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include <list> 35 35 #include "util/Math.h" 36 36 #include "tools/interfaces/Tickable.h" 37 #include " Controller.h"37 #include "objects/controllers/Controller.h" 38 38 39 39 namespace orxonox 40 40 { 41 class _ OrxonoxExport PongAI : public Controller, public Tickable41 class _PongExport PongAI : public Controller, public Tickable 42 42 { 43 43 public: -
code/branches/libraries2/src/modules/pong/PongBall.cc
r5722 r5725 32 32 #include "core/GameMode.h" 33 33 #include "objects/gametypes/Gametype.h" 34 #include " objects/worldentities/PongBat.h"34 #include "PongBat.h" 35 35 #include "sound/SoundBase.h" 36 36 -
code/branches/libraries2/src/modules/pong/PongBall.h
r5722 r5725 30 30 #define _PongBall_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include "util/Math.h" … … 37 37 namespace orxonox 38 38 { 39 class _ OrxonoxExport PongBall : public MovableEntity39 class _PongExport PongBall : public MovableEntity 40 40 { 41 41 public: -
code/branches/libraries2/src/modules/pong/PongBat.h
r5722 r5725 30 30 #define _PongBat_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 #include "objects/worldentities/ControllableEntity.h" 34 34 35 35 namespace orxonox 36 36 { 37 class _ OrxonoxExport PongBat : public ControllableEntity37 class _PongExport PongBat : public ControllableEntity 38 38 { 39 39 public: -
code/branches/libraries2/src/modules/pong/PongBot.cc
r5722 r5725 30 30 31 31 #include "core/CoreIncludes.h" 32 #include " objects/controllers/PongAI.h"32 #include "PongAI.h" 33 33 34 34 namespace orxonox -
code/branches/libraries2/src/modules/pong/PongBot.h
r5722 r5725 30 30 #define _PongBot_H__ 31 31 32 #include " OrxonoxPrereqs.h"33 #include " Bot.h"32 #include "pong/PongPrereqs.h" 33 #include "objects/infos/Bot.h" 34 34 35 35 namespace orxonox 36 36 { 37 class _ OrxonoxExport PongBot : public Bot37 class _PongExport PongBot : public Bot 38 38 { 39 39 public: -
code/branches/libraries2/src/modules/pong/PongCenterpoint.cc
r5722 r5725 31 31 #include "core/CoreIncludes.h" 32 32 #include "core/XMLPort.h" 33 #include " objects/gametypes/Pong.h"33 #include "Pong.h" 34 34 35 35 namespace orxonox -
code/branches/libraries2/src/modules/pong/PongCenterpoint.h
r5722 r5725 30 30 #define _PongCenterpoint_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include <string> … … 38 38 namespace orxonox 39 39 { 40 class _ OrxonoxExport PongCenterpoint : public StaticEntity40 class _PongExport PongCenterpoint : public StaticEntity 41 41 { 42 42 public: -
code/branches/libraries2/src/modules/pong/PongScore.cc
r5722 r5725 32 32 #include "core/CoreIncludes.h" 33 33 #include "core/XMLPort.h" 34 #include " objects/gametypes/Pong.h"34 #include "Pong.h" 35 35 #include "objects/infos/PlayerInfo.h" 36 36 -
code/branches/libraries2/src/modules/pong/PongScore.h
r5722 r5725 30 30 #define _PongScore_H__ 31 31 32 #include " overlays/OverlaysPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include "tools/interfaces/Tickable.h" … … 37 37 namespace orxonox 38 38 { 39 class _ OverlaysExport PongScore : public OverlayText, public Tickable39 class _PongExport PongScore : public OverlayText, public Tickable 40 40 { 41 41 public: -
code/branches/libraries2/src/orxonox/OrxonoxPrereqs.h
r5693 r5725 106 106 107 107 // mixed 108 class PongCenterpoint;109 class PongBall;110 class PongBat;111 112 108 class EventListener; 113 109 class EventDispatcher; … … 139 135 class TeamBaseMatch; 140 136 class UnderAttack; 141 class Pong;142 137 143 138 // pickups … … 187 182 class WaypointController; 188 183 class WaypointPatrolController; 189 class PongAI;190 184 191 185 // infos … … 194 188 class HumanPlayer; 195 189 class Bot; 196 class PongBot;197 190 class GametypeInfo; 198 191 -
code/branches/libraries2/src/orxonox/objects/controllers/CMakeLists.txt
r3049 r5725 7 7 WaypointController.cc 8 8 WaypointPatrolController.cc 9 PongAI.cc10 9 ) -
code/branches/libraries2/src/orxonox/objects/gametypes/CMakeLists.txt
r3033 r5725 4 4 TeamDeathmatch.cc 5 5 TeamBaseMatch.cc 6 Pong.cc7 6 UnderAttack.cc 8 7 Asteroids.cc -
code/branches/libraries2/src/orxonox/objects/infos/CMakeLists.txt
r2839 r5725 1 1 ADD_SOURCE_FILES(ORXONOX_SRC_FILES 2 2 Bot.cc 3 PongBot.cc4 3 Info.cc 5 4 PlayerInfo.cc -
code/branches/libraries2/src/orxonox/objects/worldentities/CMakeLists.txt
r3101 r5725 22 22 SpawnPoint.cc 23 23 TeamSpawnPoint.cc 24 PongCenterpoint.cc25 PongBall.cc26 PongBat.cc27 24 ForceField.cc 28 25 )
Note: See TracChangeset
for help on using the changeset viewer.