Conditional Commands

Implements three extension traits * ConditionalInsertComponentsExt for EntityCommands and EntityMut\ with methods: - insert_if - insert_if_lazy - insert_if_else - insert_if_else_lazy - insert_bundle_if - insert_bundle_if_lazy - insert_bundle_if_else - insert_bundle_if_else_lazy - insert_some - insert_some_or - insert_some_or_else - insert_bundle_some - insert_bundle_some_or - insert_bundle_some_or_else * ConditionalChildBuilderExt for EntityCommands\ with method: - with_children_if * ConditionalWorldChildBuilderExt for EntityMut\ with method: - with_children_if

that allow for conditional component, bundle, and child insertion without the need for an intermediate EntityCommands or EntityMut binding.

The if_else methods are generic on both arguments, there is no requirement for the components or bundles to be of the same type.

#

Version 0.6

Version 0.5

Version 0.4

New for Version 0.3

Version 0.2

#

Usage

Add to your Cargo.toml [Dependencies] section

conditional_commands = "0.6"

Then access with the use declaration

rust use conditional_commands::*; #

Motivating Contrived ECS Fizz-Buzz Example

```rust use bevy::prelude::*;

[derive(Component)]

struct Number(usize);

[derive(Component)]

struct Fizz;

[derive(Component)]

struct Buzz;

fn fizzbuzz( mut commands: Commands ) { for n in 1 ..= N { let mut entitycommands = commands.spawn(); if n % 3 { (0, 0) => { entitycommands.insertbundle((Fizz, Buzz)); }, (0, ) => { entitycommands.insert(Fizz); }, (, 0) => { entitycommands.insert(Buzz); }, _ => { entity_commands.insert(Number(n)); } } } } ``` With Conditional Commands we no longer need the intermediate EntityCommands binding.

```rust use conditional_commands::*;

fn fizzbuzz( mut commands: Commands ) { for n in 1 ..= N { commands .spawn() .insertif(0 < n % 3 && 0 < n % 5, Number(n)) .insertif(n % 3 == 0, Fizz) .insertif(n % 5 == 0, Buzz); } } ```

Other Examples

``` cargo run --example exclusize cargo run --example fizzbuzz cargo run --example insertif cargo run --example lazy cargo run --example withchildrenif

``` #

Notes

Some ergonomic compromises I had to make:

Any solutions for either issue would be very welcome.

Considering seperating the lazy methods into a seperate trait or feature gating them.

Also not happy with the naming of the methods.