lua/lmathlib.c

208 lines
4.8 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2000-08-09 23:16:57 +04:00
** $Id: lmathlib.c,v 1.25 2000/06/12 13:52:05 roberto Exp roberto $
1999-12-27 20:33:22 +03:00
** Standard mathematical library
1997-09-16 23:25:59 +04:00
** See Copyright Notice in lua.h
*/
#include <stdlib.h>
#include <math.h>
#include "lua.h"
#include "lauxlib.h"
1997-09-16 23:25:59 +04:00
#include "lualib.h"
1999-07-07 21:54:08 +04:00
#undef PI
#define PI (3.14159265358979323846)
#define RADIANS_PER_DEGREE (PI/180.0)
1999-02-19 20:33:35 +03:00
1997-09-16 23:25:59 +04:00
1999-01-04 15:41:12 +03:00
/*
** If you want Lua to operate in radians (instead of degrees),
1999-02-19 20:33:35 +03:00
** define RADIANS
1999-01-04 15:41:12 +03:00
*/
1999-02-19 20:33:35 +03:00
#ifdef RADIANS
#define FROMRAD(a) (a)
#define TORAD(a) (a)
#else
#define FROMRAD(a) ((a)/RADIANS_PER_DEGREE)
#define TORAD(a) ((a)*RADIANS_PER_DEGREE)
#endif
1997-09-16 23:25:59 +04:00
static void math_abs (lua_State *L) {
lua_pushnumber(L, fabs(luaL_check_number(L, 1)));
1997-09-16 23:25:59 +04:00
}
static void math_sin (lua_State *L) {
lua_pushnumber(L, sin(TORAD(luaL_check_number(L, 1))));
1997-09-16 23:25:59 +04:00
}
static void math_cos (lua_State *L) {
lua_pushnumber(L, cos(TORAD(luaL_check_number(L, 1))));
1997-09-16 23:25:59 +04:00
}
static void math_tan (lua_State *L) {
lua_pushnumber(L, tan(TORAD(luaL_check_number(L, 1))));
1997-09-16 23:25:59 +04:00
}
static void math_asin (lua_State *L) {
lua_pushnumber(L, FROMRAD(asin(luaL_check_number(L, 1))));
1997-09-16 23:25:59 +04:00
}
static void math_acos (lua_State *L) {
lua_pushnumber(L, FROMRAD(acos(luaL_check_number(L, 1))));
1997-09-16 23:25:59 +04:00
}
static void math_atan (lua_State *L) {
lua_pushnumber(L, FROMRAD(atan(luaL_check_number(L, 1))));
1997-09-16 23:25:59 +04:00
}
static void math_atan2 (lua_State *L) {
lua_pushnumber(L, FROMRAD(atan2(luaL_check_number(L, 1), luaL_check_number(L, 2))));
1997-09-16 23:25:59 +04:00
}
static void math_ceil (lua_State *L) {
lua_pushnumber(L, ceil(luaL_check_number(L, 1)));
1997-09-16 23:25:59 +04:00
}
static void math_floor (lua_State *L) {
lua_pushnumber(L, floor(luaL_check_number(L, 1)));
1997-09-16 23:25:59 +04:00
}
static void math_mod (lua_State *L) {
lua_pushnumber(L, fmod(luaL_check_number(L, 1), luaL_check_number(L, 2)));
1997-09-16 23:25:59 +04:00
}
static void math_sqrt (lua_State *L) {
lua_pushnumber(L, sqrt(luaL_check_number(L, 1)));
1997-09-16 23:25:59 +04:00
}
static void math_pow (lua_State *L) {
lua_pushnumber(L, pow(luaL_check_number(L, 1), luaL_check_number(L, 2)));
1997-09-16 23:25:59 +04:00
}
static void math_log (lua_State *L) {
lua_pushnumber(L, log(luaL_check_number(L, 1)));
1997-09-16 23:25:59 +04:00
}
static void math_log10 (lua_State *L) {
lua_pushnumber(L, log10(luaL_check_number(L, 1)));
1997-09-16 23:25:59 +04:00
}
static void math_exp (lua_State *L) {
lua_pushnumber(L, exp(luaL_check_number(L, 1)));
1997-09-16 23:25:59 +04:00
}
static void math_deg (lua_State *L) {
lua_pushnumber(L, luaL_check_number(L, 1)/RADIANS_PER_DEGREE);
1997-09-16 23:25:59 +04:00
}
static void math_rad (lua_State *L) {
lua_pushnumber(L, luaL_check_number(L, 1)*RADIANS_PER_DEGREE);
1997-09-16 23:25:59 +04:00
}
static void math_frexp (lua_State *L) {
1998-05-27 23:09:39 +04:00
int e;
lua_pushnumber(L, frexp(luaL_check_number(L, 1), &e));
lua_pushnumber(L, e);
1998-05-27 23:09:39 +04:00
}
static void math_ldexp (lua_State *L) {
lua_pushnumber(L, ldexp(luaL_check_number(L, 1), luaL_check_int(L, 2)));
1998-05-27 23:09:39 +04:00
}
1997-09-16 23:25:59 +04:00
static void math_min (lua_State *L) {
1997-09-16 23:25:59 +04:00
int i = 1;
double dmin = luaL_check_number(L, i);
while (lua_getparam(L, ++i) != LUA_NOOBJECT) {
double d = luaL_check_number(L, i);
1997-09-16 23:25:59 +04:00
if (d < dmin)
dmin = d;
}
lua_pushnumber(L, dmin);
1997-09-16 23:25:59 +04:00
}
static void math_max (lua_State *L) {
1997-09-16 23:25:59 +04:00
int i = 1;
double dmax = luaL_check_number(L, i);
while (lua_getparam(L, ++i) != LUA_NOOBJECT) {
double d = luaL_check_number(L, i);
1997-09-16 23:25:59 +04:00
if (d > dmax)
dmax = d;
}
lua_pushnumber(L, dmax);
1997-09-16 23:25:59 +04:00
}
static void math_random (lua_State *L) {
/* the '%' avoids the (rare) case of r==1, and is needed also because on
1999-12-14 21:33:29 +03:00
some systems (SunOS!) "rand()" may return a value larger than RAND_MAX */
double r = (double)(rand()%RAND_MAX) / (double)RAND_MAX;
if (lua_getparam(L, 1) == LUA_NOOBJECT) /* no arguments? */
2000-03-10 21:37:44 +03:00
lua_pushnumber(L, r); /* Number between 0 and 1 */
else {
int l, u; /* lower & upper limits */
if (lua_getparam(L, 2) == LUA_NOOBJECT) { /* only one argument? */
l = 1;
u = luaL_check_int(L, 1);
}
else { /* two arguments */
l = luaL_check_int(L, 1);
u = luaL_check_int(L, 2);
}
luaL_arg_check(L, l<=u, 1, "interval is empty");
1999-12-27 20:33:22 +03:00
lua_pushnumber(L, (int)(r*(u-l+1))+l); /* integer between `l' and `u' */
}
1997-09-16 23:25:59 +04:00
}
static void math_randomseed (lua_State *L) {
srand(luaL_check_int(L, 1));
1997-09-16 23:25:59 +04:00
}
1999-08-17 00:52:00 +04:00
static const struct luaL_reg mathlib[] = {
1997-09-16 23:25:59 +04:00
{"abs", math_abs},
{"sin", math_sin},
{"cos", math_cos},
{"tan", math_tan},
{"asin", math_asin},
{"acos", math_acos},
{"atan", math_atan},
1998-05-27 23:09:39 +04:00
{"atan2", math_atan2},
1997-09-16 23:25:59 +04:00
{"ceil", math_ceil},
{"floor", math_floor},
{"mod", math_mod},
1998-05-27 23:09:39 +04:00
{"frexp", math_frexp},
{"ldexp", math_ldexp},
1997-09-16 23:25:59 +04:00
{"sqrt", math_sqrt},
{"min", math_min},
{"max", math_max},
{"log", math_log},
{"log10", math_log10},
{"exp", math_exp},
{"deg", math_deg},
{"rad", math_rad},
{"random", math_random},
{"randomseed", math_randomseed}
};
/*
** Open math library
*/
void lua_mathlibopen (lua_State *L) {
1999-11-22 20:39:51 +03:00
luaL_openl(L, mathlib);
lua_pushcfunction(L, math_pow);
lua_pushnumber(L, 0); /* to get its tag */
lua_settagmethod(L, lua_tag(L, lua_pop(L)), "pow");
lua_pushnumber(L, PI); lua_setglobal(L, "PI");
1997-09-16 23:25:59 +04:00
}