2021-05-20 18:18:01 -05:00
|
|
|
use std::{convert::TryFrom, fmt::Display};
|
|
|
|
|
2021-04-18 16:40:41 -05:00
|
|
|
use rand::Rng;
|
2021-04-13 18:01:19 -05:00
|
|
|
|
2021-05-20 18:18:01 -05:00
|
|
|
use crate::error::{Error, ErrorKind};
|
|
|
|
|
2021-04-18 16:40:41 -05:00
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
pub enum Abool {
|
|
|
|
Never = -1,
|
|
|
|
Sometimes = 0,
|
|
|
|
Always = 1,
|
|
|
|
}
|
|
|
|
|
2021-05-20 18:18:01 -05:00
|
|
|
impl Display for Abool {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
match self {
|
|
|
|
Abool::Never => write!(f, "never"),
|
|
|
|
Abool::Sometimes => write!(f, "sometimes"),
|
|
|
|
Abool::Always => write!(f, "always"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-02 10:38:12 -05:00
|
|
|
impl From<Abool> for bool {
|
|
|
|
fn from(val: Abool) -> Self {
|
|
|
|
match val {
|
2021-04-18 16:40:41 -05:00
|
|
|
Abool::Never => false,
|
|
|
|
Abool::Always => true,
|
2021-05-03 19:33:21 -05:00
|
|
|
Abool::Sometimes => rand::thread_rng().gen(), // NOTE(Able): This is amazing and should be applied anywhere abooleans exist
|
2021-04-18 16:40:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-02 11:12:51 -05:00
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
2021-04-18 09:39:43 -05:00
|
|
|
pub enum Value {
|
2021-04-13 18:01:19 -05:00
|
|
|
Str(String),
|
|
|
|
Int(i32),
|
|
|
|
Bool(bool),
|
2021-04-18 16:40:41 -05:00
|
|
|
Abool(Abool),
|
2021-04-29 11:50:51 -05:00
|
|
|
Nul,
|
2021-04-13 18:01:19 -05:00
|
|
|
}
|
|
|
|
|
2021-05-20 18:18:01 -05:00
|
|
|
impl Display for Value {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
match self {
|
|
|
|
Value::Str(v) => write!(f, "{}", v),
|
|
|
|
Value::Int(v) => write!(f, "{}", v),
|
|
|
|
Value::Bool(v) => write!(f, "{}", v),
|
|
|
|
Value::Abool(v) => write!(f, "{}", v),
|
|
|
|
Value::Nul => write!(f, "nul"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Value> for i32 {
|
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
fn try_from(value: Value) -> Result<Self, Self::Error> {
|
2021-05-21 12:25:37 -05:00
|
|
|
match value {
|
|
|
|
Value::Int(i) => Ok(i),
|
|
|
|
_ => Err(Error {
|
2021-05-20 18:18:01 -05:00
|
|
|
kind: ErrorKind::TypeError(format!("Expected int, got {}", value)),
|
|
|
|
// TODO: either add some kind of metadata to `Value`
|
|
|
|
// so we can tell where the value came from and assign
|
|
|
|
// this `position` correctly, or re-write the
|
|
|
|
// `error::Error` struct so we can omit the `position`
|
|
|
|
// when using some error kinds.
|
|
|
|
position: 0..0,
|
2021-05-21 12:25:37 -05:00
|
|
|
}),
|
2021-05-20 18:18:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-23 18:46:42 -05:00
|
|
|
// Coercions from a value to a boolean always succeed, so every value
|
|
|
|
// can be used in an `if` statement. C does things that way, so how
|
|
|
|
// could it possibly be a bad idea?
|
|
|
|
impl From<Value> for bool {
|
|
|
|
fn from(value: Value) -> Self {
|
2021-05-21 12:25:37 -05:00
|
|
|
match value {
|
2021-05-23 18:46:42 -05:00
|
|
|
// Booleans and abooleans have a trivial conversion.
|
|
|
|
Value::Bool(b) => b,
|
|
|
|
Value::Abool(b) => b.into(),
|
|
|
|
// The empty string is falsey, other strings are truthy.
|
|
|
|
Value::Str(s) => s.len() != 0,
|
|
|
|
// 0 is falsey, nonzero is truthy.
|
|
|
|
Value::Int(x) => x != 0,
|
|
|
|
// And nul is truthy as a symbol of the fact that the
|
|
|
|
// deep, fundamental truth of this world is nothing but
|
|
|
|
// the eternal void.
|
|
|
|
Value::Nul => true,
|
2021-05-20 18:18:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-13 18:01:19 -05:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Variable {
|
2021-05-20 18:18:01 -05:00
|
|
|
pub melo: bool,
|
|
|
|
pub value: Value,
|
2021-04-27 06:48:56 -05:00
|
|
|
}
|