2017-12-30 21:46:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Calvin Rose
|
|
|
|
*
|
|
|
|
* 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 <dst/dst.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
/* Convert a number to an integer */
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_int(DstArgs args) {
|
|
|
|
if (args.n != 1) {
|
|
|
|
*args.ret = dst_cstringv("expected 1 argument");
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-14 17:10:45 +00:00
|
|
|
switch (dst_type(args.v[0])) {
|
2017-12-30 21:46:59 +00:00
|
|
|
default:
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_cstringv("could not convert to integer");
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;
|
|
|
|
case DST_REAL:
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_integer((int32_t) dst_unwrap_real(args.v[0]));
|
2017-12-30 21:46:59 +00:00
|
|
|
break;
|
|
|
|
case DST_INTEGER:
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = args.v[0];
|
2017-12-30 21:46:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert a number to a real number */
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_real(DstArgs args) {
|
|
|
|
if (args.n != 1) {
|
|
|
|
*args.ret = dst_cstringv("expected 1 argument");
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-14 17:10:45 +00:00
|
|
|
switch (dst_type(args.v[0])) {
|
2017-12-30 21:46:59 +00:00
|
|
|
default:
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_cstringv("could not convert to real");
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;
|
|
|
|
case DST_REAL:
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = args.v[0];
|
2017-12-30 21:46:59 +00:00
|
|
|
break;
|
|
|
|
case DST_INTEGER:
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_real((double) dst_unwrap_integer(args.v[0]));
|
2017-12-30 21:46:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ADD(x, y) ((x) + (y))
|
|
|
|
#define SUB(x, y) ((x) - (y))
|
|
|
|
#define MUL(x, y) ((x) * (y))
|
|
|
|
#define MOD(x, y) ((x) % (y))
|
|
|
|
#define DIV(x, y) ((x) / (y))
|
|
|
|
|
|
|
|
#define DST_DEFINE_BINOP(name, op, rop, onerr)\
|
2018-01-06 16:09:15 +00:00
|
|
|
Dst dst_op_##name(Dst lhs, Dst rhs) {\
|
2017-12-30 21:46:59 +00:00
|
|
|
if (!(dst_checktype(lhs, DST_INTEGER) || dst_checktype(lhs, DST_REAL))) onerr;\
|
|
|
|
if (!(dst_checktype(rhs, DST_INTEGER) || dst_checktype(rhs, DST_REAL))) onerr;\
|
|
|
|
return dst_checktype(lhs, DST_INTEGER)\
|
|
|
|
? (dst_checktype(rhs, DST_INTEGER)\
|
|
|
|
? dst_wrap_integer(op(dst_unwrap_integer(lhs), dst_unwrap_integer(rhs)))\
|
|
|
|
: dst_wrap_real(rop((double)dst_unwrap_integer(lhs), dst_unwrap_real(rhs))))\
|
|
|
|
: (dst_checktype(rhs, DST_INTEGER)\
|
|
|
|
? dst_wrap_real(rop(dst_unwrap_real(lhs), (double)dst_unwrap_integer(rhs)))\
|
|
|
|
: dst_wrap_real(rop(dst_unwrap_real(lhs), dst_unwrap_real(rhs))));\
|
|
|
|
}
|
|
|
|
|
|
|
|
DST_DEFINE_BINOP(add, ADD, ADD, return dst_wrap_nil())
|
|
|
|
DST_DEFINE_BINOP(subtract, SUB, SUB, return dst_wrap_nil())
|
|
|
|
DST_DEFINE_BINOP(multiply, MUL, MUL, return dst_wrap_nil())
|
|
|
|
|
|
|
|
#define DST_DEFINE_DIVIDER_OP(name, op, rop)\
|
2018-01-06 16:09:15 +00:00
|
|
|
Dst dst_op_##name(Dst lhs, Dst rhs) {\
|
2017-12-30 21:46:59 +00:00
|
|
|
if (!(dst_checktype(lhs, DST_INTEGER) || dst_checktype(lhs, DST_REAL))) return dst_wrap_nil();\
|
|
|
|
if (!(dst_checktype(rhs, DST_INTEGER) || dst_checktype(rhs, DST_REAL))) return dst_wrap_nil();\
|
|
|
|
return dst_checktype(lhs, DST_INTEGER)\
|
|
|
|
? (dst_checktype(rhs, DST_INTEGER)\
|
|
|
|
? (dst_unwrap_integer(rhs) == 0 || ((dst_unwrap_integer(lhs) == INT32_MIN) && (dst_unwrap_integer(rhs) == -1)))\
|
|
|
|
? dst_wrap_nil()\
|
|
|
|
: dst_wrap_integer(op(dst_unwrap_integer(lhs), dst_unwrap_integer(rhs)))\
|
|
|
|
: dst_wrap_real(rop((double)dst_unwrap_integer(lhs), dst_unwrap_real(rhs))))\
|
|
|
|
: (dst_checktype(rhs, DST_INTEGER)\
|
|
|
|
? dst_wrap_real(rop(dst_unwrap_real(lhs), (double)dst_unwrap_integer(rhs)))\
|
|
|
|
: dst_wrap_real(rop(dst_unwrap_real(lhs), dst_unwrap_real(rhs))));\
|
|
|
|
}
|
|
|
|
|
|
|
|
DST_DEFINE_DIVIDER_OP(divide, DIV, DIV)
|
|
|
|
DST_DEFINE_DIVIDER_OP(modulo, MOD, fmod)
|
|
|
|
|
|
|
|
#define DST_DEFINE_REDUCER(name, fop, start)\
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_##name(DstArgs args) {\
|
2017-12-30 21:46:59 +00:00
|
|
|
int32_t i;\
|
2018-01-06 16:09:15 +00:00
|
|
|
Dst accum = dst_wrap_integer(start);\
|
2018-01-14 17:10:45 +00:00
|
|
|
for (i = 0; i < args.n; i++) {\
|
|
|
|
accum = fop(accum, args.v[i]);\
|
2017-12-30 21:46:59 +00:00
|
|
|
}\
|
|
|
|
if (dst_checktype(accum, DST_NIL)) {\
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_cstringv("expected number");\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;\
|
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = accum;\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 0;\
|
|
|
|
}
|
|
|
|
|
|
|
|
DST_DEFINE_REDUCER(add, dst_op_add, 0)
|
|
|
|
DST_DEFINE_REDUCER(multiply, dst_op_multiply, 1)
|
|
|
|
|
2018-01-04 02:36:10 +00:00
|
|
|
#define DST_DEFINE_DIVIDER(name, unarystart)\
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_##name(DstArgs args) {\
|
2017-12-30 21:46:59 +00:00
|
|
|
int32_t i;\
|
2018-01-06 16:09:15 +00:00
|
|
|
Dst accum;\
|
2018-01-14 17:10:45 +00:00
|
|
|
if (args.n < 1) {\
|
|
|
|
*args.ret = dst_cstringv("expected at least one argument");\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;\
|
2018-01-14 17:10:45 +00:00
|
|
|
} else if (args.n == 1) {\
|
2018-01-13 19:08:42 +00:00
|
|
|
accum = unarystart;\
|
2017-12-30 21:46:59 +00:00
|
|
|
i = 0;\
|
|
|
|
} else {\
|
2018-01-14 17:10:45 +00:00
|
|
|
accum = args.v[0];\
|
2017-12-30 21:46:59 +00:00
|
|
|
i = 1;\
|
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
for (; i < args.n; i++) {\
|
|
|
|
accum = dst_op_##name(accum, args.v[i]);\
|
2017-12-30 21:46:59 +00:00
|
|
|
}\
|
|
|
|
if (dst_checktype(accum, DST_NIL)) {\
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_cstringv("expected number or division error");\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;\
|
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = accum;\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 0;\
|
|
|
|
}
|
|
|
|
|
2018-01-13 19:08:42 +00:00
|
|
|
DST_DEFINE_DIVIDER(divide, dst_wrap_real(1))
|
|
|
|
DST_DEFINE_DIVIDER(modulo, dst_wrap_real(1))
|
|
|
|
DST_DEFINE_DIVIDER(subtract, dst_wrap_integer(0))
|
2017-12-30 21:46:59 +00:00
|
|
|
|
|
|
|
#undef ADD
|
|
|
|
#undef SUB
|
|
|
|
#undef MUL
|
|
|
|
#undef MOD
|
|
|
|
#undef DST_DEFINE_BINOP
|
|
|
|
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_bnot(DstArgs args) {
|
|
|
|
if (args.n != 1) {
|
|
|
|
*args.ret = dst_cstringv("expected 1 argument");
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-14 17:10:45 +00:00
|
|
|
if (!dst_checktype(args.v[0], DST_INTEGER)) {
|
|
|
|
*args.ret = dst_cstringv("expected integer");
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_integer(~dst_unwrap_integer(args.v[0]));
|
2017-12-30 21:46:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DST_DEFINE_BITOP(name, op, start)\
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_##name(DstArgs args) {\
|
2017-12-30 21:46:59 +00:00
|
|
|
int32_t i;\
|
|
|
|
int32_t accum = start;\
|
2018-01-14 17:10:45 +00:00
|
|
|
for (i = 0; i < args.n; i++) {\
|
|
|
|
Dst arg = args.v[i];\
|
2017-12-30 21:46:59 +00:00
|
|
|
if (!dst_checktype(arg, DST_INTEGER)) {\
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_cstringv("expected integer");\
|
2017-12-30 21:46:59 +00:00
|
|
|
return -1;\
|
|
|
|
}\
|
|
|
|
accum op dst_unwrap_integer(arg);\
|
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_integer(accum);\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 0;\
|
|
|
|
}
|
|
|
|
|
|
|
|
DST_DEFINE_BITOP(band, &=, -1)
|
|
|
|
DST_DEFINE_BITOP(bor, |=, 0)
|
|
|
|
DST_DEFINE_BITOP(bxor, ^=, 0)
|
|
|
|
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_lshift(DstArgs args) {
|
|
|
|
if (args.n != 2 || !dst_checktype(args.v[0], DST_INTEGER) || !dst_checktype(args.v[1], DST_INTEGER)) {
|
|
|
|
*args.ret = dst_cstringv("expected 2 integers");
|
2018-01-04 02:36:10 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_integer(dst_unwrap_integer(args.v[0]) >> dst_unwrap_integer(args.v[1]));
|
2018-01-04 02:36:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_rshift(DstArgs args) {
|
|
|
|
if (args.n != 2 || !dst_checktype(args.v[0], DST_INTEGER) || !dst_checktype(args.v[1], DST_INTEGER)) {
|
|
|
|
*args.ret = dst_cstringv("expected 2 integers");
|
2018-01-04 02:36:10 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_integer(dst_unwrap_integer(args.v[0]) << dst_unwrap_integer(args.v[1]));
|
2018-01-04 02:36:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_lshiftu(DstArgs args) {
|
|
|
|
if (args.n != 2 || !dst_checktype(args.v[0], DST_INTEGER) || !dst_checktype(args.v[1], DST_INTEGER)) {
|
|
|
|
*args.ret = dst_cstringv("expected 2 integers");
|
2018-01-04 02:36:10 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_integer((int32_t)((uint32_t)dst_unwrap_integer(args.v[0]) >> dst_unwrap_integer(args.v[1])));
|
2018-01-04 02:36:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-30 21:46:59 +00:00
|
|
|
#define DST_DEFINE_MATHOP(name, fop)\
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_##name(DstArgs args) {\
|
|
|
|
if (args.n != 1) {\
|
|
|
|
*args.ret = dst_cstringv("expected 1 argument");\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;\
|
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
if (dst_checktype(args.v[0], DST_INTEGER)) {\
|
|
|
|
args.v[0] = dst_wrap_real(dst_unwrap_integer(args.v[0]));\
|
2017-12-30 21:46:59 +00:00
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
if (!dst_checktype(args.v[0], DST_REAL)) {\
|
|
|
|
*args.ret = dst_cstringv("expected number");\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;\
|
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_real(fop(dst_unwrap_real(args.v[0])));\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 0;\
|
|
|
|
}
|
|
|
|
|
|
|
|
DST_DEFINE_MATHOP(acos, acos)
|
|
|
|
DST_DEFINE_MATHOP(asin, asin)
|
|
|
|
DST_DEFINE_MATHOP(atan, atan)
|
|
|
|
DST_DEFINE_MATHOP(cos, cos)
|
|
|
|
DST_DEFINE_MATHOP(cosh, cosh)
|
|
|
|
DST_DEFINE_MATHOP(sin, sin)
|
|
|
|
DST_DEFINE_MATHOP(sinh, sinh)
|
|
|
|
DST_DEFINE_MATHOP(tan, tan)
|
|
|
|
DST_DEFINE_MATHOP(tanh, tanh)
|
|
|
|
DST_DEFINE_MATHOP(exp, exp)
|
|
|
|
DST_DEFINE_MATHOP(log, log)
|
|
|
|
DST_DEFINE_MATHOP(log10, log10)
|
|
|
|
DST_DEFINE_MATHOP(sqrt, sqrt)
|
|
|
|
DST_DEFINE_MATHOP(ceil, ceil)
|
|
|
|
DST_DEFINE_MATHOP(fabs, fabs)
|
|
|
|
DST_DEFINE_MATHOP(floor, floor)
|
|
|
|
|
|
|
|
#define DST_DEFINE_MATH2OP(name, fop)\
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_##name(DstArgs args) {\
|
|
|
|
if (args.n != 2) {\
|
|
|
|
*args.ret = dst_cstringv("expected 2 arguments");\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;\
|
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
if (dst_checktype(args.v[0], DST_INTEGER))\
|
|
|
|
args.v[0] = dst_wrap_real(dst_unwrap_integer(args.v[0]));\
|
|
|
|
if (dst_checktype(args.v[1], DST_INTEGER))\
|
|
|
|
args.v[1] = dst_wrap_real(dst_unwrap_integer(args.v[1]));\
|
|
|
|
if (!dst_checktype(args.v[0], DST_REAL) || !dst_checktype(args.v[1], DST_REAL)) {\
|
|
|
|
*args.ret = dst_cstringv("expected real");\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;\
|
|
|
|
}\
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret =\
|
|
|
|
dst_wrap_real(fop(dst_unwrap_real(args.v[0]), dst_unwrap_real(args.v[1])));\
|
2017-12-30 21:46:59 +00:00
|
|
|
return 0;\
|
|
|
|
}\
|
|
|
|
|
|
|
|
DST_DEFINE_MATH2OP(atan2, atan2)
|
|
|
|
DST_DEFINE_MATH2OP(pow, pow)
|
|
|
|
DST_DEFINE_MATH2OP(fmod, fmod)
|
|
|
|
|
2018-01-14 17:10:45 +00:00
|
|
|
int dst_modf(DstArgs args) {
|
2017-12-30 21:46:59 +00:00
|
|
|
double intpart;
|
2018-01-06 16:09:15 +00:00
|
|
|
Dst *tup;
|
2018-01-14 17:10:45 +00:00
|
|
|
if (args.n != 1) {
|
|
|
|
*args.ret = dst_cstringv("expected 1 argument");
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-01-14 17:10:45 +00:00
|
|
|
if (dst_checktype(args.v[0], DST_INTEGER))
|
|
|
|
args.v[0] = dst_wrap_real(dst_unwrap_integer(args.v[0]));
|
|
|
|
if (!dst_checktype(args.v[0], DST_REAL)) {
|
|
|
|
*args.ret = dst_cstringv("expected real");
|
2017-12-30 21:46:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
tup = dst_tuple_begin(2);
|
2018-01-14 17:10:45 +00:00
|
|
|
tup[0] = dst_wrap_real(modf(dst_unwrap_real(args.v[0]), &intpart));
|
2017-12-30 21:46:59 +00:00
|
|
|
tup[1] = dst_wrap_real(intpart);
|
2018-01-14 17:10:45 +00:00
|
|
|
*args.ret = dst_wrap_tuple(dst_tuple_end(tup));
|
2017-12-30 21:46:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-01-16 01:14:21 +00:00
|
|
|
|
|
|
|
/* Comparison */
|
|
|
|
#define DST_DEFINE_COMPARATOR(name, pred)\
|
|
|
|
static int dst_math_##name(DstArgs args) {\
|
|
|
|
int32_t i;\
|
|
|
|
for (i = 0; i < args.n - 1; i++) {\
|
|
|
|
if (dst_compare(args.v[i], args.v[i+1]) pred) {\
|
|
|
|
*args.ret = dst_wrap_false();\
|
|
|
|
return 0;\
|
|
|
|
}\
|
|
|
|
}\
|
|
|
|
*args.ret = dst_wrap_true();\
|
|
|
|
return 0;\
|
|
|
|
}
|
|
|
|
|
|
|
|
DST_DEFINE_COMPARATOR(ascending, >= 0)
|
|
|
|
DST_DEFINE_COMPARATOR(descending, <= 0)
|
|
|
|
DST_DEFINE_COMPARATOR(notdescending, > 0)
|
|
|
|
DST_DEFINE_COMPARATOR(notascending, < 0)
|
|
|
|
|
|
|
|
/* Boolean logic */
|
|
|
|
static int dst_math_equal(DstArgs args) {
|
|
|
|
int32_t i;
|
|
|
|
for (i = 0; i < args.n - 1; i++) {
|
|
|
|
if (!dst_equals(args.v[i], args.v[i+1])) {
|
|
|
|
*args.ret = dst_wrap_false();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*args.ret = dst_wrap_true();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dst_math_notequal(DstArgs args) {
|
|
|
|
int32_t i;
|
|
|
|
for (i = 0; i < args.n - 1; i++) {
|
|
|
|
if (dst_equals(args.v[i], args.v[i+1])) {
|
|
|
|
*args.ret = dst_wrap_false();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*args.ret = dst_wrap_true();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dst_math_not(DstArgs args) {
|
|
|
|
*args.ret = dst_wrap_boolean(args.n == 0 || !dst_truthy(args.v[0]));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Module entry point */
|
2018-01-18 22:25:45 +00:00
|
|
|
int dst_lib_math(DstArgs args) {
|
|
|
|
DstTable *env = dst_env_arg(args);
|
|
|
|
dst_env_def(env, "int", dst_wrap_cfunction(dst_int));
|
|
|
|
dst_env_def(env, "real", dst_wrap_cfunction(dst_real));
|
|
|
|
dst_env_def(env, "+", dst_wrap_cfunction(dst_add));
|
|
|
|
dst_env_def(env, "-", dst_wrap_cfunction(dst_subtract));
|
|
|
|
dst_env_def(env, "*", dst_wrap_cfunction(dst_multiply));
|
|
|
|
dst_env_def(env, "/", dst_wrap_cfunction(dst_divide));
|
|
|
|
dst_env_def(env, "%", dst_wrap_cfunction(dst_modulo));
|
|
|
|
dst_env_def(env, "=", dst_wrap_cfunction(dst_math_equal));
|
|
|
|
dst_env_def(env, "not=", dst_wrap_cfunction(dst_math_notequal));
|
|
|
|
dst_env_def(env, "<", dst_wrap_cfunction(dst_math_ascending));
|
|
|
|
dst_env_def(env, ">", dst_wrap_cfunction(dst_math_descending));
|
|
|
|
dst_env_def(env, "<=", dst_wrap_cfunction(dst_math_notdescending));
|
|
|
|
dst_env_def(env, ">=", dst_wrap_cfunction(dst_math_notascending));
|
|
|
|
dst_env_def(env, "|", dst_wrap_cfunction(dst_bor));
|
|
|
|
dst_env_def(env, "&", dst_wrap_cfunction(dst_band));
|
|
|
|
dst_env_def(env, "^", dst_wrap_cfunction(dst_bxor));
|
|
|
|
dst_env_def(env, "~", dst_wrap_cfunction(dst_bnot));
|
|
|
|
dst_env_def(env, ">>", dst_wrap_cfunction(dst_lshift));
|
|
|
|
dst_env_def(env, "<<", dst_wrap_cfunction(dst_rshift));
|
|
|
|
dst_env_def(env, ">>>", dst_wrap_cfunction(dst_lshiftu));
|
|
|
|
dst_env_def(env, "not", dst_wrap_cfunction(dst_math_not));
|
|
|
|
dst_env_def(env, "cos", dst_wrap_cfunction(dst_cos));
|
|
|
|
dst_env_def(env, "sin", dst_wrap_cfunction(dst_sin));
|
|
|
|
dst_env_def(env, "tan", dst_wrap_cfunction(dst_tan));
|
|
|
|
dst_env_def(env, "acos", dst_wrap_cfunction(dst_acos));
|
|
|
|
dst_env_def(env, "asin", dst_wrap_cfunction(dst_asin));
|
|
|
|
dst_env_def(env, "atan", dst_wrap_cfunction(dst_atan));
|
|
|
|
dst_env_def(env, "exp", dst_wrap_cfunction(dst_exp));
|
|
|
|
dst_env_def(env, "log", dst_wrap_cfunction(dst_log));
|
|
|
|
dst_env_def(env, "log10", dst_wrap_cfunction(dst_log10));
|
|
|
|
dst_env_def(env, "sqrt", dst_wrap_cfunction(dst_sqrt));
|
|
|
|
dst_env_def(env, "floor", dst_wrap_cfunction(dst_floor));
|
|
|
|
dst_env_def(env, "ceil", dst_wrap_cfunction(dst_ceil));
|
|
|
|
dst_env_def(env, "pow", dst_wrap_cfunction(dst_pow));
|
|
|
|
dst_env_def(env, "pi", dst_wrap_real(3.1415926535897931));
|
|
|
|
dst_env_def(env, "\xCF\x80", dst_wrap_real(3.1415926535897931));
|
|
|
|
dst_env_def(env, "e", dst_wrap_real(2.7182818284590451));
|
2018-01-16 01:14:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|