1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2014-04-09 10:29:46 -07:00
|
|
|
** $Id: lmathlib.c,v 1.95 2014/04/03 14:18:19 roberto Exp roberto $
|
1999-12-27 09:33:22 -08:00
|
|
|
** Standard mathematical library
|
1997-09-16 12:25:59 -07:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
2002-12-04 09:38:31 -08:00
|
|
|
#define lmathlib_c
|
2004-04-30 13:13:38 -07:00
|
|
|
#define LUA_LIB
|
2002-12-04 09:38:31 -08:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lua.h"
|
2000-06-12 06:52:05 -07:00
|
|
|
|
|
|
|
#include "lauxlib.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lualib.h"
|
|
|
|
|
|
|
|
|
2012-05-18 10:47:53 -07:00
|
|
|
#undef PI
|
2014-04-09 10:29:46 -07:00
|
|
|
#define PI (l_mathop(3.141592653589793238462643383279502884))
|
2012-05-18 10:47:53 -07:00
|
|
|
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_abs (lua_State *L) {
|
2014-03-31 12:00:52 -07:00
|
|
|
if (lua_isinteger(L, 1)) {
|
|
|
|
lua_Integer n = lua_tointeger(L, 1);
|
|
|
|
if (n < 0) n = (lua_Integer)(0u - n);
|
|
|
|
lua_pushinteger(L, n);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lua_pushnumber(L, l_mathop(fabs)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_sin (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(sin)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2005-03-04 10:57:03 -08:00
|
|
|
static int math_sinh (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(sinh)(luaL_checknumber(L, 1)));
|
2005-03-04 10:57:03 -08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_cos (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(cos)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2005-03-04 10:57:03 -08:00
|
|
|
static int math_cosh (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(cosh)(luaL_checknumber(L, 1)));
|
2005-03-04 10:57:03 -08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_tan (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(tan)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2005-03-04 10:57:03 -08:00
|
|
|
static int math_tanh (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(tanh)(luaL_checknumber(L, 1)));
|
2005-03-04 10:57:03 -08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_asin (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(asin)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_acos (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(acos)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_atan (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(atan)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_atan2 (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(atan2)(luaL_checknumber(L, 1),
|
2010-11-11 07:39:12 -08:00
|
|
|
luaL_checknumber(L, 2)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_ceil (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(ceil)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_floor (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(floor)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2013-07-03 10:23:19 -07:00
|
|
|
static int math_ifloor (lua_State *L) {
|
|
|
|
int valid;
|
|
|
|
lua_Integer n = lua_tointegerx(L, 1, &valid);
|
|
|
|
if (valid)
|
|
|
|
lua_pushinteger(L, n);
|
|
|
|
else {
|
|
|
|
luaL_checktype(L, 1, LUA_TNUMBER); /* error if not a number */
|
|
|
|
lua_pushnil(L); /* number with invalid integer value */
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-06-13 14:20:14 -07:00
|
|
|
static int math_fmod (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(fmod)(luaL_checknumber(L, 1),
|
2010-11-11 07:39:12 -08:00
|
|
|
luaL_checknumber(L, 2)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2013-06-25 07:02:18 -07:00
|
|
|
/*
|
|
|
|
** next function does not use 'modf', avoiding problems with 'double*'
|
|
|
|
** (which is not compatible with 'float*') when lua_Number is not
|
|
|
|
** 'double'.
|
|
|
|
*/
|
2005-03-04 10:57:03 -08:00
|
|
|
static int math_modf (lua_State *L) {
|
2013-06-25 07:02:18 -07:00
|
|
|
lua_Number n = luaL_checknumber(L, 1);
|
|
|
|
/* integer part (rounds toward zero) */
|
|
|
|
lua_Number ip = (n < 0) ? -l_mathop(floor)(-n) : l_mathop(floor)(n);
|
2005-03-04 10:57:03 -08:00
|
|
|
lua_pushnumber(L, ip);
|
2013-06-25 07:02:18 -07:00
|
|
|
/* fractionary part (test handles inf/-inf) */
|
|
|
|
lua_pushnumber(L, (n == ip) ? 0.0 : (n - ip));
|
2005-03-04 10:57:03 -08:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2013-06-25 07:02:18 -07:00
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_sqrt (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(sqrt)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_pow (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_Number x = luaL_checknumber(L, 1);
|
|
|
|
lua_Number y = luaL_checknumber(L, 2);
|
|
|
|
lua_pushnumber(L, l_mathop(pow)(x, y));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_log (lua_State *L) {
|
2009-02-18 05:06:05 -08:00
|
|
|
lua_Number x = luaL_checknumber(L, 1);
|
|
|
|
lua_Number res;
|
|
|
|
if (lua_isnoneornil(L, 2))
|
2013-01-29 08:00:40 -08:00
|
|
|
res = l_mathop(log)(x);
|
2009-02-18 05:06:05 -08:00
|
|
|
else {
|
|
|
|
lua_Number base = luaL_checknumber(L, 2);
|
2013-01-29 08:00:40 -08:00
|
|
|
if (base == (lua_Number)10.0) res = l_mathop(log10)(x);
|
|
|
|
else res = l_mathop(log)(x)/l_mathop(log)(base);
|
2009-02-18 05:06:05 -08:00
|
|
|
}
|
2006-08-07 12:01:56 -07:00
|
|
|
lua_pushnumber(L, res);
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2011-07-05 05:49:35 -07:00
|
|
|
#if defined(LUA_COMPAT_LOG10)
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_log10 (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(log10)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
2011-07-05 05:49:35 -07:00
|
|
|
#endif
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_exp (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(exp)(luaL_checknumber(L, 1)));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_deg (lua_State *L) {
|
2014-04-09 10:29:46 -07:00
|
|
|
lua_pushnumber(L, luaL_checknumber(L, 1) * (180.0 / PI));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_rad (lua_State *L) {
|
2014-04-09 10:29:46 -07:00
|
|
|
lua_pushnumber(L, luaL_checknumber(L, 1) * (PI / 180.0));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_frexp (lua_State *L) {
|
1998-05-27 12:09:39 -07:00
|
|
|
int e;
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(frexp)(luaL_checknumber(L, 1), &e));
|
2003-10-07 13:13:41 -07:00
|
|
|
lua_pushinteger(L, e);
|
2000-08-28 10:57:04 -07:00
|
|
|
return 2;
|
1998-05-27 12:09:39 -07:00
|
|
|
}
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_ldexp (lua_State *L) {
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_Number x = luaL_checknumber(L, 1);
|
2013-03-07 10:21:32 -08:00
|
|
|
int ep = luaL_checkint(L, 2);
|
2013-01-29 08:00:40 -08:00
|
|
|
lua_pushnumber(L, l_mathop(ldexp)(x, ep));
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1998-05-27 12:09:39 -07:00
|
|
|
}
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_min (lua_State *L) {
|
|
|
|
int n = lua_gettop(L); /* number of arguments */
|
2014-03-31 12:00:52 -07:00
|
|
|
int imax = 1;
|
2000-08-28 10:57:04 -07:00
|
|
|
int i;
|
2014-03-31 12:00:52 -07:00
|
|
|
luaL_argcheck(L, n >= 1, 1, "value expected");
|
|
|
|
for (i = 2; i <= n; i++) {
|
|
|
|
if (lua_compare(L, i, imax, LUA_OPLT))
|
|
|
|
imax = i;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
2014-03-31 12:00:52 -07:00
|
|
|
lua_pushvalue(L, imax);
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_max (lua_State *L) {
|
|
|
|
int n = lua_gettop(L); /* number of arguments */
|
2014-03-31 12:00:52 -07:00
|
|
|
int imax = 1;
|
2000-08-28 10:57:04 -07:00
|
|
|
int i;
|
2014-03-31 12:00:52 -07:00
|
|
|
luaL_argcheck(L, n >= 1, 1, "value expected");
|
|
|
|
for (i = 2; i <= n; i++) {
|
|
|
|
if (lua_compare(L, imax, i, LUA_OPLT))
|
|
|
|
imax = i;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
2014-03-31 12:00:52 -07:00
|
|
|
lua_pushvalue(L, imax);
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_random (lua_State *L) {
|
2001-02-22 10:59:59 -08:00
|
|
|
/* the `%' avoids the (rare) case of r==1, and is needed also because on
|
|
|
|
some systems (SunOS!) `rand()' may return a value larger than RAND_MAX */
|
2000-12-04 10:33:40 -08:00
|
|
|
lua_Number r = (lua_Number)(rand()%RAND_MAX) / (lua_Number)RAND_MAX;
|
2013-06-13 12:32:52 -07:00
|
|
|
lua_Integer low, up;
|
2000-08-28 10:57:04 -07:00
|
|
|
switch (lua_gettop(L)) { /* check number of arguments */
|
|
|
|
case 0: { /* no arguments */
|
|
|
|
lua_pushnumber(L, r); /* Number between 0 and 1 */
|
2013-06-13 12:32:52 -07:00
|
|
|
return 1;
|
1999-08-18 07:40:51 -07:00
|
|
|
}
|
2000-08-28 10:57:04 -07:00
|
|
|
case 1: { /* only upper limit */
|
2013-06-13 12:32:52 -07:00
|
|
|
low = 1;
|
|
|
|
up = luaL_checkinteger(L, 1);
|
2000-08-28 10:57:04 -07:00
|
|
|
break;
|
1998-12-30 09:22:17 -08:00
|
|
|
}
|
2000-08-28 10:57:04 -07:00
|
|
|
case 2: { /* lower and upper limits */
|
2013-06-13 12:32:52 -07:00
|
|
|
low = luaL_checkinteger(L, 1);
|
|
|
|
up = luaL_checkinteger(L, 2);
|
2000-08-28 10:57:04 -07:00
|
|
|
break;
|
|
|
|
}
|
2002-06-18 08:16:18 -07:00
|
|
|
default: return luaL_error(L, "wrong number of arguments");
|
1998-12-30 09:22:17 -08:00
|
|
|
}
|
2013-06-13 12:32:52 -07:00
|
|
|
/* random integer in the interval [low, up] */
|
|
|
|
up++; /* change interval to [low, up) */
|
|
|
|
luaL_argcheck(L, up - low > 0, 1, "interval is empty");
|
|
|
|
lua_pushinteger(L, (lua_Integer)(r * (lua_Number)(up - low)) + low);
|
2000-08-28 10:57:04 -07:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static int math_randomseed (lua_State *L) {
|
2014-04-01 07:39:55 -07:00
|
|
|
srand((unsigned int)luaL_checkunsigned(L, 1));
|
2007-03-27 05:37:00 -07:00
|
|
|
(void)rand(); /* discard first value to avoid undesirable correlations */
|
2000-08-28 10:57:04 -07:00
|
|
|
return 0;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-22 09:05:53 -07:00
|
|
|
static int math_type (lua_State *L) {
|
|
|
|
luaL_checkany(L, 1);
|
|
|
|
if (lua_type(L, 1) == LUA_TNUMBER) {
|
|
|
|
if (lua_isinteger(L, 1))
|
|
|
|
lua_pushliteral(L, "integer");
|
|
|
|
else
|
|
|
|
lua_pushliteral(L, "float");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lua_pushnil(L);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-26 10:36:32 -07:00
|
|
|
static const luaL_Reg mathlib[] = {
|
2002-03-20 04:54:08 -08:00
|
|
|
{"abs", math_abs},
|
|
|
|
{"acos", math_acos},
|
2005-07-11 16:58:35 -07:00
|
|
|
{"asin", math_asin},
|
2002-03-20 04:54:08 -08:00
|
|
|
{"atan2", math_atan2},
|
2005-07-11 16:58:35 -07:00
|
|
|
{"atan", math_atan},
|
2002-03-20 04:54:08 -08:00
|
|
|
{"ceil", math_ceil},
|
2005-07-11 16:58:35 -07:00
|
|
|
{"cosh", math_cosh},
|
|
|
|
{"cos", math_cos},
|
|
|
|
{"deg", math_deg},
|
|
|
|
{"exp", math_exp},
|
2002-03-20 04:54:08 -08:00
|
|
|
{"floor", math_floor},
|
2013-07-03 10:23:19 -07:00
|
|
|
{"ifloor", math_ifloor},
|
2005-06-13 14:20:14 -07:00
|
|
|
{"fmod", math_fmod},
|
2002-03-20 04:54:08 -08:00
|
|
|
{"frexp", math_frexp},
|
|
|
|
{"ldexp", math_ldexp},
|
2011-07-05 05:49:35 -07:00
|
|
|
#if defined(LUA_COMPAT_LOG10)
|
2002-03-20 04:54:08 -08:00
|
|
|
{"log10", math_log10},
|
2011-07-05 05:49:35 -07:00
|
|
|
#endif
|
2005-07-11 16:58:35 -07:00
|
|
|
{"log", math_log},
|
|
|
|
{"max", math_max},
|
|
|
|
{"min", math_min},
|
|
|
|
{"modf", math_modf},
|
2002-06-24 06:54:13 -07:00
|
|
|
{"pow", math_pow},
|
2002-03-20 04:54:08 -08:00
|
|
|
{"rad", math_rad},
|
|
|
|
{"random", math_random},
|
|
|
|
{"randomseed", math_randomseed},
|
2005-07-11 16:58:35 -07:00
|
|
|
{"sinh", math_sinh},
|
|
|
|
{"sin", math_sin},
|
|
|
|
{"sqrt", math_sqrt},
|
|
|
|
{"tanh", math_tanh},
|
|
|
|
{"tan", math_tan},
|
2013-07-22 09:05:53 -07:00
|
|
|
{"type", math_type},
|
2002-03-20 04:54:08 -08:00
|
|
|
{NULL, NULL}
|
1997-09-16 12:25:59 -07:00
|
|
|
};
|
|
|
|
|
2002-03-20 04:54:08 -08:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
/*
|
|
|
|
** Open math library
|
|
|
|
*/
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int luaopen_math (lua_State *L) {
|
2010-07-02 04:38:13 -07:00
|
|
|
luaL_newlib(L, mathlib);
|
2000-10-26 05:47:05 -07:00
|
|
|
lua_pushnumber(L, PI);
|
2003-10-10 05:57:55 -07:00
|
|
|
lua_setfield(L, -2, "pi");
|
2005-03-04 10:57:03 -08:00
|
|
|
lua_pushnumber(L, HUGE_VAL);
|
|
|
|
lua_setfield(L, -2, "huge");
|
2014-04-03 07:18:19 -07:00
|
|
|
lua_pushinteger(L, LUA_MAXINTEGER);
|
2014-04-09 10:29:46 -07:00
|
|
|
lua_setfield(L, -2, "maxinteger");
|
2014-04-03 07:18:19 -07:00
|
|
|
lua_pushinteger(L, LUA_MININTEGER);
|
2014-04-09 10:29:46 -07:00
|
|
|
lua_setfield(L, -2, "mininteger");
|
2002-12-20 02:26:33 -08:00
|
|
|
return 1;
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|