X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=adaptors%2Fbase%2Fenvironment-options.cpp;h=0866eeb17927693c7fecae8fab011dfbe145540c;hb=4b464f187d39773bb79bd1b00a531af113e0dafd;hp=a029a308f3088c3888587272d6b1c8c7ab6a6a17;hpb=763860897fc161136098cc8ec843641d81137e4d;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/adaptors/base/environment-options.cpp b/adaptors/base/environment-options.cpp index a029a30..0866eeb 100644 --- a/adaptors/base/environment-options.cpp +++ b/adaptors/base/environment-options.cpp @@ -84,23 +84,31 @@ const char * GetCharEnvironmentVariable( const char * variable ) EnvironmentOptions::EnvironmentOptions() : mWindowName(), mWindowClassName(), - mNetworkControl(0), - mFpsFrequency(0), - mUpdateStatusFrequency(0), + mNetworkControl( 0 ), + mFpsFrequency( 0 ), + mUpdateStatusFrequency( 0 ), mObjectProfilerInterval( 0 ), - mPerformanceStatsLevel(0), + mPerformanceStatsLevel( 0 ), mPerformanceStatsFrequency( DEFAULT_STATISTICS_LOG_FREQUENCY ), - mPerformanceTimeStampOutput(0), - mPanGestureLoggingLevel(0), - mPanGesturePredictionMode(-1), - mPanGesturePredictionAmount(-1), ///< only sets value in pan gesture if greater than 0 - mPanGestureMaxPredictionAmount(-1), - mPanGestureMinPredictionAmount(-1), - mPanGesturePredictionAmountAdjustment(-1), - mPanGestureSmoothingMode(-1), - mPanGestureSmoothingAmount(-1.0f), - mPanMinimumDistance(-1), - mPanMinimumEvents(-1), + mPerformanceTimeStampOutput( 0 ), + mPanGestureLoggingLevel( 0 ), + mPanGesturePredictionMode( -1 ), + mPanGesturePredictionAmount( -1 ), ///< only sets value in pan gesture if greater than 0 + mPanGestureMaxPredictionAmount( -1 ), + mPanGestureMinPredictionAmount( -1 ), + mPanGesturePredictionAmountAdjustment( -1 ), + mPanGestureSmoothingMode( -1 ), + mPanGestureSmoothingAmount( -1.0f ), + mPanGestureUseActualTimes( -1 ), + mPanGestureInterpolationTimeRange( -1 ), + mPanGestureScalarOnlyPredictionEnabled( -1 ), + mPanGestureTwoPointPredictionEnabled( -1 ), + mPanGestureTwoPointInterpolatePastTime( -1 ), + mPanGestureTwoPointVelocityBias( -1.0f ), + mPanGestureTwoPointAccelerationBias( -1.0f ), + mPanGestureMultitapSmoothingRange( -1 ), + mPanMinimumDistance( -1 ), + mPanMinimumEvents( -1 ), mGlesCallTime( 0 ), mWindowWidth( 0 ), mWindowHeight( 0 ), @@ -203,6 +211,46 @@ float EnvironmentOptions::GetPanGestureSmoothingAmount() const return mPanGestureSmoothingAmount; } +int EnvironmentOptions::GetPanGestureUseActualTimes() const +{ + return mPanGestureUseActualTimes; +} + +int EnvironmentOptions::GetPanGestureInterpolationTimeRange() const +{ + return mPanGestureInterpolationTimeRange; +} + +int EnvironmentOptions::GetPanGestureScalarOnlyPredictionEnabled() const +{ + return mPanGestureScalarOnlyPredictionEnabled; +} + +int EnvironmentOptions::GetPanGestureTwoPointPredictionEnabled() const +{ + return mPanGestureTwoPointPredictionEnabled; +} + +int EnvironmentOptions::GetPanGestureTwoPointInterpolatePastTime() const +{ + return mPanGestureTwoPointInterpolatePastTime; +} + +float EnvironmentOptions::GetPanGestureTwoPointVelocityBias() const +{ + return mPanGestureTwoPointVelocityBias; +} + +float EnvironmentOptions::GetPanGestureTwoPointAccelerationBias() const +{ + return mPanGestureTwoPointAccelerationBias; +} + +int EnvironmentOptions::GetPanGestureMultitapSmoothingRange() const +{ + return mPanGestureMultitapSmoothingRange; +} + int EnvironmentOptions::GetMinimumPanDistance() const { return mPanMinimumDistance; @@ -329,6 +377,68 @@ void EnvironmentOptions::ParseEnvironmentOptions() mPanGestureSmoothingAmount = smoothingAmount; } + int useActualTimes( -1 ); + if( GetIntegerEnvironmentVariable( DALI_ENV_PAN_USE_ACTUAL_TIMES, useActualTimes ) ) + { + mPanGestureUseActualTimes = useActualTimes == 0 ? 0 : 1; + } + + int interpolationTimeRange( -1 ); + if( GetIntegerEnvironmentVariable( DALI_ENV_PAN_INTERPOLATION_TIME_RANGE, interpolationTimeRange ) ) + { + if( interpolationTimeRange < 0 ) + { + interpolationTimeRange = 0; + } + mPanGestureInterpolationTimeRange = interpolationTimeRange; + } + + int scalarOnlyPredictionEnabled( -1 ); + if( GetIntegerEnvironmentVariable( DALI_ENV_PAN_SCALAR_ONLY_PREDICTION_ENABLED, scalarOnlyPredictionEnabled ) ) + { + mPanGestureScalarOnlyPredictionEnabled = scalarOnlyPredictionEnabled == 0 ? 0 : 1; + } + + int twoPointPredictionEnabled( -1 ); + if( GetIntegerEnvironmentVariable( DALI_ENV_PAN_TWO_POINT_PREDICTION_ENABLED, twoPointPredictionEnabled ) ) + { + mPanGestureTwoPointPredictionEnabled = twoPointPredictionEnabled == 0 ? 0 : 1; + } + + int twoPointPastInterpolateTime( -1 ); + if( GetIntegerEnvironmentVariable( DALI_ENV_PAN_TWO_POINT_PAST_INTERPOLATE_TIME, twoPointPastInterpolateTime ) ) + { + if( twoPointPastInterpolateTime < 0 ) + { + twoPointPastInterpolateTime = 0; + } + mPanGestureTwoPointInterpolatePastTime = twoPointPastInterpolateTime; + } + + float twoPointVelocityBias = -1.0f; + if( GetFloatEnvironmentVariable( DALI_ENV_PAN_TWO_POINT_VELOCITY_BIAS, twoPointVelocityBias ) ) + { + twoPointVelocityBias = Clamp( twoPointVelocityBias, 0.0f, 1.0f ); + mPanGestureTwoPointVelocityBias = twoPointVelocityBias; + } + + float twoPointAccelerationBias = -1.0f; + if( GetFloatEnvironmentVariable( DALI_ENV_PAN_TWO_POINT_ACCELERATION_BIAS, twoPointAccelerationBias ) ) + { + twoPointAccelerationBias = Clamp( twoPointAccelerationBias, 0.0f, 1.0f ); + mPanGestureTwoPointAccelerationBias = twoPointAccelerationBias; + } + + int multitapSmoothingRange( -1 ); + if( GetIntegerEnvironmentVariable( DALI_ENV_PAN_MULTITAP_SMOOTHING_RANGE, multitapSmoothingRange ) ) + { + if( multitapSmoothingRange < 0 ) + { + multitapSmoothingRange = 0; + } + mPanGestureMultitapSmoothingRange = multitapSmoothingRange; + } + int minimumDistance(-1); if ( GetIntegerEnvironmentVariable(DALI_ENV_PAN_MINIMUM_DISTANCE, minimumDistance )) {