diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/client/fx_interpvalue.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/client/fx_interpvalue.h')
| -rw-r--r-- | game/client/fx_interpvalue.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/game/client/fx_interpvalue.h b/game/client/fx_interpvalue.h new file mode 100644 index 0000000..a274ffe --- /dev/null +++ b/game/client/fx_interpvalue.h @@ -0,0 +1,52 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= + +#ifndef FX_INTERPVALUE_H +#define FX_INTERPVALUE_H +#ifdef _WIN32 +#pragma once +#endif + +// Types of supported interpolation +enum InterpType_t +{ + INTERP_LINEAR = 0, + INTERP_SPLINE, +}; + +class CInterpolatedValue +{ +public: + CInterpolatedValue( void ); + CInterpolatedValue( float startTime, float endTime, float startValue, float endValue, InterpType_t type ); + + void SetTime( float start, float end ); + void SetRange( float start, float end ); + void SetType( InterpType_t type ); + + // Set the value with no range + void SetAbsolute( float value ); + + // Set the value with range and time supplied + void Init( float startValue, float endValue, float dt, InterpType_t type = INTERP_LINEAR ); + + // Start from the current value and move towards the end value + void InitFromCurrent( float endValue, float dt, InterpType_t type = INTERP_LINEAR ); + + // Find our interpolated value at the given point in time + float Interp( float curTime ); + +private: + + float m_flStartTime; + float m_flEndTime; + float m_flStartValue; + float m_flEndValue; + + int m_nInterpType; +}; + +#endif // FX_INTERPVALUE_H
\ No newline at end of file |