lmathlib.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. /*
  2. ** $Id: lmathlib.c,v 1.98 2014/04/17 16:09:40 roberto Exp roberto $
  3. ** Standard mathematical library
  4. ** See Copyright Notice in lua.h
  5. */
  6. #include <stdlib.h>
  7. #include <math.h>
  8. #define lmathlib_c
  9. #define LUA_LIB
  10. #include "lua.h"
  11. #include "lauxlib.h"
  12. #include "lualib.h"
  13. #undef PI
  14. #define PI (l_mathop(3.141592653589793238462643383279502884))
  15. #if !defined(l_rand) /* { */
  16. #if defined(LUA_USE_POSIX)
  17. #define l_rand() random()
  18. #define l_srand(x) srandom(x)
  19. #else
  20. #define l_rand() rand()
  21. #define l_srand(x) srand(x)
  22. #endif
  23. #endif /* } */
  24. static int math_abs (lua_State *L) {
  25. if (lua_isinteger(L, 1)) {
  26. lua_Integer n = lua_tointeger(L, 1);
  27. if (n < 0) n = (lua_Integer)(0u - n);
  28. lua_pushinteger(L, n);
  29. }
  30. else
  31. lua_pushnumber(L, l_mathop(fabs)(luaL_checknumber(L, 1)));
  32. return 1;
  33. }
  34. static int math_sin (lua_State *L) {
  35. lua_pushnumber(L, l_mathop(sin)(luaL_checknumber(L, 1)));
  36. return 1;
  37. }
  38. static int math_sinh (lua_State *L) {
  39. lua_pushnumber(L, l_mathop(sinh)(luaL_checknumber(L, 1)));
  40. return 1;
  41. }
  42. static int math_cos (lua_State *L) {
  43. lua_pushnumber(L, l_mathop(cos)(luaL_checknumber(L, 1)));
  44. return 1;
  45. }
  46. static int math_cosh (lua_State *L) {
  47. lua_pushnumber(L, l_mathop(cosh)(luaL_checknumber(L, 1)));
  48. return 1;
  49. }
  50. static int math_tan (lua_State *L) {
  51. lua_pushnumber(L, l_mathop(tan)(luaL_checknumber(L, 1)));
  52. return 1;
  53. }
  54. static int math_tanh (lua_State *L) {
  55. lua_pushnumber(L, l_mathop(tanh)(luaL_checknumber(L, 1)));
  56. return 1;
  57. }
  58. static int math_asin (lua_State *L) {
  59. lua_pushnumber(L, l_mathop(asin)(luaL_checknumber(L, 1)));
  60. return 1;
  61. }
  62. static int math_acos (lua_State *L) {
  63. lua_pushnumber(L, l_mathop(acos)(luaL_checknumber(L, 1)));
  64. return 1;
  65. }
  66. static int math_atan (lua_State *L) {
  67. lua_pushnumber(L, l_mathop(atan)(luaL_checknumber(L, 1)));
  68. return 1;
  69. }
  70. static int math_atan2 (lua_State *L) {
  71. lua_pushnumber(L, l_mathop(atan2)(luaL_checknumber(L, 1),
  72. luaL_checknumber(L, 2)));
  73. return 1;
  74. }
  75. static int math_ceil (lua_State *L) {
  76. lua_pushnumber(L, l_mathop(ceil)(luaL_checknumber(L, 1)));
  77. return 1;
  78. }
  79. static int math_floor (lua_State *L) {
  80. lua_pushnumber(L, l_mathop(floor)(luaL_checknumber(L, 1)));
  81. return 1;
  82. }
  83. static int math_ifloor (lua_State *L) {
  84. int valid;
  85. lua_Integer n = lua_tointegerx(L, 1, &valid);
  86. if (valid)
  87. lua_pushinteger(L, n);
  88. else {
  89. luaL_checktype(L, 1, LUA_TNUMBER); /* error if not a number */
  90. lua_pushnil(L); /* number with invalid integer value */
  91. }
  92. return 1;
  93. }
  94. static int math_fmod (lua_State *L) {
  95. if (lua_isinteger(L, 1) && lua_isinteger(L, 2)) {
  96. lua_Integer d = lua_tointeger(L, 2);
  97. if ((lua_Unsigned)d + 1u <= 1u) { /* special cases: -1 or 0 */
  98. luaL_argcheck(L, d != 0, 2, "zero");
  99. lua_pushinteger(L, 0); /* avoid overflow with 0x80000... / -1 */
  100. }
  101. else
  102. lua_pushinteger(L, lua_tointeger(L, 1) % d);
  103. }
  104. else
  105. lua_pushnumber(L, l_mathop(fmod)(luaL_checknumber(L, 1),
  106. luaL_checknumber(L, 2)));
  107. return 1;
  108. }
  109. /*
  110. ** next function does not use 'modf', avoiding problems with 'double*'
  111. ** (which is not compatible with 'float*') when lua_Number is not
  112. ** 'double'.
  113. */
  114. static int math_modf (lua_State *L) {
  115. lua_Number n = luaL_checknumber(L, 1);
  116. /* integer part (rounds toward zero) */
  117. lua_Number ip = (n < 0) ? -l_mathop(floor)(-n) : l_mathop(floor)(n);
  118. lua_pushnumber(L, ip);
  119. /* fractionary part (test needed for inf/-inf) */
  120. lua_pushnumber(L, (n == ip) ? 0.0 : (n - ip));
  121. return 2;
  122. }
  123. static int math_sqrt (lua_State *L) {
  124. lua_pushnumber(L, l_mathop(sqrt)(luaL_checknumber(L, 1)));
  125. return 1;
  126. }
  127. static int math_pow (lua_State *L) {
  128. lua_Number x = luaL_checknumber(L, 1);
  129. lua_Number y = luaL_checknumber(L, 2);
  130. lua_pushnumber(L, l_mathop(pow)(x, y));
  131. return 1;
  132. }
  133. static int math_log (lua_State *L) {
  134. lua_Number x = luaL_checknumber(L, 1);
  135. lua_Number res;
  136. if (lua_isnoneornil(L, 2))
  137. res = l_mathop(log)(x);
  138. else {
  139. lua_Number base = luaL_checknumber(L, 2);
  140. if (base == 10.0) res = l_mathop(log10)(x);
  141. else res = l_mathop(log)(x)/l_mathop(log)(base);
  142. }
  143. lua_pushnumber(L, res);
  144. return 1;
  145. }
  146. #if defined(LUA_COMPAT_LOG10)
  147. static int math_log10 (lua_State *L) {
  148. lua_pushnumber(L, l_mathop(log10)(luaL_checknumber(L, 1)));
  149. return 1;
  150. }
  151. #endif
  152. static int math_exp (lua_State *L) {
  153. lua_pushnumber(L, l_mathop(exp)(luaL_checknumber(L, 1)));
  154. return 1;
  155. }
  156. static int math_deg (lua_State *L) {
  157. lua_pushnumber(L, luaL_checknumber(L, 1) * (180.0 / PI));
  158. return 1;
  159. }
  160. static int math_rad (lua_State *L) {
  161. lua_pushnumber(L, luaL_checknumber(L, 1) * (PI / 180.0));
  162. return 1;
  163. }
  164. static int math_frexp (lua_State *L) {
  165. int e;
  166. lua_pushnumber(L, l_mathop(frexp)(luaL_checknumber(L, 1), &e));
  167. lua_pushinteger(L, e);
  168. return 2;
  169. }
  170. static int math_ldexp (lua_State *L) {
  171. lua_Number x = luaL_checknumber(L, 1);
  172. int ep = luaL_checkint(L, 2);
  173. lua_pushnumber(L, l_mathop(ldexp)(x, ep));
  174. return 1;
  175. }
  176. static int math_min (lua_State *L) {
  177. int n = lua_gettop(L); /* number of arguments */
  178. int imax = 1;
  179. int i;
  180. luaL_argcheck(L, n >= 1, 1, "value expected");
  181. for (i = 2; i <= n; i++) {
  182. if (lua_compare(L, i, imax, LUA_OPLT))
  183. imax = i;
  184. }
  185. lua_pushvalue(L, imax);
  186. return 1;
  187. }
  188. static int math_max (lua_State *L) {
  189. int n = lua_gettop(L); /* number of arguments */
  190. int imax = 1;
  191. int i;
  192. luaL_argcheck(L, n >= 1, 1, "value expected");
  193. for (i = 2; i <= n; i++) {
  194. if (lua_compare(L, imax, i, LUA_OPLT))
  195. imax = i;
  196. }
  197. lua_pushvalue(L, imax);
  198. return 1;
  199. }
  200. /*
  201. ** This function uses 'double' (instead of 'lua_Number') to ensure that
  202. ** all bits from 'l_rand' can be represented, and that 'RAND_MAX + 1.0'
  203. ** will keep full precision (ensuring that 'r' is always less than 1.0.)
  204. */
  205. static int math_random (lua_State *L) {
  206. lua_Integer low, up;
  207. double r = (double)l_rand() * (1.0 / ((double)RAND_MAX + 1.0));
  208. switch (lua_gettop(L)) { /* check number of arguments */
  209. case 0: { /* no arguments */
  210. lua_pushnumber(L, r); /* Number between 0 and 1 */
  211. return 1;
  212. }
  213. case 1: { /* only upper limit */
  214. low = 1;
  215. up = luaL_checkinteger(L, 1);
  216. break;
  217. }
  218. case 2: { /* lower and upper limits */
  219. low = luaL_checkinteger(L, 1);
  220. up = luaL_checkinteger(L, 2);
  221. break;
  222. }
  223. default: return luaL_error(L, "wrong number of arguments");
  224. }
  225. /* random integer in the interval [low, up] */
  226. luaL_argcheck(L, low <= up, 1, "interval is empty");
  227. luaL_argcheck(L, (lua_Unsigned)up - low <= (lua_Unsigned)LUA_MAXINTEGER,
  228. 1, "interval too large");
  229. r *= (double)(up - low) + 1.0;
  230. lua_pushinteger(L, (lua_Integer)r + low);
  231. return 1;
  232. }
  233. static int math_randomseed (lua_State *L) {
  234. l_srand((unsigned int)luaL_checkunsigned(L, 1));
  235. (void)rand(); /* discard first value to avoid undesirable correlations */
  236. return 0;
  237. }
  238. static int math_type (lua_State *L) {
  239. luaL_checkany(L, 1);
  240. if (lua_type(L, 1) == LUA_TNUMBER) {
  241. if (lua_isinteger(L, 1))
  242. lua_pushliteral(L, "integer");
  243. else
  244. lua_pushliteral(L, "float");
  245. }
  246. else
  247. lua_pushnil(L);
  248. return 1;
  249. }
  250. static const luaL_Reg mathlib[] = {
  251. {"abs", math_abs},
  252. {"acos", math_acos},
  253. {"asin", math_asin},
  254. {"atan2", math_atan2},
  255. {"atan", math_atan},
  256. {"ceil", math_ceil},
  257. {"cosh", math_cosh},
  258. {"cos", math_cos},
  259. {"deg", math_deg},
  260. {"exp", math_exp},
  261. {"floor", math_floor},
  262. {"ifloor", math_ifloor},
  263. {"fmod", math_fmod},
  264. {"frexp", math_frexp},
  265. {"ldexp", math_ldexp},
  266. #if defined(LUA_COMPAT_LOG10)
  267. {"log10", math_log10},
  268. #endif
  269. {"log", math_log},
  270. {"max", math_max},
  271. {"min", math_min},
  272. {"modf", math_modf},
  273. {"pow", math_pow},
  274. {"rad", math_rad},
  275. {"random", math_random},
  276. {"randomseed", math_randomseed},
  277. {"sinh", math_sinh},
  278. {"sin", math_sin},
  279. {"sqrt", math_sqrt},
  280. {"tanh", math_tanh},
  281. {"tan", math_tan},
  282. {"type", math_type},
  283. {NULL, NULL}
  284. };
  285. /*
  286. ** Open math library
  287. */
  288. LUAMOD_API int luaopen_math (lua_State *L) {
  289. luaL_newlib(L, mathlib);
  290. lua_pushnumber(L, PI);
  291. lua_setfield(L, -2, "pi");
  292. lua_pushnumber(L, HUGE_VAL);
  293. lua_setfield(L, -2, "huge");
  294. lua_pushinteger(L, LUA_MAXINTEGER);
  295. lua_setfield(L, -2, "maxinteger");
  296. lua_pushinteger(L, LUA_MININTEGER);
  297. lua_setfield(L, -2, "mininteger");
  298. return 1;
  299. }