[−][src]Struct amethyst::GameDataBuilder
Builder for default game data
Methods
impl<'a, 'b> GameDataBuilder<'a, 'b>
[src]
pub fn new() -> Self
[src]
Create new builder
pub fn with_barrier(self) -> Self
[src]
Inserts a barrier which assures that all systems added before the barrier are executed before the ones after this barrier.
Does nothing if there were no systems added since the last call to
with_barrier()
. Thread-local systems are not affected by barriers;
they're always executed at the end.
Returns
This function returns GameDataBuilder after it has modified it.
Examples
use amethyst::derive::SystemDesc; use amethyst::core::SystemDesc; use amethyst::prelude::*; use amethyst::ecs::prelude::{System, SystemData, World}; #[derive(SystemDesc)] struct NopSystem; impl<'a> System<'a> for NopSystem { type SystemData = (); fn run(&mut self, (): Self::SystemData) {} } // Three systems are added in this example. The "tabby cat" & "tom cat" // systems will both run in parallel. Only after both cat systems have // run is the "doggo" system permitted to run them. GameDataBuilder::default() .with(NopSystem, "tabby cat", &[]) .with(NopSystem, "tom cat", &[]) .with_barrier() .with(NopSystem, "doggo", &[]);
pub fn with<S, N>(self, system: S, name: N, dependencies: &[N]) -> Self where
S: for<'c> System<'c> + 'static + Send,
N: Into<String> + Clone,
[src]
S: for<'c> System<'c> + 'static + Send,
N: Into<String> + Clone,
Adds a given system.
Note: all dependencies must be added before you add the system.
Parameters
system
: The system that is to be added to the game loop.name
: A unique string to identify the system by. This is used for dependency tracking. This name may be empty""
string in which case it cannot be referenced as a dependency.dependencies
: A list of named system that must have completed running before this system is permitted to run. This may be an empty list if there is no dependencies.
Returns
This function returns GameDataBuilder after it has modified it.
Type Parameters
S
: A type that implements theSystem
trait.
Panics
If two system are added that share an identical name, this function will panic. Empty names are permitted, and this function will not panic if more then two are added.
If a dependency is referenced (by name), but has not previously been added this function will panic.
Examples
use amethyst::core::SystemDesc; use amethyst::derive::SystemDesc; use amethyst::prelude::*; use amethyst::ecs::prelude::{System, SystemData, World}; #[derive(SystemDesc)] struct NopSystem; impl<'a> System<'a> for NopSystem { type SystemData = (); fn run(&mut self, _: Self::SystemData) {} } GameDataBuilder::default() // This will add the "foo" system to the game loop, in this case // the "foo" system will not depend on any systems. .with(NopSystem, "foo", &[]) // The "bar" system will only run after the "foo" system has completed .with(NopSystem, "bar", &["foo"]) // It is legal to register a system with an empty name .with(NopSystem, "", &[]);
pub fn with_system_desc<SD, S, N>(
self,
system_desc: SD,
name: N,
dependencies: &[N]
) -> Self where
SD: SystemDesc<'a, 'b, S> + 'static,
S: for<'c> System<'c> + 'static + Send,
N: Into<String> + Clone,
[src]
self,
system_desc: SD,
name: N,
dependencies: &[N]
) -> Self where
SD: SystemDesc<'a, 'b, S> + 'static,
S: for<'c> System<'c> + 'static + Send,
N: Into<String> + Clone,
Adds a system descriptor.
This differs from the [with
] System call by deferring instantiation of the System
to
when the dispatcher is built. This allows system instatiation to access resources in the
World
if necessary.
Note: all dependencies must be added before you add the system.
Parameters
system_desc
: The system that is to be added to the game loop.name
: A unique string to identify the system by. This is used for dependency tracking. This name may be empty""
string in which case it cannot be referenced as a dependency.dependencies
: A list of named system that must have completed running before this system is permitted to run. This may be an empty list if there is no dependencies.
Returns
This function returns GameDataBuilder after it has modified it.
Type Parameters
SD
: A type that implements theSystemDesc
trait.S
: A type that implements theSystem
trait.
Panics
If two system are added that share an identical name, this function will panic. Empty names are permitted, and this function will not panic if more then two are added.
If a dependency is referenced (by name), but has not previously been added this function will panic.
Examples
use amethyst::core::SystemDesc; use amethyst::derive::SystemDesc; use amethyst::prelude::*; use amethyst::ecs::prelude::{System, SystemData, World}; #[derive(SystemDesc)] struct NopSystem; impl<'a> System<'a> for NopSystem { type SystemData = (); fn run(&mut self, _: Self::SystemData) {} } GameDataBuilder::default() // This will add the "foo" system to the game loop, in this case // the "foo" system will not depend on any systems. .with_system_desc(NopSystem, "foo", &[]) // The "bar" system will only run after the "foo" system has completed .with_system_desc(NopSystem, "bar", &["foo"]) // It is legal to register a system with an empty name .with_system_desc(NopSystem, "", &[]);
pub fn with_thread_local<S>(self, system: S) -> Self where
S: for<'c> RunNow<'c> + 'static,
[src]
S: for<'c> RunNow<'c> + 'static,
Add a given thread-local system.
A thread-local system is one that must run on the main thread of the game. A thread-local system would be necessary typically to work around vendor APIs that have thread dependent designs; an example being OpenGL which uses a thread-local state machine to function.
All thread-local systems are executed sequentially after all non-thread-local systems.
Parameters
system
: The system that is to be added to the game loop.
Returns
This function returns GameDataBuilder after it has modified it.
Type Parameters
S
: A type that implements theSystem
trait.
Examples
use amethyst::core::SystemDesc; use amethyst::derive::SystemDesc; use amethyst::prelude::*; use amethyst::ecs::prelude::{System, SystemData, World}; #[derive(SystemDesc)] struct NopSystem; impl<'a> System<'a> for NopSystem { type SystemData = (); fn run(&mut self, _: Self::SystemData) {} } GameDataBuilder::default() // the Nop system is registered here .with_thread_local(NopSystem);
pub fn with_thread_local_desc<SD, S>(self, system_desc: SD) -> Self where
SD: RunNowDesc<'a, 'b, S> + 'b + 'static,
S: for<'c> RunNow<'c> + 'static,
[src]
SD: RunNowDesc<'a, 'b, S> + 'b + 'static,
S: for<'c> RunNow<'c> + 'static,
Add a given thread-local system.
A thread-local system is one that must run on the main thread of the game. A thread-local system would be necessary typically to work around vendor APIs that have thread dependent designs; an example being OpenGL which uses a thread-local state machine to function.
All thread-local systems are executed sequentially after all non-thread-local systems.
Parameters
system
: The system that is to be added to the game loop.
Returns
This function returns GameDataBuilder after it has modified it.
Type Parameters
S
: A type that implements theSystem
trait.
Examples
use amethyst::core::SystemDesc; use amethyst::derive::SystemDesc; use amethyst::prelude::*; use amethyst::ecs::prelude::{System, SystemData, World}; #[derive(SystemDesc)] struct NopSystem; impl<'a> System<'a> for NopSystem { type SystemData = (); fn run(&mut self, _: Self::SystemData) {} } GameDataBuilder::default() // the Nop system is registered here .with_thread_local(NopSystem);
pub fn with_bundle<B>(self, bundle: B) -> Result<Self, Error> where
B: SystemBundle<'a, 'b> + 'static,
[src]
B: SystemBundle<'a, 'b> + 'static,
Add a given ECS bundle to the game loop.
A bundle is a container for registering a bunch of ECS systems at once.
Parameters
world
: TheWorld
that contains all resources.bundle
: The bundle to add.
Returns
This function returns GameDataBuilder after it has modified it, this is
wrapped in a Result
.
Errors
This function creates systems, which use any number of dependent crates or APIs, which could result in any number of errors. See each individual bundle for a description of the errors it could produce.
Trait Implementations
impl<'a, 'b> DataInit<GameData<'a, 'b>> for GameDataBuilder<'a, 'b>
[src]
impl<'a, 'b> Default for GameDataBuilder<'a, 'b>
[src]
Auto Trait Implementations
impl<'a, 'b> Unpin for GameDataBuilder<'a, 'b>
impl<'a, 'b> !Sync for GameDataBuilder<'a, 'b>
impl<'a, 'b> !Send for GameDataBuilder<'a, 'b>
impl<'a, 'b> !UnwindSafe for GameDataBuilder<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for GameDataBuilder<'a, 'b>
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
[src]
fn is_in_subset(&self) -> bool
[src]
unsafe fn to_subset_unchecked(&self) -> SS
[src]
fn from_subset(element: &SS) -> SP
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> Any for T where
T: Any,
[src]
T: Any,
fn get_type_id(&self) -> TypeId
[src]
impl<T> TryDefault for T where
T: Default,
[src]
T: Default,
fn try_default() -> Result<T, String>
[src]
fn unwrap_default() -> Self
[src]
Calls try_default
and panics on an error case.
impl<T> Erased for T
[src]
impl<T> Supports<T> for T
[src]
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
[src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
Convert the source color to the destination color using the bradford method by default Read more
impl<T> SetParameter for T
[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
[src]
T: Parameter<Self>,
Sets value
as a parameter of self
.
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,