2020-03-29 11:15:12 +02:00
|
|
|
#![cfg(not(feature = "no_object"))]
|
|
|
|
|
2020-05-25 07:44:28 +02:00
|
|
|
use rhai::{Engine, EvalAltResult, ImmutableString, RegisterFn, INT};
|
2017-11-03 17:58:51 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_get_set() -> Result<(), Box<EvalAltResult>> {
|
2017-11-03 17:58:51 +01:00
|
|
|
#[derive(Clone)]
|
|
|
|
struct TestStruct {
|
2020-03-10 16:06:20 +01:00
|
|
|
x: INT,
|
2020-05-04 12:06:09 +02:00
|
|
|
y: INT,
|
2020-05-05 14:38:48 +02:00
|
|
|
array: Vec<INT>,
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TestStruct {
|
2020-03-10 16:06:20 +01:00
|
|
|
fn get_x(&mut self) -> INT {
|
2017-11-03 17:58:51 +01:00
|
|
|
self.x
|
|
|
|
}
|
|
|
|
|
2020-03-10 16:06:20 +01:00
|
|
|
fn set_x(&mut self, new_x: INT) {
|
2017-11-03 17:58:51 +01:00
|
|
|
self.x = new_x;
|
|
|
|
}
|
|
|
|
|
2020-05-04 12:06:09 +02:00
|
|
|
fn get_y(&mut self) -> INT {
|
|
|
|
self.y
|
|
|
|
}
|
|
|
|
|
2020-03-19 06:52:10 +01:00
|
|
|
fn new() -> Self {
|
2020-05-05 14:38:48 +02:00
|
|
|
TestStruct {
|
|
|
|
x: 1,
|
|
|
|
y: 0,
|
|
|
|
array: vec![1, 2, 3, 4, 5],
|
|
|
|
}
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
|
|
|
engine.register_type::<TestStruct>();
|
|
|
|
|
|
|
|
engine.register_get_set("x", TestStruct::get_x, TestStruct::set_x);
|
2020-05-04 12:06:09 +02:00
|
|
|
engine.register_get("y", TestStruct::get_y);
|
|
|
|
engine.register_fn("add", |value: &mut INT| *value += 41);
|
2017-11-03 17:58:51 +01:00
|
|
|
engine.register_fn("new_ts", TestStruct::new);
|
|
|
|
|
2020-03-10 16:06:20 +01:00
|
|
|
assert_eq!(engine.eval::<INT>("let a = new_ts(); a.x = 500; a.x")?, 500);
|
2020-05-04 12:06:09 +02:00
|
|
|
assert_eq!(engine.eval::<INT>("let a = new_ts(); a.x.add(); a.x")?, 42);
|
|
|
|
assert_eq!(engine.eval::<INT>("let a = new_ts(); a.y.add(); a.y")?, 0);
|
2020-03-02 15:11:56 +01:00
|
|
|
|
2020-05-05 14:38:48 +02:00
|
|
|
#[cfg(not(feature = "no_index"))]
|
2020-06-06 07:06:00 +02:00
|
|
|
{
|
|
|
|
engine.register_indexer_get_set(
|
|
|
|
|value: &mut TestStruct, index: ImmutableString| value.array[index.len()],
|
|
|
|
|value: &mut TestStruct, index: ImmutableString, new_val: INT| {
|
|
|
|
value.array[index.len()] = new_val
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(engine.eval::<INT>(r#"let a = new_ts(); a["abc"]"#)?, 4);
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(r#"let a = new_ts(); a["abc"] = 42; a["abc"]"#)?,
|
|
|
|
42
|
|
|
|
);
|
|
|
|
}
|
2020-03-02 15:11:56 +01:00
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-05-16 05:42:56 +02:00
|
|
|
fn test_get_set_chain() -> Result<(), Box<EvalAltResult>> {
|
2017-11-03 17:58:51 +01:00
|
|
|
#[derive(Clone)]
|
|
|
|
struct TestChild {
|
2020-03-10 16:06:20 +01:00
|
|
|
x: INT,
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TestChild {
|
2020-03-10 16:06:20 +01:00
|
|
|
fn get_x(&mut self) -> INT {
|
2017-11-03 17:58:51 +01:00
|
|
|
self.x
|
|
|
|
}
|
|
|
|
|
2020-03-10 16:06:20 +01:00
|
|
|
fn set_x(&mut self, new_x: INT) {
|
2017-11-03 17:58:51 +01:00
|
|
|
self.x = new_x;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new() -> TestChild {
|
|
|
|
TestChild { x: 1 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
struct TestParent {
|
|
|
|
child: TestChild,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TestParent {
|
|
|
|
fn get_child(&mut self) -> TestChild {
|
|
|
|
self.child.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_child(&mut self, new_child: TestChild) {
|
|
|
|
self.child = new_child;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new() -> TestParent {
|
2019-09-18 12:21:07 +02:00
|
|
|
TestParent {
|
|
|
|
child: TestChild::new(),
|
|
|
|
}
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
|
|
|
engine.register_type::<TestChild>();
|
2020-03-04 15:00:01 +01:00
|
|
|
engine.register_type_with_name::<TestParent>("TestParent");
|
2017-11-03 17:58:51 +01:00
|
|
|
|
|
|
|
engine.register_get_set("x", TestChild::get_x, TestChild::set_x);
|
|
|
|
engine.register_get_set("child", TestParent::get_child, TestParent::set_child);
|
|
|
|
|
|
|
|
engine.register_fn("new_tp", TestParent::new);
|
|
|
|
|
2019-09-18 12:21:07 +02:00
|
|
|
assert_eq!(
|
2020-03-10 16:06:20 +01:00
|
|
|
engine.eval::<INT>("let a = new_tp(); a.child.x = 500; a.child.x")?,
|
2020-03-02 15:11:56 +01:00
|
|
|
500
|
2019-09-18 12:21:07 +02:00
|
|
|
);
|
2020-03-02 15:11:56 +01:00
|
|
|
|
2020-03-04 15:00:01 +01:00
|
|
|
assert_eq!(
|
2020-03-20 12:27:02 +01:00
|
|
|
engine.eval::<String>("let a = new_tp(); type_of(a)")?,
|
2020-03-04 15:00:01 +01:00
|
|
|
"TestParent"
|
|
|
|
);
|
|
|
|
|
2020-03-02 15:11:56 +01:00
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|