diff options
| author | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:31:46 -0800 |
|---|---|---|
| committer | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:46:31 -0800 |
| commit | f56bb35301836e56582a575a75864392a0177875 (patch) | |
| tree | de61ddd39de3e7df52759711950b4c288592f0dc /mp/src/game/shared/interval.cpp | |
| parent | Mark some more files as text. (diff) | |
| download | source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.tar.xz source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.zip | |
Fix line endings. WHAMMY.
Diffstat (limited to 'mp/src/game/shared/interval.cpp')
| -rw-r--r-- | mp/src/game/shared/interval.cpp | 118 |
1 files changed, 59 insertions, 59 deletions
diff --git a/mp/src/game/shared/interval.cpp b/mp/src/game/shared/interval.cpp index e54cb7d7..38c90359 100644 --- a/mp/src/game/shared/interval.cpp +++ b/mp/src/game/shared/interval.cpp @@ -1,59 +1,59 @@ -//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-// $NoKeywords: $
-//=============================================================================//
-
-#include "tier0/platform.h"
-#include "interval.h"
-#include "tier1/strtools.h"
-#include "vstdlib/random.h"
-
-// memdbgon must be the last include file in a .cpp file!!!
-#include "tier0/memdbgon.h"
-
-//-----------------------------------------------------------------------------
-// Purpose:
-// Input : *pString -
-// Output : interval_t
-//-----------------------------------------------------------------------------
-interval_t ReadInterval( const char *pString )
-{
- interval_t tmp;
-
- tmp.start = 0;
- tmp.range = 0;
-
- char tempString[128];
- Q_strncpy( tempString, pString, sizeof(tempString) );
-
- char *token = strtok( tempString, "," );
- if ( token )
- {
- tmp.start = atof( token );
- token = strtok( NULL, "," );
- if ( token )
- {
- tmp.range = atof( token ) - tmp.start;
- }
- }
-
- return tmp;
-}
-
-//-----------------------------------------------------------------------------
-// Purpose:
-// Input : &interval -
-// Output : float
-//-----------------------------------------------------------------------------
-float RandomInterval( const interval_t &interval )
-{
- float out = interval.start;
- if ( interval.range != 0 )
- {
- out += RandomFloat( 0, interval.range );
- }
-
- return out;
-}
+//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#include "tier0/platform.h" +#include "interval.h" +#include "tier1/strtools.h" +#include "vstdlib/random.h" + +// memdbgon must be the last include file in a .cpp file!!! +#include "tier0/memdbgon.h" + +//----------------------------------------------------------------------------- +// Purpose: +// Input : *pString - +// Output : interval_t +//----------------------------------------------------------------------------- +interval_t ReadInterval( const char *pString ) +{ + interval_t tmp; + + tmp.start = 0; + tmp.range = 0; + + char tempString[128]; + Q_strncpy( tempString, pString, sizeof(tempString) ); + + char *token = strtok( tempString, "," ); + if ( token ) + { + tmp.start = atof( token ); + token = strtok( NULL, "," ); + if ( token ) + { + tmp.range = atof( token ) - tmp.start; + } + } + + return tmp; +} + +//----------------------------------------------------------------------------- +// Purpose: +// Input : &interval - +// Output : float +//----------------------------------------------------------------------------- +float RandomInterval( const interval_t &interval ) +{ + float out = interval.start; + if ( interval.range != 0 ) + { + out += RandomFloat( 0, interval.range ); + } + + return out; +} |