2007-01-15 12:09:25 -08:00
|
|
|
/*
|
|
|
|
This file is part of Warzone 2100.
|
|
|
|
Copyright (C) 1999-2004 Eidos Interactive
|
2010-07-26 16:36:29 -07:00
|
|
|
Copyright (C) 2005-2010 Warzone 2100 Project
|
2007-01-15 12:09:25 -08:00
|
|
|
|
|
|
|
Warzone 2100 is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Warzone 2100 is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Warzone 2100; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2009-02-10 09:23:09 -08:00
|
|
|
/*!
|
|
|
|
* \file
|
|
|
|
* \brief Routines to provide simple math helper functions
|
2006-09-25 09:46:28 -07:00
|
|
|
*/
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2009-02-10 09:23:09 -08:00
|
|
|
#ifndef MATH_EXT_H
|
|
|
|
#define MATH_EXT_H
|
2008-10-04 05:34:42 -07:00
|
|
|
|
2008-03-07 10:27:43 -08:00
|
|
|
#include "wzglobal.h"
|
2008-10-08 11:24:19 -07:00
|
|
|
#include <math.h>
|
2009-04-29 11:37:01 -07:00
|
|
|
#include <stdlib.h>
|
2008-03-07 10:27:43 -08:00
|
|
|
|
2009-02-08 19:53:05 -08:00
|
|
|
// Also PERCENT(int,int); // returns a int value 0->100 of the percentage of the first param over the second
|
2007-06-28 10:47:08 -07:00
|
|
|
#define PERCENT(a,b) (((a)*100)/(b))
|
|
|
|
#define PERNUM(range,a,b) (((a)*range)/(b))
|
|
|
|
|
2007-01-24 11:42:20 -08:00
|
|
|
#ifndef M_PI
|
2007-05-19 14:32:19 -07:00
|
|
|
# define M_PI 3.14159265358979323846
|
2007-01-24 11:42:20 -08:00
|
|
|
#endif
|
|
|
|
|
2008-03-07 10:45:56 -08:00
|
|
|
#if !defined(WZ_C99) && !defined(__cplusplus) && !defined(WZ_CC_GNU)
|
2009-02-08 19:53:08 -08:00
|
|
|
# include <float.h>
|
|
|
|
|
|
|
|
|
2008-01-27 16:22:02 -08:00
|
|
|
static inline int roundf(float x)
|
2007-12-24 05:57:19 -08:00
|
|
|
{
|
|
|
|
// Ensure that float truncation results in a proper rounding
|
2008-01-27 16:22:02 -08:00
|
|
|
if (x < 0.0f)
|
2007-12-24 05:57:19 -08:00
|
|
|
return x - 0.5f;
|
|
|
|
else
|
|
|
|
return x + 0.5f;
|
|
|
|
}
|
2008-10-08 11:24:19 -07:00
|
|
|
|
2009-02-08 19:53:05 -08:00
|
|
|
|
2008-10-08 11:24:19 -07:00
|
|
|
/**
|
|
|
|
* nearbyint(3) implementation because that function is only available on C99
|
|
|
|
* compatible C libraries.
|
|
|
|
*
|
|
|
|
* This function rounds its argument to an integer value in floating point
|
|
|
|
* format, using the current rounding direction and without raising an
|
|
|
|
* @c inexact exception.
|
|
|
|
*
|
|
|
|
* @return The rounded integer value. If @c x is integral or infinite, @c x
|
|
|
|
* itself is returned.
|
|
|
|
*/
|
|
|
|
static double nearbyint(double x)
|
|
|
|
{
|
|
|
|
if (ceil(x + 0.5) == floor(x + 0.5))
|
|
|
|
{
|
|
|
|
if ((int)ceil(x) % 2 == 0)
|
|
|
|
{
|
|
|
|
return ceil(x);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return floor(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return floor(x + 0.5);
|
|
|
|
}
|
|
|
|
}
|
2008-10-14 13:25:41 -07:00
|
|
|
|
2009-02-08 19:53:05 -08:00
|
|
|
|
2008-10-14 13:25:41 -07:00
|
|
|
static inline WZ_DECL_CONST float hypotf(float x, float y)
|
|
|
|
{
|
2009-02-08 19:53:05 -08:00
|
|
|
return sqrtf(x * x + y * y);
|
2008-10-14 13:25:41 -07:00
|
|
|
}
|
2008-01-27 16:22:02 -08:00
|
|
|
#endif
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2008-03-07 04:42:42 -08:00
|
|
|
|
2008-03-07 04:17:11 -08:00
|
|
|
/*!
|
2008-05-13 16:19:10 -07:00
|
|
|
* Moves x into the range 0.0f - max
|
2008-03-07 04:17:11 -08:00
|
|
|
* \param x Value to clip
|
2008-05-13 16:19:10 -07:00
|
|
|
* \param max Upper range
|
|
|
|
* \return Value in the range 0.0f - max
|
2008-03-07 04:17:11 -08:00
|
|
|
*/
|
2008-05-13 16:19:10 -07:00
|
|
|
static inline WZ_DECL_CONST float wrapf(float x, float max)
|
2008-03-07 04:17:11 -08:00
|
|
|
{
|
2008-05-13 16:19:10 -07:00
|
|
|
while(x < 0.0f) x += max;
|
|
|
|
while(x >= max) x -= max;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2008-06-29 05:07:26 -07:00
|
|
|
|
2008-05-13 16:19:10 -07:00
|
|
|
/*!
|
|
|
|
* Clips x to boundaries
|
|
|
|
* \param x Value to clip
|
|
|
|
* \param min Lower bound
|
|
|
|
* \param max Upper bound
|
|
|
|
*/
|
|
|
|
static inline WZ_DECL_CONST int clip(int x, int min, int max)
|
|
|
|
{
|
|
|
|
if (x < min) return min;
|
|
|
|
if (x > max) return max;
|
2008-03-07 04:17:11 -08:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2008-06-29 05:07:26 -07:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Clips x to boundaries
|
|
|
|
* \param x Value to clip
|
|
|
|
* \param min Lower bound
|
|
|
|
* \param max Upper bound
|
|
|
|
*/
|
|
|
|
static inline WZ_DECL_CONST float clipf(float x, float min, float max)
|
|
|
|
{
|
|
|
|
if (x < min) return min;
|
|
|
|
if (x > max) return max;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2009-02-10 09:23:09 -08:00
|
|
|
#endif // MATH_EXT_H
|