Changeset 7172 for code/trunk/src/libraries/tools
- Timestamp:
- Aug 17, 2010, 8:25:21 PM (14 years ago)
- Location:
- code/trunk/src/libraries/tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/tools/CMakeLists.txt
r7163 r7172 22 22 LINK_LIBRARIES 23 23 core 24 network25 24 SOURCE_FILES ${TOOLS_SRC_FILES} 26 25 ) -
code/trunk/src/libraries/tools/interfaces/TimeFactorListener.h
r6417 r7172 41 41 virtual ~TimeFactorListener() {} 42 42 43 static void setTimeFactor( float factor);44 static void setTimeFactorInternal( float factor );45 static inline float getTimeFactor(){ return TimeFactorListener::timefactor_s; }43 static void setTimeFactor(float factor); 44 static inline float getTimeFactor() 45 { return TimeFactorListener::timefactor_s; } 46 46 47 47 protected: -
code/trunk/src/libraries/tools/interfaces/ToolsInterfaceCompilation.cc
r6417 r7172 38 38 #include "core/CoreIncludes.h" 39 39 #include "core/GameMode.h" 40 #include "network/NetworkFunction.h"41 40 42 41 namespace orxonox … … 45 44 // TimeFactorListener 46 45 //---------------------------- 47 registerStaticNetworkFunction( &TimeFactorListener::setTimeFactorInternal );48 49 46 float TimeFactorListener::timefactor_s = 1.0f; 50 47 … … 54 51 } 55 52 56 /*static*/ void TimeFactorListener::setTimeFactor( float factor)53 /*static*/ void TimeFactorListener::setTimeFactor(float factor) 57 54 { 58 if ( !GameMode::isStandalone() ) 59 callStaticNetworkFunction( &TimeFactorListener::setTimeFactorInternal, CLIENTID_UNKNOWN, factor ); 60 TimeFactorListener::setTimeFactorInternal(factor); 61 } 55 if (factor == TimeFactorListener::timefactor_s) 56 return; 62 57 63 /*static*/ void TimeFactorListener::setTimeFactorInternal( float factor )64 {65 58 float oldFactor = TimeFactorListener::timefactor_s; 66 59 TimeFactorListener::timefactor_s = factor;
Note: See TracChangeset
for help on using the changeset viewer.