2023-10-22 08:08:45 -05:00
|
|
|
use {
|
2023-10-27 20:29:02 -05:00
|
|
|
crate::SharedObject,
|
|
|
|
rhai::{Engine, ImmutableString, Module},
|
2023-10-22 08:08:45 -05:00
|
|
|
};
|
|
|
|
|
2024-02-03 20:08:20 -06:00
|
|
|
macro_rules! shdm_fns {
|
|
|
|
(
|
|
|
|
module: $module:expr;
|
|
|
|
shared: $shared:expr => $shname:ident;
|
|
|
|
|
|
|
|
$(
|
|
|
|
$vis:ident fn $name:ident($($params:tt)*) $(-> $ret:ty)? $blk:block
|
|
|
|
)*
|
|
|
|
) => {{
|
|
|
|
let module = $module;
|
|
|
|
let shared = $shared;
|
|
|
|
$({
|
|
|
|
let $shname = SharedObject::clone(&shared);
|
|
|
|
let hash = module.set_native_fn(
|
|
|
|
stringify!($name),
|
|
|
|
move |$($params)*| $(-> $ret)? {
|
|
|
|
let mut $shname = $shname.borrow_mut();
|
|
|
|
$blk
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
module.update_fn_namespace(
|
|
|
|
hash,
|
|
|
|
paste::paste!(rhai::FnNamespace::[<$vis:camel>])
|
|
|
|
);
|
|
|
|
})*
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2023-10-27 20:29:02 -05:00
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
|
|
pub struct UnboundLabel(pub usize);
|
|
|
|
|
|
|
|
pub fn setup(engine: &mut Engine, module: &mut Module, object: SharedObject) {
|
2024-02-03 20:08:20 -06:00
|
|
|
shdm_fns! {
|
|
|
|
module: module;
|
|
|
|
shared: object => obj;
|
|
|
|
|
|
|
|
global fn label() {
|
2023-10-27 20:29:02 -05:00
|
|
|
let symbol = obj.symbol(crate::object::Section::Text);
|
|
|
|
Ok(symbol)
|
2024-02-03 20:08:20 -06:00
|
|
|
}
|
2023-10-27 20:29:02 -05:00
|
|
|
|
2024-02-03 20:08:20 -06:00
|
|
|
global fn label(label: ImmutableString) {
|
2023-10-27 20:29:02 -05:00
|
|
|
let symbol = obj.symbol(crate::object::Section::Text);
|
|
|
|
obj.labels.insert(label, symbol.0);
|
|
|
|
|
|
|
|
Ok(symbol)
|
2024-02-03 20:08:20 -06:00
|
|
|
}
|
2023-10-27 20:29:02 -05:00
|
|
|
|
2024-02-03 20:08:20 -06:00
|
|
|
global fn declabel() {
|
2023-10-27 20:29:02 -05:00
|
|
|
let index = obj.symbols.len();
|
|
|
|
obj.symbols.push(None);
|
|
|
|
|
|
|
|
Ok(UnboundLabel(index))
|
2024-02-03 20:08:20 -06:00
|
|
|
}
|
2023-10-27 20:29:02 -05:00
|
|
|
|
2024-02-03 20:08:20 -06:00
|
|
|
global fn declabel(label: ImmutableString) {
|
2023-10-27 20:29:02 -05:00
|
|
|
let index = obj.symbols.len();
|
|
|
|
obj.symbols.push(None);
|
|
|
|
obj.labels.insert(label, index);
|
|
|
|
|
|
|
|
Ok(UnboundLabel(index))
|
2024-02-03 20:08:20 -06:00
|
|
|
}
|
2023-10-27 20:29:02 -05:00
|
|
|
|
2024-02-03 20:08:20 -06:00
|
|
|
global fn here(label: UnboundLabel) {
|
2023-10-27 20:29:02 -05:00
|
|
|
obj.symbols[label.0] = Some(crate::object::SymbolEntry {
|
|
|
|
location: crate::object::Section::Text,
|
|
|
|
offset: obj.sections.text.len(),
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(())
|
2024-02-03 20:08:20 -06:00
|
|
|
}
|
2023-10-27 20:29:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
engine.register_type_with_name::<UnboundLabel>("UnboundLabel");
|
2023-10-22 08:08:45 -05:00
|
|
|
}
|