feat: basic definitions
This commit is contained in:
3
examples/definitions/.rhai/definitions/__scope__.d.rhai
Normal file
3
examples/definitions/.rhai/definitions/__scope__.d.rhai
Normal file
@@ -0,0 +1,3 @@
|
||||
module static;
|
||||
|
||||
let hello_there;
|
5731
examples/definitions/.rhai/definitions/__static__.d.rhai
Normal file
5731
examples/definitions/.rhai/definitions/__static__.d.rhai
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
module general_kenobi;
|
||||
|
||||
/// Returns a string where `hello there `
|
||||
/// is repeated `n` times.
|
||||
fn hello_there(n: i64) -> String;
|
40
examples/definitions/main.rs
Normal file
40
examples/definitions/main.rs
Normal file
@@ -0,0 +1,40 @@
|
||||
use rhai::{plugin::*, Engine, Scope};
|
||||
|
||||
#[export_module]
|
||||
pub mod general_kenobi {
|
||||
/// Returns a string where `hello there `
|
||||
/// is repeated `n` times.
|
||||
pub fn hello_there(n: i64) -> String {
|
||||
use std::convert::TryInto;
|
||||
"hello there ".repeat(n.try_into().unwrap())
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let mut engine = Engine::new();
|
||||
let mut scope = Scope::new();
|
||||
|
||||
// This variable will also show up in the definitions,
|
||||
// since it will be part of the scope.
|
||||
scope.push("hello_there", "hello there");
|
||||
|
||||
engine.register_static_module("general_kenobi", exported_module!(general_kenobi).into());
|
||||
|
||||
// Custom operators also show up in definitions.
|
||||
engine.register_custom_operator("minus", 100).unwrap();
|
||||
engine.register_fn("minus", |a: i64, b: i64| a - b);
|
||||
|
||||
engine
|
||||
.eval_with_scope::<()>(
|
||||
&mut scope,
|
||||
r#"
|
||||
hello_there = general_kenobi::hello_there(4 minus 2);
|
||||
"#,
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
engine
|
||||
.definitions_with_scope(&scope)
|
||||
.write_to_dir("examples/definitions/.rhai/definitions")
|
||||
.unwrap();
|
||||
}
|
3
examples/definitions/script.rhai
Normal file
3
examples/definitions/script.rhai
Normal file
@@ -0,0 +1,3 @@
|
||||
// The following will be valid based on the definitions.
|
||||
hello_there = general_kenobi::hello_there(123);
|
||||
print(hello_there);
|
Reference in New Issue
Block a user