rhai/src/packages/math_basic.rs

208 lines
5.9 KiB
Rust
Raw Normal View History

2020-04-21 17:01:10 +02:00
use crate::def_package;
use crate::parser::INT;
2020-08-13 08:57:46 +02:00
use crate::plugin::*;
#[cfg(not(feature = "no_float"))]
use crate::parser::FLOAT;
2020-07-26 09:53:22 +02:00
#[cfg(not(feature = "no_float"))]
use crate::{result::EvalAltResult, token::Position};
2020-07-20 17:23:12 +02:00
#[cfg(feature = "no_std")]
2020-07-31 16:30:23 +02:00
#[cfg(not(feature = "no_float"))]
use num_traits::float::Float;
2020-07-20 14:23:35 +02:00
2020-07-26 09:53:22 +02:00
#[cfg(not(feature = "no_float"))]
2020-08-06 04:17:32 +02:00
use crate::stdlib::format;
2020-07-31 16:30:23 +02:00
#[allow(dead_code)]
#[cfg(feature = "only_i32")]
2020-04-20 18:24:25 +02:00
pub const MAX_INT: INT = i32::MAX;
2020-07-31 16:30:23 +02:00
#[allow(dead_code)]
#[cfg(not(feature = "only_i32"))]
2020-04-20 18:24:25 +02:00
pub const MAX_INT: INT = i64::MAX;
2020-04-22 08:55:40 +02:00
def_package!(crate:BasicMathPackage:"Basic mathematic functions.", lib, {
2020-04-21 17:01:10 +02:00
#[cfg(not(feature = "no_float"))]
{
2020-08-13 08:57:46 +02:00
// Floating point functions
lib.merge(&exported_module!(float));
2020-04-21 17:01:10 +02:00
2020-08-13 08:57:46 +02:00
// Floating point properties
#[cfg(not(feature = "no_object"))]
{
lib.set_getter_fn("floor", |x: &mut FLOAT| Ok(x.floor()));
lib.set_getter_fn("ceiling", |x: &mut FLOAT| Ok(x.ceil()));
lib.set_getter_fn("round", |x: &mut FLOAT| Ok(x.ceil()));
lib.set_getter_fn("int", |x: &mut FLOAT| Ok(x.trunc()));
lib.set_getter_fn("fraction", |x: &mut FLOAT| Ok(x.fract()));
lib.set_getter_fn("is_nan", |x: &mut FLOAT| Ok(x.is_nan()));
lib.set_getter_fn("is_finite", |x: &mut FLOAT| Ok(x.is_finite()));
lib.set_getter_fn("is_infinite", |x: &mut FLOAT| Ok(x.is_infinite()));
}
2020-08-13 08:57:46 +02:00
// Trig functions
lib.merge(&exported_module!(trig));
2020-04-21 17:01:10 +02:00
// Register conversion functions
2020-05-13 13:21:42 +02:00
lib.set_fn_1("to_float", |x: INT| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: f32| Ok(x as FLOAT));
2020-07-31 16:30:23 +02:00
if cfg!(not(feature = "only_i32")) && cfg!(not(feature = "only_i64")) {
2020-05-13 13:21:42 +02:00
lib.set_fn_1("to_float", |x: i8| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: u8| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: i16| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: u16| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: i32| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: u32| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: i64| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: u64| Ok(x as FLOAT));
2020-06-17 10:50:46 +02:00
2020-07-31 16:30:23 +02:00
if cfg!(not(target_arch = "wasm32")) {
2020-06-17 10:50:46 +02:00
lib.set_fn_1("to_float", |x: i128| Ok(x as FLOAT));
lib.set_fn_1("to_float", |x: u128| Ok(x as FLOAT));
}
2020-04-21 17:01:10 +02:00
}
}
2020-05-13 13:21:42 +02:00
lib.set_fn_1("to_int", |ch: char| Ok(ch as INT));
2020-07-31 16:30:23 +02:00
if cfg!(not(feature = "only_i32")) && cfg!(not(feature = "only_i64")) {
2020-05-13 13:21:42 +02:00
lib.set_fn_1("to_int", |x: i8| Ok(x as INT));
lib.set_fn_1("to_int", |x: u8| Ok(x as INT));
lib.set_fn_1("to_int", |x: i16| Ok(x as INT));
lib.set_fn_1("to_int", |x: u16| Ok(x as INT));
}
2020-07-31 16:30:23 +02:00
if cfg!(not(feature = "only_i32")) {
2020-05-13 13:21:42 +02:00
lib.set_fn_1("to_int", |x: i32| Ok(x as INT));
lib.set_fn_1("to_int", |x: u64| Ok(x as INT));
2020-07-31 16:30:23 +02:00
if cfg!(feature = "only_i64") {
lib.set_fn_1("to_int", |x: u32| Ok(x as INT));
}
2020-04-21 17:01:10 +02:00
}
2020-04-21 17:01:10 +02:00
#[cfg(not(feature = "no_float"))]
{
2020-07-31 16:30:23 +02:00
if cfg!(not(feature = "unchecked")) {
2020-08-13 08:57:46 +02:00
lib.set_fn_1("to_int", |x: f32| {
if x > (MAX_INT as f32) {
return EvalAltResult::ErrorArithmetic(
format!("Integer overflow: to_int({})", x),
Position::none(),
)
.into();
}
Ok(x.trunc() as INT)
});
lib.set_fn_1("to_int", |x: FLOAT| {
if x > (MAX_INT as FLOAT) {
return EvalAltResult::ErrorArithmetic(
format!("Integer overflow: to_int({})", x),
Position::none(),
)
.into();
}
Ok(x.trunc() as INT)
});
}
2020-07-31 16:30:23 +02:00
if cfg!(feature = "unchecked") {
2020-05-13 13:21:42 +02:00
lib.set_fn_1("to_int", |x: f32| Ok(x as INT));
lib.set_fn_1("to_int", |x: f64| Ok(x as INT));
}
}
2020-08-14 07:43:26 +02:00
});
#[cfg(not(feature = "no_float"))]
#[export_module]
mod trig {
use crate::parser::FLOAT;
pub fn sin(x: FLOAT) -> FLOAT {
x.to_radians().sin()
}
pub fn cos(x: FLOAT) -> FLOAT {
x.to_radians().cos()
}
pub fn tan(x: FLOAT) -> FLOAT {
x.to_radians().tan()
}
pub fn sinh(x: FLOAT) -> FLOAT {
x.to_radians().sinh()
}
pub fn cosh(x: FLOAT) -> FLOAT {
x.to_radians().cosh()
}
pub fn tanh(x: FLOAT) -> FLOAT {
x.to_radians().tanh()
}
pub fn asin(x: FLOAT) -> FLOAT {
x.asin().to_degrees()
}
pub fn acos(x: FLOAT) -> FLOAT {
x.acos().to_degrees()
}
pub fn atan(x: FLOAT) -> FLOAT {
x.atan().to_degrees()
}
pub fn asinh(x: FLOAT) -> FLOAT {
x.asinh().to_degrees()
}
pub fn acosh(x: FLOAT) -> FLOAT {
x.acosh().to_degrees()
}
pub fn atanh(x: FLOAT) -> FLOAT {
x.atanh().to_degrees()
}
}
#[cfg(not(feature = "no_float"))]
#[export_module]
mod float {
use crate::parser::FLOAT;
pub fn sqrt(x: FLOAT) -> FLOAT {
x.sqrt()
}
pub fn exp(x: FLOAT) -> FLOAT {
x.exp()
}
pub fn ln(x: FLOAT) -> FLOAT {
x.ln()
}
pub fn log(x: FLOAT, base: FLOAT) -> FLOAT {
x.log(base)
}
pub fn log10(x: FLOAT) -> FLOAT {
x.log10()
}
pub fn floor(x: FLOAT) -> FLOAT {
x.floor()
}
pub fn ceiling(x: FLOAT) -> FLOAT {
x.ceil()
}
pub fn round(x: FLOAT) -> FLOAT {
x.ceil()
}
pub fn int(x: FLOAT) -> FLOAT {
x.trunc()
}
pub fn fraction(x: FLOAT) -> FLOAT {
x.fract()
}
pub fn is_nan(x: FLOAT) -> bool {
x.is_nan()
}
pub fn is_finite(x: FLOAT) -> bool {
x.is_finite()
}
pub fn is_infinite(x: FLOAT) -> bool {
x.is_infinite()
}
2020-08-13 08:57:46 +02:00
}