Compare commits
8 Commits
2d4a19dd0b
...
22d6087b3c
Author | SHA1 | Date | |
---|---|---|---|
22d6087b3c | |||
ded3cb4700 | |||
a8b29d8fed | |||
3181912bde | |||
70c78b66bd | |||
5997d312cd | |||
fe529c3b0a | |||
14fdcd630e |
@ -17,7 +17,7 @@ pub fn set_globals(lua:&mlua::Lua,globals:&mlua::Table)->Result<(),mlua::Error>{
|
|||||||
instance_table.raw_set("new",
|
instance_table.raw_set("new",
|
||||||
lua.create_function(|lua,(class_name,parent):(mlua::String,Option<Instance>)|{
|
lua.create_function(|lua,(class_name,parent):(mlua::String,Option<Instance>)|{
|
||||||
let class_name_str=&*class_name.to_str()?;
|
let class_name_str=&*class_name.to_str()?;
|
||||||
let parent=parent.ok_or(mlua::Error::runtime("Nil Parent not yet supported"))?;
|
let parent=parent.ok_or_else(||mlua::Error::runtime("Nil Parent not yet supported"))?;
|
||||||
dom_mut(lua,|dom|{
|
dom_mut(lua,|dom|{
|
||||||
//TODO: Nil instances
|
//TODO: Nil instances
|
||||||
Ok(Instance::new(dom.insert(parent.referent,InstanceBuilder::new(class_name_str))))
|
Ok(Instance::new(dom.insert(parent.referent,InstanceBuilder::new(class_name_str))))
|
||||||
@ -32,7 +32,7 @@ pub fn set_globals(lua:&mlua::Lua,globals:&mlua::Table)->Result<(),mlua::Error>{
|
|||||||
|
|
||||||
// LMAO look at this function!
|
// LMAO look at this function!
|
||||||
pub fn dom_mut<T>(lua:&mlua::Lua,mut f:impl FnMut(&mut WeakDom)->mlua::Result<T>)->mlua::Result<T>{
|
pub fn dom_mut<T>(lua:&mlua::Lua,mut f:impl FnMut(&mut WeakDom)->mlua::Result<T>)->mlua::Result<T>{
|
||||||
let mut dom=lua.app_data_mut::<&'static mut WeakDom>().ok_or(mlua::Error::runtime("DataModel missing"))?;
|
let mut dom=lua.app_data_mut::<&'static mut WeakDom>().ok_or_else(||mlua::Error::runtime("DataModel missing"))?;
|
||||||
f(&mut *dom)
|
f(&mut *dom)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -89,10 +89,10 @@ impl Instance{
|
|||||||
Self{referent}
|
Self{referent}
|
||||||
}
|
}
|
||||||
pub fn get<'a>(&self,dom:&'a WeakDom)->mlua::Result<&'a rbx_dom_weak::Instance>{
|
pub fn get<'a>(&self,dom:&'a WeakDom)->mlua::Result<&'a rbx_dom_weak::Instance>{
|
||||||
dom.get_by_ref(self.referent).ok_or(mlua::Error::runtime("Instance missing"))
|
dom.get_by_ref(self.referent).ok_or_else(||mlua::Error::runtime("Instance missing"))
|
||||||
}
|
}
|
||||||
pub fn get_mut<'a>(&self,dom:&'a mut WeakDom)->mlua::Result<&'a mut rbx_dom_weak::Instance>{
|
pub fn get_mut<'a>(&self,dom:&'a mut WeakDom)->mlua::Result<&'a mut rbx_dom_weak::Instance>{
|
||||||
dom.get_by_ref_mut(self.referent).ok_or(mlua::Error::runtime("Instance missing"))
|
dom.get_by_ref_mut(self.referent).ok_or_else(||mlua::Error::runtime("Instance missing"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
type_from_lua_userdata!(Instance);
|
type_from_lua_userdata!(Instance);
|
||||||
@ -125,7 +125,7 @@ impl mlua::UserData for Instance{
|
|||||||
})
|
})
|
||||||
});
|
});
|
||||||
fields.add_field_method_set("Parent",|lua,this,val:Option<Instance>|{
|
fields.add_field_method_set("Parent",|lua,this,val:Option<Instance>|{
|
||||||
let parent=val.ok_or(mlua::Error::runtime("Nil Parent not yet supported"))?;
|
let parent=val.ok_or_else(||mlua::Error::runtime("Nil Parent not yet supported"))?;
|
||||||
dom_mut(lua,|dom|{
|
dom_mut(lua,|dom|{
|
||||||
dom.transfer_within(this.referent,parent.referent);
|
dom.transfer_within(this.referent,parent.referent);
|
||||||
Ok(())
|
Ok(())
|
||||||
@ -231,7 +231,7 @@ impl mlua::UserData for Instance{
|
|||||||
let instance=this.get(dom)?;
|
let instance=this.get(dom)?;
|
||||||
//println!("__index t={} i={index:?}",instance.name);
|
//println!("__index t={} i={index:?}",instance.name);
|
||||||
let db=rbx_reflection_database::get();
|
let db=rbx_reflection_database::get();
|
||||||
let class=db.classes.get(instance.class.as_str()).ok_or(mlua::Error::runtime("Class missing"))?;
|
let class=db.classes.get(instance.class.as_str()).ok_or_else(||mlua::Error::runtime("Class missing"))?;
|
||||||
//Find existing property
|
//Find existing property
|
||||||
match instance.properties.get(index_str)
|
match instance.properties.get(index_str)
|
||||||
.cloned()
|
.cloned()
|
||||||
@ -272,8 +272,8 @@ impl mlua::UserData for Instance{
|
|||||||
})?{
|
})?{
|
||||||
return function.into_lua(lua);
|
return function.into_lua(lua);
|
||||||
}
|
}
|
||||||
//find or create an associated userdata object
|
|
||||||
|
|
||||||
|
//find or create an associated userdata object
|
||||||
if let Some(value)=instance_value_store_mut(lua,|ivs|{
|
if let Some(value)=instance_value_store_mut(lua,|ivs|{
|
||||||
//TODO: walk class tree somehow
|
//TODO: walk class tree somehow
|
||||||
match ivs.get_or_create_instance_values(&instance){
|
match ivs.get_or_create_instance_values(&instance){
|
||||||
@ -295,19 +295,19 @@ impl mlua::UserData for Instance{
|
|||||||
//println!("__newindex t={} i={index:?} v={value:?}",instance.name);
|
//println!("__newindex t={} i={index:?} v={value:?}",instance.name);
|
||||||
let index_str=&*index.to_str()?;
|
let index_str=&*index.to_str()?;
|
||||||
let db=rbx_reflection_database::get();
|
let db=rbx_reflection_database::get();
|
||||||
let class=db.classes.get(instance.class.as_str()).ok_or(mlua::Error::runtime("Class missing"))?;
|
let class=db.classes.get(instance.class.as_str()).ok_or_else(||mlua::Error::runtime("Class missing"))?;
|
||||||
let mut iter=SuperClassIter{
|
let mut iter=SuperClassIter{
|
||||||
database:db,
|
database:db,
|
||||||
descriptor:Some(class),
|
descriptor:Some(class),
|
||||||
};
|
};
|
||||||
let property=iter.find_map(|cls|cls.properties.get(index_str)).ok_or(mlua::Error::runtime(format!("Property '{index_str}' missing on class '{}'",class.name)))?;
|
let property=iter.find_map(|cls|cls.properties.get(index_str)).ok_or_else(||mlua::Error::runtime(format!("Property '{index_str}' missing on class '{}'",class.name)))?;
|
||||||
match &property.data_type{
|
match &property.data_type{
|
||||||
rbx_reflection::DataType::Value(rbx_types::VariantType::Vector3)=>{
|
rbx_reflection::DataType::Value(rbx_types::VariantType::Vector3)=>{
|
||||||
let typed_value:Vector3=*value.as_userdata().ok_or(mlua::Error::runtime("Expected Userdata"))?.borrow()?;
|
let typed_value:Vector3=*value.as_userdata().ok_or_else(||mlua::Error::runtime("Expected Userdata"))?.borrow()?;
|
||||||
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Vector3(typed_value.into()));
|
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Vector3(typed_value.into()));
|
||||||
},
|
},
|
||||||
rbx_reflection::DataType::Value(rbx_types::VariantType::Float32)=>{
|
rbx_reflection::DataType::Value(rbx_types::VariantType::Float32)=>{
|
||||||
let typed_value:f32=coerce_float32(&value).ok_or(mlua::Error::runtime("Expected f32"))?;
|
let typed_value:f32=coerce_float32(&value).ok_or_else(||mlua::Error::runtime("Expected f32"))?;
|
||||||
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Float32(typed_value));
|
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Float32(typed_value));
|
||||||
},
|
},
|
||||||
rbx_reflection::DataType::Enum(enum_name)=>{
|
rbx_reflection::DataType::Enum(enum_name)=>{
|
||||||
@ -315,8 +315,8 @@ impl mlua::UserData for Instance{
|
|||||||
&mlua::Value::Integer(int)=>Ok(rbx_types::Enum::from_u32(int as u32)),
|
&mlua::Value::Integer(int)=>Ok(rbx_types::Enum::from_u32(int as u32)),
|
||||||
&mlua::Value::Number(num)=>Ok(rbx_types::Enum::from_u32(num as u32)),
|
&mlua::Value::Number(num)=>Ok(rbx_types::Enum::from_u32(num as u32)),
|
||||||
mlua::Value::String(s)=>{
|
mlua::Value::String(s)=>{
|
||||||
let e=db.enums.get(enum_name).ok_or(mlua::Error::runtime("Database DataType Enum name does not exist"))?;
|
let e=db.enums.get(enum_name).ok_or_else(||mlua::Error::runtime("Database DataType Enum name does not exist"))?;
|
||||||
Ok(rbx_types::Enum::from_u32(*e.items.get(&*s.to_str()?).ok_or(mlua::Error::runtime("Invalid enum item"))?))
|
Ok(rbx_types::Enum::from_u32(*e.items.get(&*s.to_str()?).ok_or_else(||mlua::Error::runtime("Invalid enum item"))?))
|
||||||
},
|
},
|
||||||
mlua::Value::UserData(any_user_data)=>{
|
mlua::Value::UserData(any_user_data)=>{
|
||||||
let e:crate::runner::r#enum::Enum=*any_user_data.borrow()?;
|
let e:crate::runner::r#enum::Enum=*any_user_data.borrow()?;
|
||||||
@ -327,23 +327,23 @@ impl mlua::UserData for Instance{
|
|||||||
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Enum(typed_value));
|
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Enum(typed_value));
|
||||||
},
|
},
|
||||||
rbx_reflection::DataType::Value(rbx_types::VariantType::Color3)=>{
|
rbx_reflection::DataType::Value(rbx_types::VariantType::Color3)=>{
|
||||||
let typed_value:crate::runner::color3::Color3=*value.as_userdata().ok_or(mlua::Error::runtime("Expected Color3"))?.borrow()?;
|
let typed_value:crate::runner::color3::Color3=*value.as_userdata().ok_or_else(||mlua::Error::runtime("Expected Color3"))?.borrow()?;
|
||||||
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Color3(typed_value.into()));
|
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Color3(typed_value.into()));
|
||||||
},
|
},
|
||||||
rbx_reflection::DataType::Value(rbx_types::VariantType::Bool)=>{
|
rbx_reflection::DataType::Value(rbx_types::VariantType::Bool)=>{
|
||||||
let typed_value=value.as_boolean().ok_or(mlua::Error::runtime("Expected boolean"))?;
|
let typed_value=value.as_boolean().ok_or_else(||mlua::Error::runtime("Expected boolean"))?;
|
||||||
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Bool(typed_value));
|
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::Bool(typed_value));
|
||||||
},
|
},
|
||||||
rbx_reflection::DataType::Value(rbx_types::VariantType::String)=>{
|
rbx_reflection::DataType::Value(rbx_types::VariantType::String)=>{
|
||||||
let typed_value=value.as_str().ok_or(mlua::Error::runtime("Expected boolean"))?;
|
let typed_value=value.as_str().ok_or_else(||mlua::Error::runtime("Expected boolean"))?;
|
||||||
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::String(typed_value.to_owned()));
|
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::String(typed_value.to_owned()));
|
||||||
},
|
},
|
||||||
rbx_reflection::DataType::Value(rbx_types::VariantType::NumberSequence)=>{
|
rbx_reflection::DataType::Value(rbx_types::VariantType::NumberSequence)=>{
|
||||||
let typed_value:crate::runner::number_sequence::NumberSequence=*value.as_userdata().ok_or(mlua::Error::runtime("Expected NumberSequence"))?.borrow()?;
|
let typed_value:crate::runner::number_sequence::NumberSequence=*value.as_userdata().ok_or_else(||mlua::Error::runtime("Expected NumberSequence"))?.borrow()?;
|
||||||
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::NumberSequence(typed_value.into()));
|
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::NumberSequence(typed_value.into()));
|
||||||
},
|
},
|
||||||
rbx_reflection::DataType::Value(rbx_types::VariantType::ColorSequence)=>{
|
rbx_reflection::DataType::Value(rbx_types::VariantType::ColorSequence)=>{
|
||||||
let typed_value:crate::runner::color_sequence::ColorSequence=*value.as_userdata().ok_or(mlua::Error::runtime("Expected ColorSequence"))?.borrow()?;
|
let typed_value:crate::runner::color_sequence::ColorSequence=*value.as_userdata().ok_or_else(||mlua::Error::runtime("Expected ColorSequence"))?.borrow()?;
|
||||||
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::ColorSequence(typed_value.into()));
|
instance.properties.insert(index_str.to_owned(),rbx_types::Variant::ColorSequence(typed_value.into()));
|
||||||
},
|
},
|
||||||
other=>return Err(mlua::Error::runtime(format!("Unimplemented property type: {other:?}"))),
|
other=>return Err(mlua::Error::runtime(format!("Unimplemented property type: {other:?}"))),
|
||||||
@ -443,7 +443,7 @@ impl ClassMethods<'_>{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn class_methods_store_mut<T>(lua:&mlua::Lua,mut f:impl FnMut(&mut ClassMethodsStore)->mlua::Result<T>)->mlua::Result<T>{
|
fn class_methods_store_mut<T>(lua:&mlua::Lua,mut f:impl FnMut(&mut ClassMethodsStore)->mlua::Result<T>)->mlua::Result<T>{
|
||||||
let mut cf=lua.app_data_mut::<ClassMethodsStore>().ok_or(mlua::Error::runtime("ClassMethodsStore missing"))?;
|
let mut cf=lua.app_data_mut::<ClassMethodsStore>().ok_or_else(||mlua::Error::runtime("ClassMethodsStore missing"))?;
|
||||||
f(&mut *cf)
|
f(&mut *cf)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -552,6 +552,6 @@ impl InstanceValues<'_>{
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn instance_value_store_mut<T>(lua:&mlua::Lua,mut f:impl FnMut(&mut InstanceValueStore)->mlua::Result<T>)->mlua::Result<T>{
|
pub fn instance_value_store_mut<T>(lua:&mlua::Lua,mut f:impl FnMut(&mut InstanceValueStore)->mlua::Result<T>)->mlua::Result<T>{
|
||||||
let mut cf=lua.app_data_mut::<InstanceValueStore>().ok_or(mlua::Error::runtime("InstanceValueStore missing"))?;
|
let mut cf=lua.app_data_mut::<InstanceValueStore>().ok_or_else(||mlua::Error::runtime("InstanceValueStore missing"))?;
|
||||||
f(&mut *cf)
|
f(&mut *cf)
|
||||||
}
|
}
|
||||||
|
@ -128,7 +128,7 @@ impl Runnable<'_>{
|
|||||||
let run_service=super::instance::instance::find_first_child_of_class(dom,dom.root(),"RunService").ok_or_else(||mlua::Error::runtime("RunService missing"))?;
|
let run_service=super::instance::instance::find_first_child_of_class(dom,dom.root(),"RunService").ok_or_else(||mlua::Error::runtime("RunService missing"))?;
|
||||||
super::instance::instance::instance_value_store_mut(&self.lua,|instance_value_store|{
|
super::instance::instance::instance_value_store_mut(&self.lua,|instance_value_store|{
|
||||||
//unwrap because I trust my find_first_child_of_class function to
|
//unwrap because I trust my find_first_child_of_class function to
|
||||||
let mut instance_values=instance_value_store.get_or_create_instance_values(run_service).unwrap();
|
let mut instance_values=instance_value_store.get_or_create_instance_values(run_service).ok_or_else(||mlua::Error::runtime("RunService InstanceValues missing"))?;
|
||||||
let render_stepped=instance_values.get_or_create_value(&self.lua,"RenderStepped")?;
|
let render_stepped=instance_values.get_or_create_value(&self.lua,"RenderStepped")?;
|
||||||
//let stepped=instance_values.get_or_create_value(&self.lua,"Stepped")?;
|
//let stepped=instance_values.get_or_create_value(&self.lua,"Stepped")?;
|
||||||
//let heartbeat=instance_values.get_or_create_value(&self.lua,"Heartbeat")?;
|
//let heartbeat=instance_values.get_or_create_value(&self.lua,"Heartbeat")?;
|
||||||
|
@ -1,44 +1,96 @@
|
|||||||
use std::{cell::RefCell,rc::Rc};
|
use std::{cell::RefCell,rc::Rc};
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct ScriptSignal{
|
struct FunctionList{
|
||||||
// Emulate the garbage roblox api.
|
functions:Vec<mlua::Function>,
|
||||||
// ScriptConnection should not exist.
|
|
||||||
// :Disconnect should be a method on ScriptSignal, and this would be avoided entirely.
|
|
||||||
callbacks:Rc<RefCell<Vec<mlua::Function>>>,
|
|
||||||
}
|
}
|
||||||
pub struct ScriptConnection{
|
impl FunctionList{
|
||||||
signal:ScriptSignal,
|
|
||||||
function:mlua::Function,
|
|
||||||
}
|
|
||||||
impl ScriptSignal{
|
|
||||||
pub fn new()->Self{
|
pub fn new()->Self{
|
||||||
Self{
|
Self{
|
||||||
callbacks:Rc::new(RefCell::new(Vec::new())),
|
functions:Vec::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// This eats the Lua error
|
// This eats the Lua error
|
||||||
pub fn fire(&self,args:mlua::MultiValue){
|
pub fn fire(self,args:&mlua::MultiValue){
|
||||||
// Make a copy of the list in case Lua attempts to modify it during the loop
|
// Make a copy of the list in case Lua attempts to modify it during the loop
|
||||||
let functions=self.callbacks.borrow().clone();
|
for function in self.functions{
|
||||||
for function in functions{
|
|
||||||
//wee let's allocate for our function calls
|
//wee let's allocate for our function calls
|
||||||
if let Err(e)=function.call::<mlua::MultiValue>(args.clone()){
|
if let Err(e)=function.call::<mlua::MultiValue>(args.clone()){
|
||||||
println!("Script Signal Error: {e}");
|
println!("Script Signal Error: {e}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
#[derive(Clone)]
|
||||||
|
struct RcFunctionList{
|
||||||
|
functions:Rc<RefCell<FunctionList>>,
|
||||||
|
}
|
||||||
|
impl RcFunctionList{
|
||||||
|
pub fn new()->Self{
|
||||||
|
Self{
|
||||||
|
functions:Rc::new(RefCell::new(FunctionList::new())),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pub fn fire(&self,args:&mlua::MultiValue){
|
||||||
|
// Make a copy of the list in case Lua attempts to modify it during the loop
|
||||||
|
self.functions.borrow().clone().fire(args)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct ScriptSignal{
|
||||||
|
// Emulate the garbage roblox api.
|
||||||
|
// ScriptConnection should not exist.
|
||||||
|
// :Disconnect should be a method on ScriptSignal, and this would be avoided entirely.
|
||||||
|
callbacks:RcFunctionList,
|
||||||
|
once:RcFunctionList,
|
||||||
|
wait:Rc<RefCell<Vec<mlua::Thread>>>,
|
||||||
|
}
|
||||||
|
pub struct ScriptConnection{
|
||||||
|
connection:RcFunctionList,
|
||||||
|
function:mlua::Function,
|
||||||
|
}
|
||||||
|
impl ScriptSignal{
|
||||||
|
pub fn new()->Self{
|
||||||
|
Self{
|
||||||
|
callbacks:RcFunctionList::new(),
|
||||||
|
once:RcFunctionList::new(),
|
||||||
|
wait:Rc::new(RefCell::new(Vec::new())),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pub fn fire(&self,args:&mlua::MultiValue){
|
||||||
|
self.callbacks.fire(args);
|
||||||
|
//Replace the FunctionList with an empty one and drop the borrow
|
||||||
|
let once=std::mem::replace(&mut *self.once.functions.borrow_mut(),FunctionList::new());
|
||||||
|
once.fire(args);
|
||||||
|
//resume threads waiting for this signal
|
||||||
|
let threads=std::mem::replace(&mut *self.wait.borrow_mut(),Vec::new());
|
||||||
|
for thread in threads{
|
||||||
|
if let Err(e)=thread.resume::<mlua::MultiValue>(args.clone()){
|
||||||
|
println!("Script Signal thread resume Error: {e}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
pub fn connect(&self,function:mlua::Function)->ScriptConnection{
|
pub fn connect(&self,function:mlua::Function)->ScriptConnection{
|
||||||
self.callbacks.borrow_mut().push(function.clone());
|
self.callbacks.functions.borrow_mut().functions.push(function.clone());
|
||||||
ScriptConnection{
|
ScriptConnection{
|
||||||
signal:self.clone(),
|
connection:self.callbacks.clone(),
|
||||||
function,
|
function,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
pub fn once(&self,function:mlua::Function)->ScriptConnection{
|
||||||
|
self.once.functions.borrow_mut().functions.push(function.clone());
|
||||||
|
ScriptConnection{
|
||||||
|
connection:self.once.clone(),
|
||||||
|
function,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pub fn wait(&self,thread:mlua::Thread){
|
||||||
|
self.wait.borrow_mut().push(thread);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
impl ScriptConnection{
|
impl ScriptConnection{
|
||||||
pub fn position(&self)->Option<usize>{
|
pub fn position(&self)->Option<usize>{
|
||||||
self.signal.callbacks.borrow().iter().position(|function|function==&self.function)
|
self.connection.functions.borrow().functions.iter().position(|function|function==&self.function)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -47,6 +99,13 @@ impl mlua::UserData for ScriptSignal{
|
|||||||
methods.add_method("Connect",|_lua,this,f:mlua::Function|
|
methods.add_method("Connect",|_lua,this,f:mlua::Function|
|
||||||
Ok(this.connect(f))
|
Ok(this.connect(f))
|
||||||
);
|
);
|
||||||
|
methods.add_method("Once",|_lua,this,f:mlua::Function|
|
||||||
|
Ok(this.once(f))
|
||||||
|
);
|
||||||
|
methods.add_method("Wait",|lua,this,()|
|
||||||
|
Ok(this.wait(lua.current_thread()))
|
||||||
|
todo!("coroutine.yield");
|
||||||
|
);
|
||||||
// Fire is not allowed to be called from Lua
|
// Fire is not allowed to be called from Lua
|
||||||
// methods.add_method("Fire",|_lua,this,args:mlua::MultiValue|
|
// methods.add_method("Fire",|_lua,this,args:mlua::MultiValue|
|
||||||
// Ok(this.fire(args))
|
// Ok(this.fire(args))
|
||||||
@ -71,7 +130,7 @@ impl mlua::UserData for ScriptConnection{
|
|||||||
fn add_methods<M:mlua::UserDataMethods<Self>>(methods:&mut M){
|
fn add_methods<M:mlua::UserDataMethods<Self>>(methods:&mut M){
|
||||||
methods.add_method("Disconnect",|_,this,_:()|{
|
methods.add_method("Disconnect",|_,this,_:()|{
|
||||||
if let Some(index)=this.position(){
|
if let Some(index)=this.position(){
|
||||||
this.signal.callbacks.borrow_mut().remove(index);
|
this.connection.functions.borrow_mut().functions.remove(index);
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
});
|
});
|
||||||
|
@ -58,7 +58,7 @@ impl Scheduler{
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn scheduler_mut<T>(lua:&mlua::Lua,mut f:impl FnMut(&mut crate::scheduler::Scheduler)->mlua::Result<T>)->mlua::Result<T>{
|
pub fn scheduler_mut<T>(lua:&mlua::Lua,mut f:impl FnMut(&mut crate::scheduler::Scheduler)->mlua::Result<T>)->mlua::Result<T>{
|
||||||
let mut scheduler=lua.app_data_mut::<crate::scheduler::Scheduler>().ok_or(mlua::Error::runtime("Scheduler missing"))?;
|
let mut scheduler=lua.app_data_mut::<crate::scheduler::Scheduler>().ok_or_else(||mlua::Error::runtime("Scheduler missing"))?;
|
||||||
f(&mut *scheduler)
|
f(&mut *scheduler)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user