Crates.io | bevy_logic |
lib.rs | bevy_logic |
version | 0.7.0 |
source | src |
created_at | 2024-04-19 22:51:30.550014 |
updated_at | 2024-11-03 21:59:40.806465 |
description | A logic gate simulation plugin for Bevy. |
homepage | https://github.com/cuppachino/bevy_logic |
repository | https://github.com/cuppachino/bevy_logic |
max_upload_size | |
id | 1214158 |
size | 251,935 |
bevy_logic
A logic gate simulation plugin for bevy
.
LogicGraph
resource for sorting (potentially cyclic) logic gate circuits.LogicUpdate
schedule that works just like bevy's FixedUpdate
.Signal
, enabling non-boolean circuits and analog machines.LogicGate
trait queries.World
and Commands
that ease gate hierarchy construction.Command
s for synchronizing a graph with the game world.cargo run --release --example cycles
Add the LogicSimulationPlugin
to your app, and configure the Time<LogicStep>
resource
to tick at the desired speed.
const STEPS_PER_SECOND: f64 = 30.0;
app.add_plugins(LogicSimulationPlugin)
.insert_resource(Time::<LogicStep>::from_hz(STEPS_PER_SECOND));
You can create your own logic gates by implementing the LogicGate
trait...
use bevy_logic::prelude::*;
/// The XOR gate emits a signal if the number of "truthy" inputs is odd.
#[derive(Component, Clone, Copy, Debug, Default, Reflect)]
pub struct XorGate;
impl LogicGate for XorGate {
fn evaluate(&mut self, inputs: &[Signal], outputs: &mut [Signal]) {
let signal: Signal = inputs
.iter()
.filter(|s| s.is_truthy())
.count()
.is_odd()
.into();
outputs.set_all(signal);
}
}
And then registering the component with bevy_trait_query
...
struct CustomLogicPlugin;
impl Plugin for CustomLogicPlugin {
fn build(&self, app: &mut App) {
app.register_logic_gate::<XorGate>();
}
}
You can use the logic::commands
module to spawn gates and fans,
and then connect fans with wires. Make sure to compile()
the logic graph.
fn spawn_custom_gate(mut commands: Commands, mut sim: ResMut<LogicGraph>) {
let xor_gate = commands
.spawn_gate((Name::new("XOR"), XorGate))
.with_inputs(2)
.with_outputs(1)
.build();
let not_gate = commands
.spawn_gate((Name::new("NOT"), NotGate))
.with_inputs(1)
.with_outputs(1)
.build();
let wire = commands.spawn_wire(¬_gate, 0, &xor_gate, 0).downgrade();
sim.add_data(vec![xor_gate, not_gate]).add_data(wire).compile();
}
bevy |
bevy_logic |
---|---|
0.14 | 0.7.x |
0.13.2 | 0.6.x |