summaryrefslogtreecommitdiff
path: root/src/library/base.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-03-29 14:51:54 +0200
committerLaurenz <laurmaedje@gmail.com>2021-03-29 14:51:54 +0200
commit9c040a9d2b6aa0400df868c8a8581a9e168b9d14 (patch)
treec9052f2dffa386a2f4343e72ae8d18e0f695b964 /src/library/base.rs
parentdf7ba364743cbcadbded78df0250c0b58d70503f (diff)
Move around test cases 🚚
Diffstat (limited to 'src/library/base.rs')
-rw-r--r--src/library/base.rs65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/library/base.rs b/src/library/base.rs
deleted file mode 100644
index 48925122..00000000
--- a/src/library/base.rs
+++ /dev/null
@@ -1,65 +0,0 @@
-use crate::color::{Color, RgbaColor};
-use crate::pretty::pretty;
-
-use super::*;
-
-/// `type`: The name of a value's type.
-///
-/// # Positional parameters
-/// - Any value.
-///
-/// # Return value
-/// The name of the value's type as a string.
-pub fn type_(ctx: &mut EvalContext, args: &mut FuncArgs) -> Value {
- match args.require::<Value>(ctx, "value") {
- Some(value) => value.type_name().into(),
- None => Value::Error,
- }
-}
-
-/// `repr`: The string representation of a value.
-///
-/// # Positional parameters
-/// - Any value.
-///
-/// # Return value
-/// The string representation of the value.
-pub fn repr(ctx: &mut EvalContext, args: &mut FuncArgs) -> Value {
- match args.require::<Value>(ctx, "value") {
- Some(value) => pretty(&value).into(),
- None => Value::Error,
- }
-}
-
-/// `rgb`: Create an RGB(A) color.
-///
-/// # Positional parameters
-/// - Red component: of type `float`, between 0.0 and 1.0.
-/// - Green component: of type `float`, between 0.0 and 1.0.
-/// - Blue component: of type `float`, between 0.0 and 1.0.
-/// - Alpha component: optional, of type `float`, between 0.0 and 1.0.
-///
-/// # Return value
-/// The color with the given components.
-pub fn rgb(ctx: &mut EvalContext, args: &mut FuncArgs) -> Value {
- let r = args.require(ctx, "red component");
- let g = args.require(ctx, "green component");
- let b = args.require(ctx, "blue component");
- let a = args.find(ctx);
-
- let mut clamp = |component: Option<Spanned<f64>>, default| {
- component.map_or(default, |c| {
- if c.v < 0.0 || c.v > 1.0 {
- ctx.diag(warning!(c.span, "should be between 0.0 and 1.0"));
- }
- (c.v.max(0.0).min(1.0) * 255.0).round() as u8
- })
- };
-
- Value::Color(Color::Rgba(RgbaColor::new(
- clamp(r, 0),
- clamp(g, 0),
- clamp(b, 0),
- clamp(a, 255),
- )))
-}