mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-04 10:30:56 +01:00
33 lines
761 B
Rust
33 lines
761 B
Rust
use smol_mlua::{
|
|
mlua::prelude::{Lua, LuaResult},
|
|
Callbacks, Runtime,
|
|
};
|
|
|
|
const MAIN_SCRIPT: &str = include_str!("./lua/callbacks.luau");
|
|
|
|
pub fn main() -> LuaResult<()> {
|
|
// Set up persistent lua environment
|
|
let lua = Lua::new();
|
|
|
|
// Create a new runtime with custom callbacks
|
|
let rt = Runtime::new(&lua)?;
|
|
rt.set_callbacks(Callbacks::default().on_error(|_, _, e| {
|
|
println!(
|
|
"Captured error from Lua!\n{}\n{e}\n{}",
|
|
"-".repeat(15),
|
|
"-".repeat(15)
|
|
);
|
|
}));
|
|
|
|
// Load and run the main script until completion
|
|
let main = lua.load(MAIN_SCRIPT);
|
|
rt.push_thread(main, ());
|
|
rt.run_blocking();
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn test_callbacks() -> LuaResult<()> {
|
|
main()
|
|
}
|