1993-07-28 06:18:00 -07:00
|
|
|
/*
|
|
|
|
** mathlib.c
|
1993-12-17 10:41:19 -08:00
|
|
|
** Mathematics library to LUA
|
1993-07-28 06:18:00 -07:00
|
|
|
*/
|
|
|
|
|
1997-06-09 10:30:10 -07:00
|
|
|
char *rcs_mathlib="$Id: mathlib.c,v 1.23 1997/04/06 14:08:08 roberto Exp roberto $";
|
1993-12-17 10:41:19 -08:00
|
|
|
|
1996-02-09 09:21:27 -08:00
|
|
|
#include <stdlib.h>
|
1993-07-28 06:18:00 -07:00
|
|
|
#include <math.h>
|
|
|
|
|
1994-07-20 15:12:27 -07:00
|
|
|
#include "lualib.h"
|
1997-03-18 07:30:50 -08:00
|
|
|
#include "auxlib.h"
|
1993-07-28 06:18:00 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
1995-10-02 10:03:33 -07:00
|
|
|
#ifndef PI
|
1995-02-06 11:36:43 -08:00
|
|
|
#define PI 3.14159265358979323846
|
1995-10-02 10:03:33 -07:00
|
|
|
#endif
|
1994-07-20 15:12:27 -07:00
|
|
|
#define TODEGREE(a) ((a)*180.0/PI)
|
|
|
|
#define TORAD(a) ((a)*PI/180.0)
|
1993-12-17 10:41:19 -08:00
|
|
|
|
1993-07-28 06:18:00 -07:00
|
|
|
static void math_abs (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-07-28 06:18:00 -07:00
|
|
|
if (d < 0) d = -d;
|
|
|
|
lua_pushnumber (d);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void math_sin (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-12-17 10:41:19 -08:00
|
|
|
lua_pushnumber (sin(TORAD(d)));
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void math_cos (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-12-17 10:41:19 -08:00
|
|
|
lua_pushnumber (cos(TORAD(d)));
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void math_tan (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-12-17 10:41:19 -08:00
|
|
|
lua_pushnumber (tan(TORAD(d)));
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void math_asin (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-12-17 10:41:19 -08:00
|
|
|
lua_pushnumber (TODEGREE(asin(d)));
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void math_acos (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-12-17 10:41:19 -08:00
|
|
|
lua_pushnumber (TODEGREE(acos(d)));
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void math_atan (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-12-17 10:41:19 -08:00
|
|
|
lua_pushnumber (TODEGREE(atan(d)));
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-10-04 06:52:09 -07:00
|
|
|
static void math_atan2 (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d1 = luaL_check_number(1);
|
|
|
|
double d2 = luaL_check_number(2);
|
1995-10-04 06:52:09 -07:00
|
|
|
lua_pushnumber (TODEGREE(atan2(d1, d2)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-07-28 06:18:00 -07:00
|
|
|
static void math_ceil (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-07-28 06:18:00 -07:00
|
|
|
lua_pushnumber (ceil(d));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void math_floor (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-07-28 06:18:00 -07:00
|
|
|
lua_pushnumber (floor(d));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void math_mod (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
float x = luaL_check_number(1);
|
|
|
|
float y = luaL_check_number(2);
|
1996-08-01 07:55:33 -07:00
|
|
|
lua_pushnumber(fmod(x, y));
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void math_sqrt (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1993-07-28 06:18:00 -07:00
|
|
|
lua_pushnumber (sqrt(d));
|
|
|
|
}
|
|
|
|
|
1994-11-17 11:43:34 -08:00
|
|
|
|
1993-07-28 06:18:00 -07:00
|
|
|
static void math_pow (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d1 = luaL_check_number(1);
|
|
|
|
double d2 = luaL_check_number(2);
|
1997-03-21 10:37:28 -08:00
|
|
|
lua_pushnumber(pow(d1,d2));
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void math_min (void)
|
|
|
|
{
|
|
|
|
int i=1;
|
1997-04-06 07:08:08 -07:00
|
|
|
double dmin = luaL_check_number(i);
|
1995-10-09 05:48:38 -07:00
|
|
|
while (lua_getparam(++i) != LUA_NOOBJECT)
|
1993-07-28 06:18:00 -07:00
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(i);
|
1993-07-28 06:18:00 -07:00
|
|
|
if (d < dmin) dmin = d;
|
|
|
|
}
|
|
|
|
lua_pushnumber (dmin);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void math_max (void)
|
|
|
|
{
|
|
|
|
int i=1;
|
1997-04-06 07:08:08 -07:00
|
|
|
double dmax = luaL_check_number(i);
|
1995-10-09 05:48:38 -07:00
|
|
|
while (lua_getparam(++i) != LUA_NOOBJECT)
|
1993-07-28 06:18:00 -07:00
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(i);
|
1993-07-28 06:18:00 -07:00
|
|
|
if (d > dmax) dmax = d;
|
|
|
|
}
|
|
|
|
lua_pushnumber (dmax);
|
|
|
|
}
|
|
|
|
|
1994-08-15 07:13:44 -07:00
|
|
|
static void math_log (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1994-08-15 07:13:44 -07:00
|
|
|
lua_pushnumber (log(d));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void math_log10 (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1994-08-15 07:13:44 -07:00
|
|
|
lua_pushnumber (log10(d));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void math_exp (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
double d = luaL_check_number(1);
|
1994-08-15 07:13:44 -07:00
|
|
|
lua_pushnumber (exp(d));
|
|
|
|
}
|
1993-07-28 06:18:00 -07:00
|
|
|
|
1994-10-11 06:06:47 -07:00
|
|
|
static void math_deg (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
float d = luaL_check_number(1);
|
1994-10-11 06:06:47 -07:00
|
|
|
lua_pushnumber (d*180./PI);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void math_rad (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
float d = luaL_check_number(1);
|
1994-10-11 06:06:47 -07:00
|
|
|
lua_pushnumber (d/180.*PI);
|
|
|
|
}
|
|
|
|
|
1996-02-09 09:21:27 -08:00
|
|
|
static void math_random (void)
|
|
|
|
{
|
|
|
|
lua_pushnumber((double)(rand()%RAND_MAX) / (double)RAND_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void math_randomseed (void)
|
|
|
|
{
|
1997-04-06 07:08:08 -07:00
|
|
|
srand(luaL_check_number(1));
|
1996-02-09 09:21:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-03-18 07:30:50 -08:00
|
|
|
static struct luaL_reg mathlib[] = {
|
1996-04-30 14:13:55 -07: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},
|
|
|
|
{"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}
|
|
|
|
};
|
1996-02-09 09:21:27 -08:00
|
|
|
|
1993-07-28 06:18:00 -07:00
|
|
|
/*
|
|
|
|
** Open math library
|
|
|
|
*/
|
|
|
|
void mathlib_open (void)
|
|
|
|
{
|
1997-03-18 07:30:50 -08:00
|
|
|
luaL_openlib(mathlib, (sizeof(mathlib)/sizeof(mathlib[0])));
|
1997-06-09 10:30:10 -07:00
|
|
|
lua_pushnumber(0); /* to get its tag */
|
|
|
|
lua_settagmethod(lua_tag(lua_pop()), "pow", math_pow);
|
1993-07-28 06:18:00 -07:00
|
|
|
}
|
1996-04-30 14:13:55 -07:00
|
|
|
|