1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2002-11-14 18:41:38 +03:00
|
|
|
** $Id: lmathlib.c,v 1.51 2002/08/14 20:10:33 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"
|
2000-06-12 17:52:05 +04:00
|
|
|
|
|
|
|
#include "lauxlib.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lualib.h"
|
|
|
|
|
|
|
|
|
1999-07-07 21:54:08 +04:00
|
|
|
#undef PI
|
1999-11-22 16:12:07 +03:00
|
|
|
#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
|
|
|
|
|
|
|
/*
|
2002-08-15 00:07:43 +04:00
|
|
|
** If you want Lua to operate in degrees (instead of radians),
|
2002-08-15 00:10:33 +04:00
|
|
|
** define USE_DEGREES
|
1999-01-04 15:41:12 +03:00
|
|
|
*/
|
2002-08-15 00:10:33 +04:00
|
|
|
#ifdef USE_DEGREES
|
1999-02-19 20:33:35 +03:00
|
|
|
#define FROMRAD(a) ((a)/RADIANS_PER_DEGREE)
|
|
|
|
#define TORAD(a) ((a)*RADIANS_PER_DEGREE)
|
2002-08-15 00:07:43 +04:00
|
|
|
#else
|
|
|
|
#define FROMRAD(a) (a)
|
|
|
|
#define TORAD(a) (a)
|
1999-02-19 20:33:35 +03:00
|
|
|
#endif
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int math_abs (lua_State *L) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, fabs(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, sin(TORAD(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, cos(TORAD(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, tan(TORAD(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, FROMRAD(asin(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, FROMRAD(acos(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, FROMRAD(atan(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, FROMRAD(atan2(luaL_checknumber(L, 1), luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, ceil(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, floor(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, fmod(luaL_checknumber(L, 1), luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, sqrt(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, pow(luaL_checknumber(L, 1), luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, log(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, log10(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, exp(luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, luaL_checknumber(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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, luaL_checknumber(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;
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, frexp(luaL_checknumber(L, 1), &e));
|
1999-11-22 16:12:07 +03:00
|
|
|
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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_pushnumber(L, ldexp(luaL_checknumber(L, 1), luaL_checkint(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 */
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_Number dmin = luaL_checknumber(L, 1);
|
2000-08-28 21:57:04 +04:00
|
|
|
int i;
|
|
|
|
for (i=2; i<=n; i++) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_Number d = luaL_checknumber(L, i);
|
1997-09-16 23:25:59 +04:00
|
|
|
if (d < dmin)
|
|
|
|
dmin = d;
|
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
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 */
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_Number dmax = luaL_checknumber(L, 1);
|
2000-08-28 21:57:04 +04:00
|
|
|
int i;
|
|
|
|
for (i=2; i<=n; i++) {
|
2002-11-14 18:41:38 +03:00
|
|
|
lua_Number d = luaL_checknumber(L, i);
|
1997-09-16 23:25:59 +04:00
|
|
|
if (d > dmax)
|
|
|
|
dmax = d;
|
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
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 */
|
2000-12-04 21:33:40 +03:00
|
|
|
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;
|
1999-08-18 18:40:51 +04:00
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
case 1: { /* only upper limit */
|
2002-11-14 18:41:38 +03:00
|
|
|
int u = luaL_checkint(L, 1);
|
|
|
|
luaL_argcheck(L, 1<=u, 1, "interval is empty");
|
2002-08-08 00:54:38 +04:00
|
|
|
lua_pushnumber(L, (int)floor(r*u)+1); /* int between 1 and `u' */
|
2000-08-28 21:57:04 +04:00
|
|
|
break;
|
1998-12-30 20:22:17 +03:00
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
case 2: { /* lower and upper limits */
|
2002-11-14 18:41:38 +03:00
|
|
|
int l = luaL_checkint(L, 1);
|
|
|
|
int u = luaL_checkint(L, 2);
|
|
|
|
luaL_argcheck(L, l<=u, 2, "interval is empty");
|
2002-08-08 00:54:38 +04:00
|
|
|
lua_pushnumber(L, (int)floor(r*(u-l+1))+l); /* int between `l' and `u' */
|
2000-08-28 21:57:04 +04:00
|
|
|
break;
|
|
|
|
}
|
2002-06-18 19:16:18 +04:00
|
|
|
default: return luaL_error(L, "wrong number of arguments");
|
1998-12-30 20:22:17 +03:00
|
|
|
}
|
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) {
|
2002-11-14 18:41:38 +03:00
|
|
|
srand(luaL_checkint(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[] = {
|
2002-03-20 15:54:08 +03:00
|
|
|
{"abs", math_abs},
|
|
|
|
{"sin", math_sin},
|
|
|
|
{"cos", math_cos},
|
|
|
|
{"tan", math_tan},
|
|
|
|
{"asin", math_asin},
|
|
|
|
{"acos", math_acos},
|
|
|
|
{"atan", math_atan},
|
|
|
|
{"atan2", math_atan2},
|
|
|
|
{"ceil", math_ceil},
|
|
|
|
{"floor", math_floor},
|
|
|
|
{"mod", math_mod},
|
|
|
|
{"frexp", math_frexp},
|
|
|
|
{"ldexp", math_ldexp},
|
|
|
|
{"sqrt", math_sqrt},
|
|
|
|
{"min", math_min},
|
|
|
|
{"max", math_max},
|
|
|
|
{"log", math_log},
|
|
|
|
{"log10", math_log10},
|
|
|
|
{"exp", math_exp},
|
|
|
|
{"deg", math_deg},
|
2002-06-24 17:54:13 +04:00
|
|
|
{"pow", math_pow},
|
2002-03-20 15:54:08 +03:00
|
|
|
{"rad", math_rad},
|
|
|
|
{"random", math_random},
|
|
|
|
{"randomseed", math_randomseed},
|
|
|
|
{NULL, NULL}
|
1997-09-16 23:25:59 +04:00
|
|
|
};
|
|
|
|
|
2002-03-20 15:54:08 +03:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
/*
|
|
|
|
** Open math library
|
|
|
|
*/
|
2001-03-06 23:09:38 +03:00
|
|
|
LUALIB_API int lua_mathlibopen (lua_State *L) {
|
2002-11-14 18:41:38 +03:00
|
|
|
luaL_openlib(L, LUA_MATHLIBNAME, mathlib, 0);
|
2002-03-20 15:54:08 +03:00
|
|
|
lua_pushliteral(L, "pi");
|
2000-10-26 16:47:05 +04:00
|
|
|
lua_pushnumber(L, PI);
|
2002-03-20 15:54:08 +03:00
|
|
|
lua_settable(L, -3);
|
2002-06-24 17:54:13 +04:00
|
|
|
lua_pushliteral(L, "__pow");
|
|
|
|
lua_pushcfunction(L, math_pow);
|
|
|
|
lua_settable(L, LUA_REGISTRYINDEX);
|
2001-03-06 23:09:38 +03:00
|
|
|
return 0;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|