Changeset 7284 for code/trunk/src/modules/overlays
- Timestamp:
- Aug 31, 2010, 3:37:40 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/modules/overlays/OverlaysPrecompiledHeaders.h
r5781 r7284 58 58 /////////////////////////////////////////// 59 59 60 #include "core/ Executor.h" // 1360 #include "core/command/Executor.h" // 13 61 61 //#include "network/synchronisable/Synchronisable.h" // 13 62 62 //#include "core/XMLPort.h" // 9 -
code/trunk/src/modules/overlays/hud/ChatOverlay.cc
r6417 r7284 36 36 #include "core/CoreIncludes.h" 37 37 #include "core/ConfigValueIncludes.h" 38 #include "core/ Executor.h"38 #include "core/command/Executor.h" 39 39 40 40 #include "tools/Timer.h" … … 91 91 Timer* timer = new Timer(); 92 92 this->timers_.insert(timer); // store the timer in a set to destroy it in the destructor 93 Executor*executor = createExecutor(createFunctor(&ChatOverlay::dropMessage, this));93 const ExecutorPtr& executor = createExecutor(createFunctor(&ChatOverlay::dropMessage, this)); 94 94 executor->setDefaultValues(timer); 95 95 timer->setTimer(this->displayTime_, false, executor, true); -
code/trunk/src/modules/overlays/hud/GametypeStatus.cc
r7163 r7284 30 30 31 31 #include "util/Convert.h" 32 #include "core/ConsoleCommand.h"33 32 #include "core/CoreIncludes.h" 33 #include "core/command/ConsoleCommand.h" 34 34 #include "infos/GametypeInfo.h" 35 35 #include "infos/PlayerInfo.h" … … 41 41 CreateFactory(GametypeStatus); 42 42 43 /*static*/ bool GametypeStatus::noCaption_s = false; 44 SetConsoleCommand(GametypeStatus, setGametypeStatus, true); 43 static const std::string __CC_GametypeStatus_name = "GametypeStatus"; 44 static const std::string __CC_displayCaption_name = "displayCaption"; 45 46 SetConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name, &GametypeStatus::setDisplayCaption); 45 47 46 48 GametypeStatus::GametypeStatus(BaseObject* creator) : OverlayText(creator) … … 49 51 50 52 this->owner_ = 0; 53 this->bNoCaption_ = false; 54 55 ModifyConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name).setObject(this); 51 56 } 52 57 53 58 GametypeStatus::~GametypeStatus() 54 59 { 60 ModifyConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name).setObject(0); 55 61 } 56 62 … … 64 70 ControllableEntity* ce = this->owner_->getControllableEntity(); 65 71 66 if (GametypeStatus::noCaption_s) // No captions are displayed.72 if (this->bNoCaption_) // No captions are displayed. 67 73 { 68 74 this->setCaption(""); … … 105 111 If true captions are displayed, if false, not. 106 112 */ 107 /*static*/ void GametypeStatus::setGametypeStatus(bool bValue)113 void GametypeStatus::setDisplayCaption(bool bValue) 108 114 { 109 GametypeStatus::noCaption_s= !bValue;115 this->bNoCaption_ = !bValue; 110 116 } 111 117 -
code/trunk/src/modules/overlays/hud/GametypeStatus.h
r7163 r7284 46 46 virtual void changedOwner(); 47 47 48 static void setGametypeStatus(bool bValue); //!< Toggles whether the gametype status is displayed.48 void setDisplayCaption(bool bValue); //!< Toggles whether the gametype status is displayed. 49 49 50 50 private: 51 51 PlayerInfo* owner_; 52 static bool noCaption_s;52 bool bNoCaption_; 53 53 54 54 };
Note: See TracChangeset
for help on using the changeset viewer.