From f56bb35301836e56582a575a75864392a0177875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20P=2E=20Tjern=C3=B8?= Date: Mon, 2 Dec 2013 19:31:46 -0800 Subject: Fix line endings. WHAMMY. --- mp/src/game/shared/interval.cpp | 118 ++++++++++++++++++++-------------------- 1 file changed, 59 insertions(+), 59 deletions(-) (limited to 'mp/src/game/shared/interval.cpp') 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; +} -- cgit v1.2.3