Changeset 9638 for code/branches/core6/src/modules
- Timestamp:
- Aug 11, 2013, 5:52:29 PM (11 years ago)
- Location:
- code/branches/core6/src/modules
- Files:
-
- 129 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/modules/designtools/CreateStars.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(CreateStars);39 RegisterClass(CreateStars); 40 40 41 41 CreateStars::CreateStars(Context* context) : BaseObject(context) -
code/branches/core6/src/modules/docking/Dock.cc
r9629 r9638 46 46 namespace orxonox 47 47 { 48 CreateFactory(Dock);48 RegisterClass(Dock); 49 49 50 50 SetConsoleCommand("Dock", "dock", &Dock::cmdDock).addShortcut().setAsInputCommand(); -
code/branches/core6/src/modules/docking/DockToShip.cc
r9629 r9638 38 38 namespace orxonox 39 39 { 40 CreateFactory(DockToShip);40 RegisterClass(DockToShip); 41 41 42 42 DockToShip::DockToShip(Context* context) : DockingEffect(context) -
code/branches/core6/src/modules/docking/DockingController.cc
r9629 r9638 38 38 namespace orxonox 39 39 { 40 CreateFactory(DockingController);40 RegisterClass(DockingController); 41 41 42 42 DockingController::DockingController(Context* context) : ArtificialController(context) -
code/branches/core6/src/modules/docking/DockingTarget.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(DockingTarget);41 RegisterClass(DockingTarget); 42 42 43 43 DockingTarget::DockingTarget(Context* context) : StaticEntity(context) -
code/branches/core6/src/modules/docking/MoveToDockingTarget.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(MoveToDockingTarget);42 RegisterClass(MoveToDockingTarget); 43 43 44 44 MoveToDockingTarget::MoveToDockingTarget(Context* context) : DockingAnimation(context) -
code/branches/core6/src/modules/gametypes/OldRaceCheckPoint.cc
r9629 r9638 38 38 namespace orxonox 39 39 { 40 CreateFactory(OldRaceCheckPoint);40 RegisterClass(OldRaceCheckPoint); 41 41 42 42 OldRaceCheckPoint::OldRaceCheckPoint(Context* context): DistanceTrigger(context), RadarViewable(this, static_cast<WorldEntity*>(this)) -
code/branches/core6/src/modules/gametypes/OldSpaceRace.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateUnloadableFactory(OldSpaceRace);38 RegisterUnloadableClass(OldSpaceRace); 39 39 40 40 OldSpaceRace::OldSpaceRace(Context* context) : Gametype(context) -
code/branches/core6/src/modules/gametypes/RaceCheckPoint.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(RaceCheckPoint);43 RegisterClass(RaceCheckPoint); 44 44 45 45 RaceCheckPoint::RaceCheckPoint(Context* context) : DistanceMultiTrigger(context), -
code/branches/core6/src/modules/gametypes/SpaceRace.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateUnloadableFactory(SpaceRace);42 RegisterUnloadableClass(SpaceRace); 43 43 44 44 SpaceRace::SpaceRace(Context* context) : Gametype(context) -
code/branches/core6/src/modules/gametypes/SpaceRaceBot.cc
r9629 r9638 29 29 namespace orxonox 30 30 { 31 CreateFactory(SpaceRaceBot);31 RegisterClass(SpaceRaceBot); 32 32 33 33 SpaceRaceBot::SpaceRaceBot(Context* context) : Bot(context){ -
code/branches/core6/src/modules/gametypes/SpaceRaceController.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateFactory(SpaceRaceController);47 RegisterClass(SpaceRaceController); 48 48 49 49 const int ADJUSTDISTANCE = 500; -
code/branches/core6/src/modules/gametypes/SpaceRaceManager.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(SpaceRaceManager);42 RegisterClass(SpaceRaceManager); 43 43 44 44 SpaceRaceManager::SpaceRaceManager(Context* context) : -
code/branches/core6/src/modules/notifications/NotificationDispatcher.cc
r9629 r9638 48 48 { 49 49 50 CreateUnloadableFactory(NotificationDispatcher);50 RegisterUnloadableClass(NotificationDispatcher); 51 51 52 52 registerMemberNetworkFunction(NotificationDispatcher, broadcastHelper); -
code/branches/core6/src/modules/notifications/NotificationQueue.cc
r9629 r9638 44 44 { 45 45 46 CreateFactory(NotificationQueue);46 RegisterClass(NotificationQueue); 47 47 48 48 /** -
code/branches/core6/src/modules/notifications/NotificationQueueCEGUI.cc
r9629 r9638 46 46 { 47 47 48 CreateFactory(NotificationQueueCEGUI);48 RegisterClass(NotificationQueueCEGUI); 49 49 50 50 /*static*/ const std::string NotificationQueueCEGUI::NOTIFICATION_LAYER("NotificationLayer"); -
code/branches/core6/src/modules/notifications/dispatchers/CommandNotification.cc
r9629 r9638 44 44 namespace orxonox { 45 45 46 CreateFactory(CommandNotification);46 RegisterClass(CommandNotification); 47 47 48 48 /** -
code/branches/core6/src/modules/notifications/dispatchers/SimpleNotification.cc
r9629 r9638 39 39 namespace orxonox { 40 40 41 CreateFactory(SimpleNotification);41 RegisterClass(SimpleNotification); 42 42 43 43 /** -
code/branches/core6/src/modules/objects/Attacher.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(Attacher);36 RegisterClass(Attacher); 37 37 38 38 Attacher::Attacher(Context* context) : StaticEntity(context) -
code/branches/core6/src/modules/objects/ForceField.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(ForceField);42 RegisterClass(ForceField); 43 43 44 44 /*static*/ const std::string ForceField::modeTube_s = "tube"; -
code/branches/core6/src/modules/objects/Planet.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(Planet);44 RegisterClass(Planet); 45 45 46 46 /** -
code/branches/core6/src/modules/objects/Script.cc
r9629 r9638 46 46 namespace orxonox 47 47 { 48 CreateFactory(Script);48 RegisterClass(Script); 49 49 50 50 registerStaticNetworkFunction(Script::executeHelper); -
code/branches/core6/src/modules/objects/SpaceBoundaries.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(SpaceBoundaries);44 RegisterClass(SpaceBoundaries); 45 45 46 46 SpaceBoundaries::SpaceBoundaries(Context* context) : StaticEntity(context) -
code/branches/core6/src/modules/objects/Turret.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(Turret);37 RegisterClass(Turret); 38 38 39 39 /** -
code/branches/core6/src/modules/objects/collisionshapes/BoxCollisionShape.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(BoxCollisionShape);44 RegisterClass(BoxCollisionShape); 45 45 46 46 /** -
code/branches/core6/src/modules/objects/collisionshapes/ConeCollisionShape.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(ConeCollisionShape);44 RegisterClass(ConeCollisionShape); 45 45 46 46 /** -
code/branches/core6/src/modules/objects/collisionshapes/PlaneCollisionShape.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(PlaneCollisionShape);44 RegisterClass(PlaneCollisionShape); 45 45 46 46 /** -
code/branches/core6/src/modules/objects/collisionshapes/SphereCollisionShape.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(SphereCollisionShape);44 RegisterClass(SphereCollisionShape); 45 45 46 46 /** -
code/branches/core6/src/modules/objects/eventsystem/EventDispatcher.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(EventDispatcher);37 RegisterClass(EventDispatcher); 38 38 39 39 EventDispatcher::EventDispatcher(Context* context) : BaseObject(context) -
code/branches/core6/src/modules/objects/eventsystem/EventFilter.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(EventFilter);38 RegisterClass(EventFilter); 39 39 40 40 EventFilter::EventFilter(Context* context) : BaseObject(context) -
code/branches/core6/src/modules/objects/eventsystem/EventListener.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(EventListener);37 RegisterClass(EventListener); 38 38 39 39 EventListener::EventListener(Context* context) : BaseObject(context) -
code/branches/core6/src/modules/objects/eventsystem/EventName.cc
r9629 r9638 32 32 namespace orxonox 33 33 { 34 CreateFactory(EventName);34 RegisterClass(EventName); 35 35 36 36 EventName::EventName(Context* context) : BaseObject(context) -
code/branches/core6/src/modules/objects/eventsystem/EventTarget.cc
r9629 r9638 33 33 namespace orxonox 34 34 { 35 CreateFactory(EventTarget);35 RegisterClass(EventTarget); 36 36 37 37 EventTarget::EventTarget(Context* context) : BaseObject(context) -
code/branches/core6/src/modules/objects/triggers/CheckPoint.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(CheckPoint);44 RegisterClass(CheckPoint); 45 45 46 46 CheckPoint::CheckPoint(Context* context) -
code/branches/core6/src/modules/objects/triggers/DistanceMultiTrigger.cc
r9629 r9638 47 47 /*static*/ const std::string DistanceMultiTrigger::beaconModeExlcude_s = "exclude"; 48 48 49 CreateFactory(DistanceMultiTrigger);49 RegisterClass(DistanceMultiTrigger); 50 50 51 51 /** -
code/branches/core6/src/modules/objects/triggers/DistanceTrigger.cc
r9629 r9638 49 49 /*static*/ const std::string DistanceTrigger::beaconModeExlcude_s = "exclude"; 50 50 51 CreateFactory(DistanceTrigger);51 RegisterClass(DistanceTrigger); 52 52 53 53 /** -
code/branches/core6/src/modules/objects/triggers/DistanceTriggerBeacon.cc
r9629 r9638 40 40 { 41 41 42 CreateFactory(DistanceTriggerBeacon);42 RegisterClass(DistanceTriggerBeacon); 43 43 44 44 /** -
code/branches/core6/src/modules/objects/triggers/EventMultiTrigger.cc
r9629 r9638 43 43 { 44 44 45 CreateFactory(EventMultiTrigger);45 RegisterClass(EventMultiTrigger); 46 46 47 47 /** -
code/branches/core6/src/modules/objects/triggers/EventTrigger.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(EventTrigger);42 RegisterClass(EventTrigger); 43 43 44 44 /** -
code/branches/core6/src/modules/objects/triggers/MultiTrigger.cc
r9629 r9638 43 43 { 44 44 45 CreateFactory(MultiTrigger);45 RegisterClass(MultiTrigger); 46 46 47 47 /** -
code/branches/core6/src/modules/objects/triggers/MultiTriggerContainer.cc
r9629 r9638 42 42 { 43 43 44 CreateUnloadableFactory(MultiTriggerContainer);44 RegisterUnloadableClass(MultiTriggerContainer); 45 45 46 46 /** -
code/branches/core6/src/modules/objects/triggers/Trigger.cc
r9629 r9638 47 47 SetConsoleCommand("Trigger", "debugFlares", &Trigger::debugFlares).defaultValues(false); 48 48 49 CreateFactory(Trigger);49 RegisterClass(Trigger); 50 50 51 51 /** -
code/branches/core6/src/modules/objects/triggers/TriggerBase.cc
r9629 r9638 46 46 /*static*/ const std::string TriggerBase::xor_s = "xor"; 47 47 48 CreateFactory(TriggerBase);48 RegisterClass(TriggerBase); 49 49 50 50 /** -
code/branches/core6/src/modules/overlays/FadeoutText.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(FadeoutText);38 RegisterClass(FadeoutText); 39 39 40 40 FadeoutText::FadeoutText(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/GUIOverlay.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(GUIOverlay);43 RegisterClass(GUIOverlay); 44 44 45 45 GUIOverlay::GUIOverlay(Context* context) : OrxonoxOverlay(context) -
code/branches/core6/src/modules/overlays/OverlayText.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(OverlayText);43 RegisterClass(OverlayText); 44 44 45 45 BOOST_STATIC_ASSERT((int)Ogre::TextAreaOverlayElement::Left == (int)OverlayText::Left); -
code/branches/core6/src/modules/overlays/debugging/DebugFPSText.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(DebugFPSText);37 RegisterClass(DebugFPSText); 38 38 39 39 DebugFPSText::DebugFPSText(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/debugging/DebugRTRText.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(DebugRTRText);37 RegisterClass(DebugRTRText); 38 38 39 39 DebugRTRText::DebugRTRText(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/AnnounceMessage.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(AnnounceMessage);36 RegisterClass(AnnounceMessage); 37 37 38 38 AnnounceMessage::AnnounceMessage(Context* context) : FadeoutText(context) -
code/branches/core6/src/modules/overlays/hud/ChatOverlay.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(ChatOverlay);46 RegisterClass(ChatOverlay); 47 47 48 48 ChatOverlay::ChatOverlay(Context* context) -
code/branches/core6/src/modules/overlays/hud/DeathMessage.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(DeathMessage);36 RegisterClass(DeathMessage); 37 37 38 38 DeathMessage::DeathMessage(Context* context) : FadeoutText(context) -
code/branches/core6/src/modules/overlays/hud/GametypeFadingMessage.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(GametypeFadingMessage);36 RegisterClass(GametypeFadingMessage); 37 37 38 38 GametypeFadingMessage::GametypeFadingMessage(Context* context) : FadeoutText(context) -
code/branches/core6/src/modules/overlays/hud/GametypeStaticMessage.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(GametypeStaticMessage);38 RegisterClass(GametypeStaticMessage); 39 39 40 40 -
code/branches/core6/src/modules/overlays/hud/HUDBar.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateFactory(BarColour);47 RegisterClass(BarColour); 48 48 49 49 BarColour::BarColour(Context* context) -
code/branches/core6/src/modules/overlays/hud/HUDBoostBar.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(HUDBoostBar);37 RegisterClass(HUDBoostBar); 38 38 39 39 HUDBoostBar::HUDBoostBar(Context* context) -
code/branches/core6/src/modules/overlays/hud/HUDEnemyHealthBar.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(HUDEnemyHealthBar);36 RegisterClass(HUDEnemyHealthBar); 37 37 38 38 HUDEnemyHealthBar::HUDEnemyHealthBar(Context* context) : HUDHealthBar(context) -
code/branches/core6/src/modules/overlays/hud/HUDHealthBar.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(HUDHealthBar);39 RegisterClass(HUDHealthBar); 40 40 41 41 HUDHealthBar::HUDHealthBar(Context* context) : HUDBar(context) -
code/branches/core6/src/modules/overlays/hud/HUDNavigation.cc
r9629 r9638 67 67 return a.second < b.second; 68 68 } 69 CreateFactory( HUDNavigation );69 RegisterClass ( HUDNavigation ); 70 70 71 71 HUDNavigation* HUDNavigation::localHUD_s = 0; -
code/branches/core6/src/modules/overlays/hud/HUDRadar.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(HUDRadar);46 RegisterClass(HUDRadar); 47 47 48 48 HUDRadar::HUDRadar(Context* context) -
code/branches/core6/src/modules/overlays/hud/HUDSpeedBar.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(HUDSpeedBar);38 RegisterClass(HUDSpeedBar); 39 39 40 40 HUDSpeedBar::HUDSpeedBar(Context* context) -
code/branches/core6/src/modules/overlays/hud/HUDTimer.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(HUDTimer);38 RegisterClass(HUDTimer); 39 39 40 40 HUDTimer::HUDTimer(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/KillMessage.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(KillMessage);36 RegisterClass(KillMessage); 37 37 38 38 KillMessage::KillMessage(Context* context) : FadeoutText(context) -
code/branches/core6/src/modules/overlays/hud/LastManStandingInfos.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(LastManStandingInfos);39 RegisterClass(LastManStandingInfos); 40 40 41 41 LastManStandingInfos::LastManStandingInfos(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/LastTeamStandingInfos.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(LastTeamStandingInfos);39 RegisterClass(LastTeamStandingInfos); 40 40 41 41 LastTeamStandingInfos::LastTeamStandingInfos(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/PauseNotice.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(PauseNotice);36 RegisterClass(PauseNotice); 37 37 38 38 PauseNotice::PauseNotice(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/TeamBaseMatchScore.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(TeamBaseMatchScore);39 RegisterClass(TeamBaseMatchScore); 40 40 41 41 TeamBaseMatchScore::TeamBaseMatchScore(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/stats/Scoreboard.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(Scoreboard);37 RegisterClass(Scoreboard); 38 38 39 39 /** -
code/branches/core6/src/modules/overlays/stats/Stats.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(Stats);41 RegisterClass(Stats); 42 42 43 43 /** -
code/branches/core6/src/modules/pickup/Pickup.cc
r9629 r9638 48 48 /*static*/ const std::string Pickup::durationTypeContinuous_s = "continuous"; 49 49 50 CreateUnloadableFactory(Pickup);50 RegisterUnloadableClass(Pickup); 51 51 52 52 /** -
code/branches/core6/src/modules/pickup/PickupCollection.cc
r9629 r9638 45 45 { 46 46 47 CreateFactory(PickupCollection);47 RegisterClass(PickupCollection); 48 48 49 49 /** -
code/branches/core6/src/modules/pickup/PickupRepresentation.cc
r9629 r9638 45 45 { 46 46 47 CreateFactory(PickupRepresentation);47 RegisterClass(PickupRepresentation); 48 48 49 49 /** -
code/branches/core6/src/modules/pickup/PickupSpawner.cc
r9629 r9638 47 47 { 48 48 49 CreateFactory(PickupSpawner);49 RegisterClass(PickupSpawner); 50 50 51 51 /** -
code/branches/core6/src/modules/pickup/items/DamageBoostPickup.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(DamageBoostPickup);44 RegisterClass(DamageBoostPickup); 45 45 46 46 /** -
code/branches/core6/src/modules/pickup/items/DronePickup.cc
r9629 r9638 45 45 { 46 46 47 CreateFactory(DronePickup);47 RegisterClass(DronePickup); 48 48 49 49 /** -
code/branches/core6/src/modules/pickup/items/HealthPickup.cc
r9629 r9638 47 47 /*static*/ const std::string HealthPickup::healthTypePermanent_s = "permanent"; 48 48 49 CreateFactory(HealthPickup);49 RegisterClass(HealthPickup); 50 50 51 51 /** -
code/branches/core6/src/modules/pickup/items/InvisiblePickup.cc
r9629 r9638 45 45 { 46 46 47 CreateFactory(InvisiblePickup);47 RegisterClass(InvisiblePickup); 48 48 49 49 /** -
code/branches/core6/src/modules/pickup/items/MetaPickup.cc
r9629 r9638 42 42 namespace orxonox { 43 43 44 CreateFactory(MetaPickup);44 RegisterClass(MetaPickup); 45 45 46 46 //! Setting the static variables to their values. -
code/branches/core6/src/modules/pickup/items/ShieldPickup.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(ShieldPickup);44 RegisterClass(ShieldPickup); 45 45 46 46 /** -
code/branches/core6/src/modules/pickup/items/ShrinkPickup.cc
r9629 r9638 46 46 namespace orxonox 47 47 { 48 CreateFactory(ShrinkPickup);48 RegisterClass(ShrinkPickup); 49 49 50 50 /** -
code/branches/core6/src/modules/pickup/items/SpeedPickup.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(SpeedPickup);44 RegisterClass(SpeedPickup); 45 45 46 46 /** -
code/branches/core6/src/modules/pong/Pong.cc
r9629 r9638 53 53 CreateEventName(PongCenterpoint, left); 54 54 55 CreateUnloadableFactory(Pong);55 RegisterUnloadableClass(Pong); 56 56 57 57 /** -
code/branches/core6/src/modules/pong/PongAI.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateUnloadableFactory(PongAI);47 RegisterUnloadableClass(PongAI); 48 48 49 49 const static float MAX_REACTION_TIME = 0.4f; -
code/branches/core6/src/modules/pong/PongBall.cc
r9629 r9638 43 43 namespace orxonox 44 44 { 45 CreateFactory(PongBall);45 RegisterClass(PongBall); 46 46 47 47 const float PongBall::MAX_REL_Z_VELOCITY = 1.5; -
code/branches/core6/src/modules/pong/PongBat.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(PongBat);41 RegisterClass(PongBat); 42 42 43 43 /** -
code/branches/core6/src/modules/pong/PongBot.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(PongBot);41 RegisterClass(PongBot); 42 42 43 43 /** -
code/branches/core6/src/modules/pong/PongCenterpoint.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(PongCenterpoint);43 RegisterClass(PongCenterpoint); 44 44 45 45 /** -
code/branches/core6/src/modules/pong/PongScore.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(PongScore);46 RegisterClass(PongScore); 47 47 48 48 /** -
code/branches/core6/src/modules/portals/PortalEndPoint.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(PortalEndPoint);44 RegisterClass(PortalEndPoint); 45 45 46 46 /*static*/ const std::string PortalEndPoint::EVENTFUNCTIONNAME = "execute"; -
code/branches/core6/src/modules/portals/PortalLink.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(PortalLink);38 RegisterClass(PortalLink); 39 39 40 40 std::map<PortalEndPoint *, PortalEndPoint *> PortalLink::links_s; -
code/branches/core6/src/modules/questsystem/GlobalQuest.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(GlobalQuest);43 RegisterClass(GlobalQuest); 44 44 45 45 /** -
code/branches/core6/src/modules/questsystem/LocalQuest.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(LocalQuest);43 RegisterClass(LocalQuest); 44 44 45 45 /** -
code/branches/core6/src/modules/questsystem/QuestDescription.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(QuestDescription);46 RegisterClass(QuestDescription); 47 47 48 48 /*static*/ const std::string QuestDescription::SENDER = "questsystem"; -
code/branches/core6/src/modules/questsystem/QuestEffectBeacon.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateFactory(QuestEffectBeacon);47 RegisterClass(QuestEffectBeacon); 48 48 49 49 /** -
code/branches/core6/src/modules/questsystem/QuestHint.cc
r9629 r9638 43 43 namespace orxonox 44 44 { 45 CreateFactory(QuestHint);45 RegisterClass(QuestHint); 46 46 47 47 /** -
code/branches/core6/src/modules/questsystem/QuestItem.cc
r9629 r9638 42 42 { 43 43 44 CreateUnloadableFactory(QuestItem);44 RegisterUnloadableClass(QuestItem); 45 45 46 46 /** -
code/branches/core6/src/modules/questsystem/QuestListener.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(QuestListener);44 RegisterClass(QuestListener); 45 45 46 46 // Initialization of the static variables for the modes as strings. -
code/branches/core6/src/modules/questsystem/effects/AddQuest.cc
r9629 r9638 43 43 namespace orxonox 44 44 { 45 CreateFactory(AddQuest);45 RegisterClass(AddQuest); 46 46 47 47 /** -
code/branches/core6/src/modules/questsystem/effects/AddQuestHint.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(AddQuestHint);46 RegisterClass(AddQuestHint); 47 47 48 48 /** -
code/branches/core6/src/modules/questsystem/effects/AddReward.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(AddReward);43 RegisterClass(AddReward); 44 44 45 45 /** -
code/branches/core6/src/modules/questsystem/effects/CompleteQuest.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(CompleteQuest);44 RegisterClass(CompleteQuest); 45 45 46 46 /** -
code/branches/core6/src/modules/questsystem/effects/FailQuest.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(FailQuest);44 RegisterClass(FailQuest); 45 45 46 46 /** -
code/branches/core6/src/modules/tetris/Tetris.cc
r9629 r9638 54 54 { 55 55 56 CreateUnloadableFactory(Tetris);56 RegisterUnloadableClass(Tetris); 57 57 58 58 /** -
code/branches/core6/src/modules/tetris/TetrisBrick.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(TetrisBrick);46 RegisterClass(TetrisBrick); 47 47 48 48 /** -
code/branches/core6/src/modules/tetris/TetrisCenterpoint.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(TetrisCenterpoint);44 RegisterClass(TetrisCenterpoint); 45 45 46 46 /** -
code/branches/core6/src/modules/tetris/TetrisScore.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateFactory(TetrisScore);47 RegisterClass(TetrisScore); 48 48 49 49 /** -
code/branches/core6/src/modules/tetris/TetrisStone.cc
r9629 r9638 42 42 namespace orxonox 43 43 { 44 CreateFactory(TetrisStone);44 RegisterClass(TetrisStone); 45 45 46 46 /** -
code/branches/core6/src/modules/towerdefense/Tower.cc
r9629 r9638 16 16 namespace orxonox 17 17 { 18 CreateFactory(Tower);18 RegisterClass(Tower); 19 19 20 20 /** -
code/branches/core6/src/modules/towerdefense/TowerDefense.cc
r9629 r9638 94 94 namespace orxonox 95 95 { 96 CreateUnloadableFactory(TowerDefense);96 RegisterUnloadableClass(TowerDefense); 97 97 98 98 TowerDefense::TowerDefense(Context* context) : Deathmatch(context) -
code/branches/core6/src/modules/towerdefense/TowerDefenseCenterpoint.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(TowerDefenseCenterpoint);43 RegisterClass(TowerDefenseCenterpoint); 44 44 45 45 /** -
code/branches/core6/src/modules/towerdefense/TowerDefenseController.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(TowerDefenseController);38 RegisterClass(TowerDefenseController); 39 39 40 40 TowerDefenseController::TowerDefenseController(Context* context) : WaypointController(context) -
code/branches/core6/src/modules/towerdefense/TowerDefenseHUDController.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(TowerDefenseHUDController);37 RegisterClass(TowerDefenseHUDController); 38 38 39 39 TowerDefenseHUDController::TowerDefenseHUDController(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/weapons/MuzzleFlash.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(MuzzleFlash);41 RegisterClass(MuzzleFlash); 42 42 43 43 MuzzleFlash::MuzzleFlash(Context* context) : Billboard(context) -
code/branches/core6/src/modules/weapons/munitions/FusionMunition.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(FusionMunition);39 RegisterClass(FusionMunition); 40 40 41 41 FusionMunition::FusionMunition(Context* context) : Munition(context) -
code/branches/core6/src/modules/weapons/munitions/LaserMunition.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(LaserMunition);39 RegisterClass(LaserMunition); 40 40 41 41 LaserMunition::LaserMunition(Context* context) : ReplenishingMunition(context) -
code/branches/core6/src/modules/weapons/munitions/ReplenishingMunition.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(ReplenishingMunition);41 RegisterClass(ReplenishingMunition); 42 42 43 43 ReplenishingMunition::ReplenishingMunition(Context* context) : Munition(context) -
code/branches/core6/src/modules/weapons/munitions/RocketMunition.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(RocketMunition);39 RegisterClass(RocketMunition); 40 40 41 41 RocketMunition::RocketMunition(Context* context) : Munition(context) -
code/branches/core6/src/modules/weapons/projectiles/BillboardProjectile.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(BillboardProjectile);42 RegisterClass(BillboardProjectile); 43 43 44 44 BillboardProjectile::BillboardProjectile(Context* context) : Projectile(context) -
code/branches/core6/src/modules/weapons/projectiles/LightningGunProjectile.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(LightningGunProjectile);42 RegisterClass(LightningGunProjectile); 43 43 44 44 LightningGunProjectile::LightningGunProjectile(Context* context) : BillboardProjectile(context) -
code/branches/core6/src/modules/weapons/projectiles/ParticleProjectile.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(ParticleProjectile);43 RegisterClass(ParticleProjectile); 44 44 45 45 ParticleProjectile::ParticleProjectile(Context* context) : BillboardProjectile(context) -
code/branches/core6/src/modules/weapons/projectiles/Projectile.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(Projectile);46 RegisterClass(Projectile); 47 47 48 48 Projectile::Projectile(Context* context) : MovableEntity(context), BasicProjectile() -
code/branches/core6/src/modules/weapons/projectiles/Rocket.cc
r9629 r9638 51 51 namespace orxonox 52 52 { 53 CreateFactory(Rocket);53 RegisterClass(Rocket); 54 54 55 55 /** -
code/branches/core6/src/modules/weapons/projectiles/SimpleRocket.cc
r9629 r9638 52 52 namespace orxonox 53 53 { 54 CreateFactory(SimpleRocket);54 RegisterClass(SimpleRocket); 55 55 56 56 const float SimpleRocket::FUEL_PERCENTAGE = 0.8f; -
code/branches/core6/src/modules/weapons/weaponmodes/EnergyDrink.cc
r9629 r9638 49 49 namespace orxonox 50 50 { 51 CreateFactory(EnergyDrink);51 RegisterClass(EnergyDrink); 52 52 53 53 EnergyDrink::EnergyDrink(Context* context) : WeaponMode(context) -
code/branches/core6/src/modules/weapons/weaponmodes/FusionFire.cc
r9629 r9638 46 46 namespace orxonox 47 47 { 48 CreateFactory(FusionFire);48 RegisterClass(FusionFire); 49 49 50 50 FusionFire::FusionFire(Context* context) : WeaponMode(context) -
code/branches/core6/src/modules/weapons/weaponmodes/HsW01.cc
r9629 r9638 50 50 namespace orxonox 51 51 { 52 CreateFactory(HsW01);52 RegisterClass(HsW01); 53 53 54 54 HsW01::HsW01(Context* context) : WeaponMode(context) -
code/branches/core6/src/modules/weapons/weaponmodes/LaserFire.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateFactory(LaserFire);47 RegisterClass(LaserFire); 48 48 49 49 LaserFire::LaserFire(Context* context) : WeaponMode(context) -
code/branches/core6/src/modules/weapons/weaponmodes/LightningGun.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(LightningGun);46 RegisterClass(LightningGun); 47 47 48 48 LightningGun::LightningGun(Context* context) : WeaponMode(context) -
code/branches/core6/src/modules/weapons/weaponmodes/RocketFire.cc
r9629 r9638 46 46 namespace orxonox 47 47 { 48 CreateFactory(RocketFire);48 RegisterClass(RocketFire); 49 49 50 50 RocketFire::RocketFire(Context* context) : WeaponMode(context) -
code/branches/core6/src/modules/weapons/weaponmodes/SimpleRocketFire.cc
r9629 r9638 50 50 { 51 51 52 CreateFactory(SimpleRocketFire);52 RegisterClass(SimpleRocketFire); 53 53 54 54 SimpleRocketFire::SimpleRocketFire(Context* context) : WeaponMode(context)
Note: See TracChangeset
for help on using the changeset viewer.