2024-01-05 01:52:47 +00:00
|
|
|
#[cfg(feature = "lua")]
|
|
|
|
pub mod lua;
|
|
|
|
|
|
|
|
pub mod world;
|
|
|
|
pub use world::*;
|
|
|
|
|
|
|
|
pub mod wrap;
|
|
|
|
pub use wrap::*;
|
|
|
|
|
|
|
|
pub mod host;
|
|
|
|
pub use host::*;
|
|
|
|
|
|
|
|
pub mod script;
|
|
|
|
pub use script::*;
|
|
|
|
|
2024-01-05 04:25:29 +00:00
|
|
|
use lyra_game::game::Game;
|
|
|
|
|
2024-01-05 01:52:47 +00:00
|
|
|
#[allow(unused_imports)]
|
|
|
|
pub(crate) mod lyra_engine {
|
|
|
|
pub use lyra_ecs as ecs;
|
|
|
|
}
|
|
|
|
|
|
|
|
use lyra_reflect::{ReflectedComponent, Reflect};
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub enum ReflectBranch {
|
|
|
|
Component(ReflectedComponent),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ReflectBranch {
|
|
|
|
/// Gets self as a [`ReflectedComponent`].
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
/// If `self` is not a variant of [`ReflectBranch::Component`].
|
|
|
|
pub fn as_component_unchecked(&self) -> &ReflectedComponent {
|
|
|
|
match self {
|
|
|
|
ReflectBranch::Component(c) => c,
|
2024-01-06 20:52:12 +00:00
|
|
|
//_ => panic!("`self` is not an instance of `ReflectBranch::Component`")
|
2024-01-05 01:52:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_component(&self) -> bool {
|
|
|
|
matches!(self, ReflectBranch::Component(_))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct ScriptBorrow {
|
|
|
|
reflect_branch: ReflectBranch,
|
|
|
|
data: Option<Box<dyn Reflect>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for ScriptBorrow {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
let data = self.data.as_ref().map(|b| b.clone_inner());
|
|
|
|
|
|
|
|
Self {
|
|
|
|
reflect_branch: self.reflect_branch.clone(),
|
|
|
|
data,
|
|
|
|
}
|
|
|
|
}
|
2024-01-05 04:25:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// An extension trait that adds some helpful methods that makes it easier to do scripting things
|
|
|
|
pub trait GameScriptExt {
|
|
|
|
fn add_script_api_provider<T, P>(&mut self, provider: P)
|
|
|
|
where
|
|
|
|
T: ScriptHost,
|
|
|
|
P: ScriptApiProvider<ScriptContext = T::ScriptContext> + 'static;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GameScriptExt for Game {
|
|
|
|
fn add_script_api_provider<T, P>(&mut self, provider: P)
|
|
|
|
where
|
|
|
|
T: ScriptHost,
|
|
|
|
P: ScriptApiProvider<ScriptContext = T::ScriptContext> + 'static
|
|
|
|
{
|
|
|
|
let world = self.world();
|
|
|
|
let mut providers = world.get_resource_mut::<ScriptApiProviders<T>>();
|
|
|
|
providers.add_provider(provider);
|
|
|
|
}
|
2024-01-05 01:52:47 +00:00
|
|
|
}
|