- Timestamp:
- Feb 10, 2011, 11:34:20 PM (14 years ago)
- Location:
- code/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/XMLPort.h
r7401 r7851 589 589 : variable_(var) 590 590 { } 591 virtual ~XMLPortVariableHelperClass() {} 591 592 592 593 template <class T> -
code/trunk/src/libraries/core/command/Functor.h
r7401 r7851 120 120 #include "util/Debug.h" 121 121 #include "util/MultiType.h" 122 #include "core/OrxonoxClass.h" 122 123 #include "FunctorPtr.h" 123 124 … … 186 187 187 188 public: 189 virtual ~Functor() {} 190 188 191 /// Calls the function-pointer with up to five arguments. In case of a member-function, the assigned object-pointer is used to call the function. @return Returns the return-value of the function (if any; MT_Type::Null otherwise) 189 192 virtual MultiType operator()(const MultiType& param1 = MT_Type::Null, const MultiType& param2 = MT_Type::Null, const MultiType& param3 = MT_Type::Null, const MultiType& param4 = MT_Type::Null, const MultiType& param5 = MT_Type::Null) = 0; … … 211 214 /// Returns the object-pointer. 212 215 virtual void* getRawObjectPointer() const = 0; 216 217 /// Enables or disables the safe mode which causes the functor to change the object pointer to NULL if the object is deleted (only member functors). 218 virtual void setSafeMode(bool bSafeMode) = 0; 213 219 214 220 /// Returns the full identifier of the function-pointer which is defined as typeid(@a F), where @a F is the type of the stored function-pointer. Used to compare functors. … … 220 226 }; 221 227 222 namespace detail223 {224 // helper class to determine if a functor is static or not225 template <class O>226 struct FunctorTypeStatic227 { enum { result = false }; };228 template <>229 struct FunctorTypeStatic<void>230 { enum { result = true }; };231 }232 233 228 /** 234 229 @brief FunctorMember is a child class of Functor and expands it with an object-pointer, that … … 243 238 */ 244 239 template <class O> 245 class FunctorMember : public Functor 240 class FunctorMember : public Functor, public DestructionListener 246 241 { 247 242 public: 248 243 /// Constructor: Stores the object-pointer. 249 FunctorMember(O* object = 0) : object_(object) {} 244 FunctorMember(O* object = 0) : object_(object), bSafeMode_(false) {} 245 virtual ~FunctorMember() { if (this->bSafeMode_) { this->unregisterObject(this->object_); } } 250 246 251 247 /// Calls the function-pointer with up to five arguments and an object. In case of a static-function, the object can be NULL. @return Returns the return-value of the function (if any; MT_Type::Null otherwise) … … 255 251 MultiType operator()(const MultiType& param1 = MT_Type::Null, const MultiType& param2 = MT_Type::Null, const MultiType& param3 = MT_Type::Null, const MultiType& param4 = MT_Type::Null, const MultiType& param5 = MT_Type::Null) 256 252 { 257 // call the function if it is static or ifan object was assigned258 if ( detail::FunctorTypeStatic<O>::result ||this->object_)253 // call the function if an object was assigned 254 if (this->object_) 259 255 return (*this)(this->object_, param1, param2, param3, param4, param5); 260 256 else … … 266 262 267 263 // see Functor::getType() 268 Functor::Type::Enum getType() const269 { return detail::FunctorTypeStatic<O>::result ? Functor::Type::Static :Functor::Type::Member; }264 inline Functor::Type::Enum getType() const 265 { return Functor::Type::Member; } 270 266 271 267 /// Assigns an object-pointer to the functor which is used to execute a member-function. 272 268 inline void setObject(O* object) 273 { this->object_ = object;} 269 { 270 if (this->bSafeMode_ && object != this->object_) 271 { 272 this->unregisterObject(this->object_); 273 this->registerObject(object); 274 } 275 this->object_ = object; 276 } 274 277 /// Returns the object-pointer. 275 278 inline O* getObject() const … … 278 281 // see Functor::setRawObjectPointer() 279 282 inline void setRawObjectPointer(void* object) 280 { this-> object_ = (O*)object; }283 { this->setObject((O*)object); } 281 284 // see Functor::getRawObjectPointer() 282 285 inline void* getRawObjectPointer() const 283 286 { return this->object_; } 284 287 288 // see Functor::setSafeMode() 289 inline void setSafeMode(bool bSafeMode) 290 { 291 if (bSafeMode == this->bSafeMode_) 292 return; 293 294 this->bSafeMode_ = bSafeMode; 295 296 if (bSafeMode) 297 this->registerObject(this->object_); 298 else 299 this->unregisterObject(this->object_); 300 } 301 285 302 protected: 303 /// Casts the object and registers as destruction listener. 304 inline void registerObject(O* object) 305 { OrxonoxClass* base = orxonox_cast<OrxonoxClass*>(object); if (base) { this->registerAsDestructionListener(base); } } 306 /// Casts the object and unregisters as destruction listener. 307 inline void unregisterObject(O* object) 308 { OrxonoxClass* base = orxonox_cast<OrxonoxClass*>(object); if (base) { this->unregisterAsDestructionListener(base); } } 309 310 /// Will be called by OrxonoxClass::~OrxonoxClass() if the stored object is deleted and the Functor is in safe mode. 311 inline void objectDeleted() 312 { this->object_ = 0; } 313 286 314 O* object_; ///< The stored object-pointer, used to execute a member-function (or NULL for static functions) 315 bool bSafeMode_; ///< If true, the functor is in safe mode and registers itself as listener at the object and changes the pointer to NULL if the object is deleted 316 }; 317 318 /// Specialization of FunctorMember with @a T = void. 319 template <> 320 class FunctorMember<void> : public Functor 321 { 322 public: 323 /// Constructor: Stores the object-pointer. 324 FunctorMember(void* object = 0) {} 325 326 /// Calls the function-pointer with up to five arguments and an object. In case of a static-function, the object can be NULL. @return Returns the return-value of the function (if any; MT_Type::Null otherwise) 327 virtual MultiType operator()(void* object, const MultiType& param1 = MT_Type::Null, const MultiType& param2 = MT_Type::Null, const MultiType& param3 = MT_Type::Null, const MultiType& param4 = MT_Type::Null, const MultiType& param5 = MT_Type::Null) = 0; 328 329 // see Functor::operator()() 330 MultiType operator()(const MultiType& param1 = MT_Type::Null, const MultiType& param2 = MT_Type::Null, const MultiType& param3 = MT_Type::Null, const MultiType& param4 = MT_Type::Null, const MultiType& param5 = MT_Type::Null) 331 { 332 return (*this)((void*)0, param1, param2, param3, param4, param5); 333 } 334 335 // see Functor::getType() 336 inline Functor::Type::Enum getType() const 337 { return Functor::Type::Static; } 338 339 // see Functor::setRawObjectPointer() 340 inline void setRawObjectPointer(void*) 341 { COUT(2) << "Warning: Can't assign an object pointer to a static functor" << std::endl; } 342 // see Functor::getRawObjectPointer() 343 inline void* getRawObjectPointer() const 344 { return 0; } 345 346 // see Functor::setSafeMode() 347 inline void setSafeMode(bool) {} 287 348 }; 288 349 -
code/trunk/src/libraries/tools/Timer.h
r7545 r7851 117 117 this->time_ = this->interval_; 118 118 this->bKillAfterCall_ = bKillAfterCall; 119 120 executor->getFunctor()->setSafeMode(true); 119 121 } 120 122 -
code/trunk/src/orxonox/weaponsystem/Munition.h
r5929 r7851 45 45 public: 46 46 Magazine(Munition* munition, bool bUseReloadTime = true); 47 virtual ~Magazine() {} 47 48 48 49 unsigned int munition_;
Note: See TracChangeset
for help on using the changeset viewer.