veloren/plugin/rt/src/lib.rs

54 lines
1.4 KiB
Rust
Raw Normal View History

#![feature(const_fn)]
2020-12-12 15:02:58 +00:00
pub extern crate plugin_derive;
2020-12-12 13:01:54 +00:00
pub use plugin_api as api;
pub use plugin_derive::*;
use serde::{de::DeserializeOwned, Serialize};
#[cfg(target_arch = "wasm32")]
extern "C" {
2020-12-12 19:26:42 +00:00
fn raw_emit_actions(ptr: *const u8, len: usize);
}
pub fn emit_action(action: api::Action) { emit_actions(vec![action]) }
2020-12-12 19:26:42 +00:00
pub fn emit_actions(_actions: Vec<api::Action>) {
#[cfg(target_arch = "wasm32")]
{
let ret = bincode::serialize(&_actions).expect("Can't serialize action in emit");
unsafe {
raw_emit_actions(ret.as_ptr(), ret.len());
}
}
}
pub fn read_input<T>(ptr: i32, len: u32) -> Result<T, &'static str>
where
T: DeserializeOwned,
{
let slice = unsafe { ::std::slice::from_raw_parts(ptr as _, len as _) };
bincode::deserialize(slice).map_err(|_| "Failed to deserialize function input")
}
pub fn write_output(value: impl Serialize) -> i32 {
2020-12-14 16:07:05 +00:00
let ret = bincode::serialize(&value).expect("Can't serialize event output");
let len = ret.len() as u32;
unsafe {
::std::ptr::write(1 as _, len);
}
ret.as_ptr() as _
2020-12-12 13:01:54 +00:00
}
2020-12-14 16:07:05 +00:00
static mut BUFFERS: Vec<u8> = Vec::new();
/// Allocate buffer from wasm linear memory
2020-12-14 17:22:03 +00:00
/// # Safety
/// This function should never be used only intented to by used by the host
2020-12-14 16:07:05 +00:00
#[no_mangle]
2020-12-14 16:43:32 +00:00
pub unsafe fn wasm_prepare_buffer(size: i32) -> i32 {
2020-12-14 20:48:37 +00:00
BUFFERS = vec![0u8; size as usize];
2020-12-14 16:43:32 +00:00
BUFFERS.as_ptr() as i32
2020-12-14 16:07:05 +00:00
}