lua/lmathlib.c

239 lines
5.4 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2001-02-23 20:17:25 +03:00
** $Id: lmathlib.c,v 1.35 2001/02/22 18:59:59 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
2000-08-28 21:57:04 +04:00
static int math_abs (lua_State *L) {
lua_pushnumber(L, fabs(luaL_check_number(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_sin (lua_State *L) {
lua_pushnumber(L, sin(TORAD(luaL_check_number(L, 1))));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_cos (lua_State *L) {
lua_pushnumber(L, cos(TORAD(luaL_check_number(L, 1))));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_tan (lua_State *L) {
lua_pushnumber(L, tan(TORAD(luaL_check_number(L, 1))));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_asin (lua_State *L) {
lua_pushnumber(L, FROMRAD(asin(luaL_check_number(L, 1))));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_acos (lua_State *L) {
lua_pushnumber(L, FROMRAD(acos(luaL_check_number(L, 1))));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_atan (lua_State *L) {
lua_pushnumber(L, FROMRAD(atan(luaL_check_number(L, 1))));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_atan2 (lua_State *L) {
lua_pushnumber(L, FROMRAD(atan2(luaL_check_number(L, 1), luaL_check_number(L, 2))));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_ceil (lua_State *L) {
lua_pushnumber(L, ceil(luaL_check_number(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_floor (lua_State *L) {
lua_pushnumber(L, floor(luaL_check_number(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_mod (lua_State *L) {
lua_pushnumber(L, fmod(luaL_check_number(L, 1), luaL_check_number(L, 2)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_sqrt (lua_State *L) {
lua_pushnumber(L, sqrt(luaL_check_number(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_pow (lua_State *L) {
lua_pushnumber(L, pow(luaL_check_number(L, 1), luaL_check_number(L, 2)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_log (lua_State *L) {
lua_pushnumber(L, log(luaL_check_number(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_log10 (lua_State *L) {
lua_pushnumber(L, log10(luaL_check_number(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_exp (lua_State *L) {
lua_pushnumber(L, exp(luaL_check_number(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_deg (lua_State *L) {
lua_pushnumber(L, luaL_check_number(L, 1)/RADIANS_PER_DEGREE);
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_rad (lua_State *L) {
lua_pushnumber(L, luaL_check_number(L, 1)*RADIANS_PER_DEGREE);
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int 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);
2000-08-28 21:57:04 +04:00
return 2;
1998-05-27 23:09:39 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_ldexp (lua_State *L) {
lua_pushnumber(L, ldexp(luaL_check_number(L, 1), luaL_check_int(L, 2)));
2000-08-28 21:57:04 +04:00
return 1;
1998-05-27 23:09:39 +04:00
}
1997-09-16 23:25:59 +04:00
2000-08-28 21:57:04 +04:00
static int math_min (lua_State *L) {
int n = lua_gettop(L); /* number of arguments */
lua_Number dmin = luaL_check_number(L, 1);
2000-08-28 21:57:04 +04:00
int i;
for (i=2; i<=n; i++) {
lua_Number d = luaL_check_number(L, i);
1997-09-16 23:25:59 +04:00
if (d < dmin)
dmin = d;
}
lua_pushnumber(L, dmin);
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_max (lua_State *L) {
int n = lua_gettop(L); /* number of arguments */
lua_Number dmax = luaL_check_number(L, 1);
2000-08-28 21:57:04 +04:00
int i;
for (i=2; i<=n; i++) {
lua_Number d = luaL_check_number(L, i);
1997-09-16 23:25:59 +04:00
if (d > dmax)
dmax = d;
}
lua_pushnumber(L, dmax);
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_random (lua_State *L) {
2001-02-22 21:59:59 +03: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 */
lua_Number r = (lua_Number)(rand()%RAND_MAX) / (lua_Number)RAND_MAX;
2000-08-28 21:57:04 +04:00
switch (lua_gettop(L)) { /* check number of arguments */
case 0: { /* no arguments */
lua_pushnumber(L, r); /* Number between 0 and 1 */
break;
}
2000-08-28 21:57:04 +04:00
case 1: { /* only upper limit */
int u = luaL_check_int(L, 1);
2001-02-23 20:17:25 +03:00
luaL_arg_check(L, 1<=u, 1, l_s("interval is empty"));
2000-08-28 21:57:04 +04:00
lua_pushnumber(L, (int)(r*u)+1); /* integer between 1 and `u' */
break;
}
2000-08-28 21:57:04 +04:00
case 2: { /* lower and upper limits */
int l = luaL_check_int(L, 1);
int u = luaL_check_int(L, 2);
2001-02-23 20:17:25 +03:00
luaL_arg_check(L, l<=u, 2, l_s("interval is empty"));
2000-08-28 21:57:04 +04:00
lua_pushnumber(L, (int)(r*(u-l+1))+l); /* integer between `l' and `u' */
break;
}
2001-02-23 20:17:25 +03:00
default: lua_error(L, l_s("wrong number of arguments"));
}
2000-08-28 21:57:04 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2000-08-28 21:57:04 +04:00
static int math_randomseed (lua_State *L) {
srand(luaL_check_int(L, 1));
2000-08-28 21:57:04 +04:00
return 0;
1997-09-16 23:25:59 +04:00
}
2001-02-02 22:02:40 +03:00
static const luaL_reg mathlib[] = {
2001-02-23 20:17:25 +03:00
{l_s("abs"), math_abs},
{l_s("sin"), math_sin},
{l_s("cos"), math_cos},
{l_s("tan"), math_tan},
{l_s("asin"), math_asin},
{l_s("acos"), math_acos},
{l_s("atan"), math_atan},
{l_s("atan2"), math_atan2},
{l_s("ceil"), math_ceil},
{l_s("floor"), math_floor},
{l_s("mod"), math_mod},
{l_s("frexp"), math_frexp},
{l_s("ldexp"), math_ldexp},
{l_s("sqrt"), math_sqrt},
{l_s("min"), math_min},
{l_s("max"), math_max},
{l_s("log"), math_log},
{l_s("log10"), math_log10},
{l_s("exp"), math_exp},
{l_s("deg"), math_deg},
{l_s("rad"), math_rad},
{l_s("random"), math_random},
{l_s("randomseed"), math_randomseed}
1997-09-16 23:25:59 +04:00
};
/*
** Open math library
*/
LUALIB_API void lua_mathlibopen (lua_State *L) {
1999-11-22 20:39:51 +03:00
luaL_openl(L, mathlib);
2000-08-28 21:57:04 +04:00
lua_pushcfunction(L, math_pow);
2001-02-23 20:17:25 +03:00
lua_settagmethod(L, LUA_TNUMBER, l_s("pow"));
2000-10-26 16:47:05 +04:00
lua_pushnumber(L, PI);
2001-02-23 20:17:25 +03:00
lua_setglobal(L, l_s("PI"));
1997-09-16 23:25:59 +04:00
}