2017-12-30 21:46:59 +00:00
|
|
|
/*
|
2019-01-06 08:23:03 +00:00
|
|
|
* Copyright (c) 2019 Calvin Rose
|
2017-12-30 21:46:59 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <math.h>
|
2019-01-24 05:15:58 +00:00
|
|
|
|
|
|
|
#ifndef JANET_AMALG
|
|
|
|
#include <janet/janet.h>
|
2019-01-06 06:49:56 +00:00
|
|
|
#include "util.h"
|
2019-01-24 05:15:58 +00:00
|
|
|
#endif
|
2017-12-30 21:46:59 +00:00
|
|
|
|
2018-03-15 21:19:31 +00:00
|
|
|
/* Get a random number */
|
2019-01-06 01:09:03 +00:00
|
|
|
Janet janet_rand(int32_t argc, Janet *argv) {
|
|
|
|
(void) argv;
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 0);
|
2018-03-15 21:19:31 +00:00
|
|
|
double r = (rand() % RAND_MAX) / ((double) RAND_MAX);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_number(r);
|
2018-03-15 21:19:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Seed the random number generator */
|
2019-01-06 01:09:03 +00:00
|
|
|
Janet janet_srand(int32_t argc, Janet *argv) {
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 1);
|
2019-01-06 01:09:03 +00:00
|
|
|
int32_t x = janet_getinteger(argv, 0);
|
2018-05-10 03:43:56 +00:00
|
|
|
srand((unsigned) x);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_nil();
|
2018-03-15 21:19:31 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 01:09:03 +00:00
|
|
|
Janet janet_remainder(int32_t argc, Janet *argv) {
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 2);
|
2019-01-06 01:09:03 +00:00
|
|
|
double x = janet_getnumber(argv, 0);
|
|
|
|
double y = janet_getnumber(argv, 1);
|
|
|
|
return janet_wrap_number(fmod(x, y));
|
2018-01-04 02:36:10 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_DEFINE_MATHOP(name, fop)\
|
2019-01-06 01:09:03 +00:00
|
|
|
Janet janet_##name(int32_t argc, Janet *argv) {\
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 1); \
|
2019-01-06 01:09:03 +00:00
|
|
|
double x = janet_getnumber(argv, 0); \
|
|
|
|
return janet_wrap_number(fop(x)); \
|
2017-12-30 21:46:59 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_DEFINE_MATHOP(acos, acos)
|
|
|
|
JANET_DEFINE_MATHOP(asin, asin)
|
|
|
|
JANET_DEFINE_MATHOP(atan, atan)
|
|
|
|
JANET_DEFINE_MATHOP(cos, cos)
|
|
|
|
JANET_DEFINE_MATHOP(cosh, cosh)
|
|
|
|
JANET_DEFINE_MATHOP(sin, sin)
|
|
|
|
JANET_DEFINE_MATHOP(sinh, sinh)
|
|
|
|
JANET_DEFINE_MATHOP(tan, tan)
|
|
|
|
JANET_DEFINE_MATHOP(tanh, tanh)
|
|
|
|
JANET_DEFINE_MATHOP(exp, exp)
|
|
|
|
JANET_DEFINE_MATHOP(log, log)
|
|
|
|
JANET_DEFINE_MATHOP(log10, log10)
|
|
|
|
JANET_DEFINE_MATHOP(sqrt, sqrt)
|
|
|
|
JANET_DEFINE_MATHOP(ceil, ceil)
|
|
|
|
JANET_DEFINE_MATHOP(fabs, fabs)
|
|
|
|
JANET_DEFINE_MATHOP(floor, floor)
|
2017-12-30 21:46:59 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_DEFINE_MATH2OP(name, fop)\
|
2019-01-06 01:09:03 +00:00
|
|
|
Janet janet_##name(int32_t argc, Janet *argv) {\
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 2); \
|
2019-01-06 01:09:03 +00:00
|
|
|
double lhs = janet_getnumber(argv, 0); \
|
|
|
|
double rhs = janet_getnumber(argv, 1); \
|
|
|
|
return janet_wrap_number(fop(lhs, rhs)); \
|
2017-12-30 21:46:59 +00:00
|
|
|
}\
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_DEFINE_MATH2OP(atan2, atan2)
|
|
|
|
JANET_DEFINE_MATH2OP(pow, pow)
|
2018-01-16 01:14:21 +00:00
|
|
|
|
2019-01-06 01:09:03 +00:00
|
|
|
static Janet janet_not(int32_t argc, Janet *argv) {
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 1);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_boolean(!janet_truthy(argv[0]));
|
2018-02-09 16:57:58 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static const JanetReg math_cfuns[] = {
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
|
|
|
"%", janet_remainder,
|
|
|
|
JDOC("(% dividend divisor)\n\n"
|
|
|
|
"Returns the remainder of dividend / divisor.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"not", janet_not,
|
2019-01-06 08:23:03 +00:00
|
|
|
JDOC("(not x)\n\nReturns the boolean inverse of x.")
|
2019-01-06 06:49:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/random", janet_rand,
|
|
|
|
JDOC("(math/random)\n\n"
|
2019-01-06 08:23:03 +00:00
|
|
|
"Returns a uniformly distributed random number between 0 and 1.")
|
2019-01-06 06:49:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/seedrandom", janet_srand,
|
|
|
|
JDOC("(math/seedrandom seed)\n\n"
|
|
|
|
"Set the seed for the random number generator. 'seed' should be an "
|
|
|
|
"an integer.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/cos", janet_cos,
|
|
|
|
JDOC("(math/cos x)\n\n"
|
|
|
|
"Returns the cosine of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/sin", janet_sin,
|
|
|
|
JDOC("(math/sin x)\n\n"
|
|
|
|
"Returns the sine of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/tan", janet_tan,
|
|
|
|
JDOC("(math/tan x)\n\n"
|
|
|
|
"Returns the tangent of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/acos", janet_acos,
|
|
|
|
JDOC("(math/acos x)\n\n"
|
|
|
|
"Returns the arccosine of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/asin", janet_asin,
|
|
|
|
JDOC("(math/asin x)\n\n"
|
|
|
|
"Returns the arcsine of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/atan", janet_atan,
|
|
|
|
JDOC("(math/atan x)\n\n"
|
|
|
|
"Returns the arctangent of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/exp", janet_exp,
|
|
|
|
JDOC("(math/exp x)\n\n"
|
|
|
|
"Returns e to the power of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/log", janet_log,
|
|
|
|
JDOC("(math/log x)\n\n"
|
|
|
|
"Returns log base 2 of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/log10", janet_log10,
|
|
|
|
JDOC("(math/log10 x)\n\n"
|
|
|
|
"Returns log base 10 of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/sqrt", janet_sqrt,
|
|
|
|
JDOC("(math/sqrt x)\n\n"
|
|
|
|
"Returns the square root of x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/floor", janet_floor,
|
|
|
|
JDOC("(math/floor x)\n\n"
|
|
|
|
"Returns the largest integer value number that is not greater than x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/ceil", janet_ceil,
|
|
|
|
JDOC("(math/ceil x)\n\n"
|
|
|
|
"Returns the smallest integer value number that is not less than x.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"math/pow", janet_pow,
|
|
|
|
JDOC("(math/pow a x)\n\n"
|
|
|
|
"Return a to the power of x.")
|
2018-11-16 07:09:38 +00:00
|
|
|
},
|
2019-02-10 13:06:10 +00:00
|
|
|
{
|
|
|
|
"math/abs", janet_fabs,
|
|
|
|
JDOC("(math/abs x)\n\n"
|
|
|
|
"Return the absolute value of x.")
|
|
|
|
},
|
2018-11-15 20:45:41 +00:00
|
|
|
{NULL, NULL, NULL}
|
2018-01-19 21:43:19 +00:00
|
|
|
};
|
|
|
|
|
2018-01-16 01:14:21 +00:00
|
|
|
/* Module entry point */
|
2019-01-06 01:09:03 +00:00
|
|
|
void janet_lib_math(JanetTable *env) {
|
2019-02-08 05:44:30 +00:00
|
|
|
janet_core_cfuns(env, NULL, math_cfuns);
|
|
|
|
#ifdef JANET_BOOTSTRAP
|
2018-12-27 18:05:29 +00:00
|
|
|
janet_def(env, "math/pi", janet_wrap_number(3.1415926535897931),
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("The value pi."));
|
2018-12-27 18:05:29 +00:00
|
|
|
janet_def(env, "math/e", janet_wrap_number(2.7182818284590451),
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("The base of the natural log."));
|
2018-12-27 18:05:29 +00:00
|
|
|
janet_def(env, "math/inf", janet_wrap_number(INFINITY),
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("The number representing positive infinity"));
|
2019-01-06 08:23:03 +00:00
|
|
|
#endif
|
2018-01-16 01:14:21 +00:00
|
|
|
}
|