Add with_iterator to TypeBuilder.
This commit is contained in:
parent
f323644e20
commit
8408c190dc
@ -32,6 +32,15 @@ fn main() -> Result<(), Box<EvalAltResult>> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl IntoIterator for TestStruct {
|
||||||
|
type Item = i64;
|
||||||
|
type IntoIter = std::vec::IntoIter<Self::Item>;
|
||||||
|
|
||||||
|
fn into_iter(self) -> Self::IntoIter {
|
||||||
|
vec![self.x - 1, self.x, self.x + 1].into_iter()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl CustomType for TestStruct {
|
impl CustomType for TestStruct {
|
||||||
fn build(mut builder: TypeBuilder<Self>) {
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
#[allow(deprecated)] // The TypeBuilder api is volatile.
|
#[allow(deprecated)] // The TypeBuilder api is volatile.
|
||||||
@ -40,6 +49,7 @@ fn main() -> Result<(), Box<EvalAltResult>> {
|
|||||||
.with_fn("new_ts", Self::new)
|
.with_fn("new_ts", Self::new)
|
||||||
.with_fn("update", Self::update)
|
.with_fn("update", Self::update)
|
||||||
.with_fn("calc", Self::calculate)
|
.with_fn("calc", Self::calculate)
|
||||||
|
.with_iterator()
|
||||||
.with_get_set("x", Self::get_x, Self::set_x);
|
.with_get_set("x", Self::get_x, Self::set_x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -63,8 +73,16 @@ fn main() -> Result<(), Box<EvalAltResult>> {
|
|||||||
let result = engine.eval::<i64>(
|
let result = engine.eval::<i64>(
|
||||||
"
|
"
|
||||||
let x = new_ts();
|
let x = new_ts();
|
||||||
|
|
||||||
x.x = 42;
|
x.x = 42;
|
||||||
|
|
||||||
|
for n in x {
|
||||||
|
x.x += n;
|
||||||
|
print(`n = ${n}, total = ${x.x}`);
|
||||||
|
}
|
||||||
|
|
||||||
x.update();
|
x.update();
|
||||||
|
|
||||||
x.calc(x.x)
|
x.calc(x.x)
|
||||||
",
|
",
|
||||||
)?;
|
)?;
|
||||||
|
@ -1,17 +1,18 @@
|
|||||||
//! Trait to build a custom type for use with [`Engine`].
|
//! Trait to build a custom type for use with [`Engine`].
|
||||||
#![allow(deprecated)]
|
#![allow(deprecated)]
|
||||||
|
|
||||||
use crate::{
|
use crate::{types::dynamic::Variant, Engine, Identifier, RegisterNativeFunction, RhaiResultOf};
|
||||||
func::SendSync, types::dynamic::Variant, Engine, Identifier, RegisterNativeFunction,
|
|
||||||
RhaiResultOf,
|
|
||||||
};
|
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
#[cfg(feature = "no_std")]
|
#[cfg(feature = "no_std")]
|
||||||
use std::prelude::v1::*;
|
use std::prelude::v1::*;
|
||||||
|
|
||||||
/// Trait to build a custom type for use with an [`Engine`]
|
/// Trait to build the API of a custom type for use with an [`Engine`]
|
||||||
/// (i.e. register the type and its getters, setters, methods, etc.).
|
/// (i.e. register the type and its getters, setters, methods, etc.).
|
||||||
///
|
///
|
||||||
|
/// # WARNING - Volatile Trait
|
||||||
|
///
|
||||||
|
/// This API is volatile and may change in the future.
|
||||||
|
///
|
||||||
/// # Example
|
/// # Example
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
@ -71,9 +72,13 @@ pub trait CustomType: Variant + Clone {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Engine {
|
impl Engine {
|
||||||
/// Build a custom type for use with the [`Engine`].
|
/// Build the API of a custom type for use with the [`Engine`].
|
||||||
///
|
///
|
||||||
/// The custom type must implement [`CustomType`].
|
/// The custom type must implement [`CustomType`].
|
||||||
|
///
|
||||||
|
/// # WARNING - Unstable API
|
||||||
|
///
|
||||||
|
/// This API is volatile and may change in the future.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn build_type<T: CustomType>(&mut self) -> &mut Self {
|
pub fn build_type<T: CustomType>(&mut self) -> &mut Self {
|
||||||
T::build(TypeBuilder::new(self));
|
T::build(TypeBuilder::new(self));
|
||||||
@ -81,15 +86,15 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Builder to build a custom type for use with an [`Engine`].
|
/// Builder to build the API of a custom type for use with an [`Engine`].
|
||||||
///
|
///
|
||||||
/// The type is automatically registered when this builder is dropped.
|
/// The type is automatically registered when this builder is dropped.
|
||||||
///
|
///
|
||||||
/// ## Pretty name
|
/// ## Pretty-Print Name
|
||||||
///
|
///
|
||||||
/// By default the type is registered with [`Engine::register_type`] (i.e. without a pretty name).
|
/// By default the type is registered with [`Engine::register_type`] (i.e. without a pretty-print name).
|
||||||
///
|
///
|
||||||
/// To define a pretty name, call [`with_name`][`TypeBuilder::with_name`],
|
/// To define a pretty-print name, call [`with_name`][`TypeBuilder::with_name`],
|
||||||
/// to use [`Engine::register_type_with_name`] instead.
|
/// to use [`Engine::register_type_with_name`] instead.
|
||||||
#[deprecated = "This type is NOT deprecated, but it is considered volatile and may change in the future."]
|
#[deprecated = "This type is NOT deprecated, but it is considered volatile and may change in the future."]
|
||||||
pub struct TypeBuilder<'a, T: Variant + Clone> {
|
pub struct TypeBuilder<'a, T: Variant + Clone> {
|
||||||
@ -99,6 +104,7 @@ pub struct TypeBuilder<'a, T: Variant + Clone> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
||||||
|
/// Create a [`TypeBuilder`] linked to a particular [`Engine`] instance.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
fn new(engine: &'a mut Engine) -> Self {
|
fn new(engine: &'a mut Engine) -> Self {
|
||||||
Self {
|
Self {
|
||||||
@ -110,7 +116,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
||||||
/// Sets a pretty-print name for the `type_of` function.
|
/// Set a pretty-print name for the `type_of` function.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn with_name(&mut self, name: &'static str) -> &mut Self {
|
pub fn with_name(&mut self, name: &'static str) -> &mut Self {
|
||||||
self.name = Some(name);
|
self.name = Some(name);
|
||||||
@ -140,6 +146,20 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<'a, T> TypeBuilder<'a, T>
|
||||||
|
where
|
||||||
|
T: Variant + Clone + IntoIterator,
|
||||||
|
<T as IntoIterator>::Item: Variant + Clone,
|
||||||
|
{
|
||||||
|
/// Register a type iterator.
|
||||||
|
/// This is an advanced API.
|
||||||
|
#[inline(always)]
|
||||||
|
pub fn with_iterator(&mut self) -> &mut Self {
|
||||||
|
self.engine.register_iterator::<T>();
|
||||||
|
self
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "no_object"))]
|
#[cfg(not(feature = "no_object"))]
|
||||||
impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
||||||
/// Register a getter function.
|
/// Register a getter function.
|
||||||
@ -151,7 +171,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
pub fn with_get<V: Variant + Clone>(
|
pub fn with_get<V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
name: impl AsRef<str>,
|
name: impl AsRef<str>,
|
||||||
get_fn: impl Fn(&mut T) -> V + SendSync + 'static,
|
get_fn: impl Fn(&mut T) -> V + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_get(name, get_fn);
|
self.engine.register_get(name, get_fn);
|
||||||
self
|
self
|
||||||
@ -166,7 +186,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
pub fn with_get_result<V: Variant + Clone>(
|
pub fn with_get_result<V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
name: impl AsRef<str>,
|
name: impl AsRef<str>,
|
||||||
get_fn: impl Fn(&mut T) -> RhaiResultOf<V> + SendSync + 'static,
|
get_fn: impl Fn(&mut T) -> RhaiResultOf<V> + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_get_result(name, get_fn);
|
self.engine.register_get_result(name, get_fn);
|
||||||
self
|
self
|
||||||
@ -179,7 +199,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
pub fn with_set<V: Variant + Clone>(
|
pub fn with_set<V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
name: impl AsRef<str>,
|
name: impl AsRef<str>,
|
||||||
set_fn: impl Fn(&mut T, V) + SendSync + 'static,
|
set_fn: impl Fn(&mut T, V) + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_set(name, set_fn);
|
self.engine.register_set(name, set_fn);
|
||||||
self
|
self
|
||||||
@ -192,7 +212,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
pub fn with_set_result<V: Variant + Clone>(
|
pub fn with_set_result<V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
name: impl AsRef<str>,
|
name: impl AsRef<str>,
|
||||||
set_fn: impl Fn(&mut T, V) -> RhaiResultOf<()> + SendSync + 'static,
|
set_fn: impl Fn(&mut T, V) -> RhaiResultOf<()> + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_set_result(name, set_fn);
|
self.engine.register_set_result(name, set_fn);
|
||||||
self
|
self
|
||||||
@ -207,8 +227,8 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
pub fn with_get_set<V: Variant + Clone>(
|
pub fn with_get_set<V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
name: impl AsRef<str>,
|
name: impl AsRef<str>,
|
||||||
get_fn: impl Fn(&mut T) -> V + SendSync + 'static,
|
get_fn: impl Fn(&mut T) -> V + crate::func::SendSync + 'static,
|
||||||
set_fn: impl Fn(&mut T, V) + SendSync + 'static,
|
set_fn: impl Fn(&mut T, V) + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_get_set(name, get_fn, set_fn);
|
self.engine.register_get_set(name, get_fn, set_fn);
|
||||||
self
|
self
|
||||||
@ -225,7 +245,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn with_indexer_get<X: Variant + Clone, V: Variant + Clone>(
|
pub fn with_indexer_get<X: Variant + Clone, V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
get_fn: impl Fn(&mut T, X) -> V + SendSync + 'static,
|
get_fn: impl Fn(&mut T, X) -> V + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_indexer_get(get_fn);
|
self.engine.register_indexer_get(get_fn);
|
||||||
self
|
self
|
||||||
@ -239,7 +259,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn with_indexer_get_result<X: Variant + Clone, V: Variant + Clone>(
|
pub fn with_indexer_get_result<X: Variant + Clone, V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
get_fn: impl Fn(&mut T, X) -> RhaiResultOf<V> + SendSync + 'static,
|
get_fn: impl Fn(&mut T, X) -> RhaiResultOf<V> + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_indexer_get_result(get_fn);
|
self.engine.register_indexer_get_result(get_fn);
|
||||||
self
|
self
|
||||||
@ -251,7 +271,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn with_indexer_set<X: Variant + Clone, V: Variant + Clone>(
|
pub fn with_indexer_set<X: Variant + Clone, V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
set_fn: impl Fn(&mut T, X, V) + SendSync + 'static,
|
set_fn: impl Fn(&mut T, X, V) + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_indexer_set(set_fn);
|
self.engine.register_indexer_set(set_fn);
|
||||||
self
|
self
|
||||||
@ -263,7 +283,7 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn with_indexer_set_result<X: Variant + Clone, V: Variant + Clone>(
|
pub fn with_indexer_set_result<X: Variant + Clone, V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
set_fn: impl Fn(&mut T, X, V) -> RhaiResultOf<()> + SendSync + 'static,
|
set_fn: impl Fn(&mut T, X, V) -> RhaiResultOf<()> + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_indexer_set_result(set_fn);
|
self.engine.register_indexer_set_result(set_fn);
|
||||||
self
|
self
|
||||||
@ -275,8 +295,8 @@ impl<'a, T: Variant + Clone> TypeBuilder<'a, T> {
|
|||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn with_indexer_get_set<X: Variant + Clone, V: Variant + Clone>(
|
pub fn with_indexer_get_set<X: Variant + Clone, V: Variant + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
get_fn: impl Fn(&mut T, X) -> V + SendSync + 'static,
|
get_fn: impl Fn(&mut T, X) -> V + crate::func::SendSync + 'static,
|
||||||
set_fn: impl Fn(&mut T, X, V) + SendSync + 'static,
|
set_fn: impl Fn(&mut T, X, V) + crate::func::SendSync + 'static,
|
||||||
) -> &mut Self {
|
) -> &mut Self {
|
||||||
self.engine.register_indexer_get_set(get_fn, set_fn);
|
self.engine.register_indexer_get_set(get_fn, set_fn);
|
||||||
self
|
self
|
||||||
|
@ -45,11 +45,21 @@ fn build_type() -> Result<(), Box<EvalAltResult>> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl IntoIterator for Vec3 {
|
||||||
|
type Item = INT;
|
||||||
|
type IntoIter = std::vec::IntoIter<Self::Item>;
|
||||||
|
|
||||||
|
fn into_iter(self) -> Self::IntoIter {
|
||||||
|
vec![self.x, self.y, self.z].into_iter()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl CustomType for Vec3 {
|
impl CustomType for Vec3 {
|
||||||
fn build(mut builder: TypeBuilder<Self>) {
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
builder
|
builder
|
||||||
.with_name("Vec3")
|
.with_name("Vec3")
|
||||||
.with_fn("vec3", Self::new)
|
.with_fn("vec3", Self::new)
|
||||||
|
.with_iterator()
|
||||||
.with_get_set("x", Self::get_x, Self::set_x)
|
.with_get_set("x", Self::get_x, Self::set_x)
|
||||||
.with_get_set("y", Self::get_y, Self::set_y)
|
.with_get_set("y", Self::get_y, Self::set_y)
|
||||||
.with_get_set("z", Self::get_z, Self::set_z);
|
.with_get_set("z", Self::get_z, Self::set_z);
|
||||||
|
Loading…
Reference in New Issue
Block a user