From 423ece13c9c3241db156da2d2427e0f4b9e757e8 Mon Sep 17 00:00:00 2001 From: Rich Churcher Date: Wed, 13 Nov 2024 19:48:28 +1300 Subject: [PATCH] WIP --- examples/picking/ui_picking.rs | 120 +++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 examples/picking/ui_picking.rs diff --git a/examples/picking/ui_picking.rs b/examples/picking/ui_picking.rs new file mode 100644 index 0000000000..e3f35ec37b --- /dev/null +++ b/examples/picking/ui_picking.rs @@ -0,0 +1,120 @@ +//! Demonstrates the use of picking in Bevy's UI. +//! +//! This example displays a simple inventory system and an animated sprite. Items can be dragged +//! and dropped within the inventory, or onto the sprite with differing effects depending on the +//! item. +//! +//! The implementation is not intended for serious use as a comprehensive inventory system! + +use bevy::prelude::*; +use std::fmt::Debug; + +fn main() { + App::new() + .add_plugins(DefaultPlugins.set(ImagePlugin::default_nearest())) + .add_systems(Startup, (setup, spawn_text)) + .run(); +} + +/// Set up some UI to manipulate. +fn setup(asset_server: Res, mut commands: Commands) { + // We need a simple camera to display our UI. + commands.spawn((Name::new("Camera"), Camera2d)); + + let inventory_node = Node { + margin: UiRect::all(Val::Px(5.)), + height: Val::Px(50.), + width: Val::Px(50.), + padding: UiRect::all(Val::Px(5.)), + ..default() + }; + // Spawn some arbitrarily-positioned inventory slots as UI nodes. + commands + .spawn(( + Name::new("Inventory"), + // This first node acts like a container. You can think of it as the box in which + // inventory slots are arranged. It's useful to remember that picking events can + // "bubble" up through layers of UI, so if required this parent node can act on events + // that are also received by its child nodes. You could imagine using this for a subtle + // color change or border highlight. + Node { + align_items: AlignItems::Center, + align_self: AlignSelf::Center, + justify_content: JustifyContent::Center, + justify_self: JustifySelf::Center, + padding: UiRect::all(Val::Px(10.)), + ..default() + }, + BackgroundColor(Color::WHITE.with_alpha(0.1)), + )) + .observe(|t: Trigger>| { + dbg!(t); + }) + .with_children(|parent| { + parent + .spawn(( + Name::new("Inventory Slot A"), + inventory_node.clone(), + BackgroundColor(Color::WHITE.with_alpha(0.5)), + )) + .with_children(|parent| { + parent.spawn(ImageNode::new( + asset_server.load("textures/rpg/props/generic-rpg-loot01.png"), + )); + }) + .observe(drag_handler::>()); + + parent + .spawn(( + Name::new("Inventory Slot B"), + inventory_node.clone(), + BackgroundColor(Color::WHITE.with_alpha(0.5)), + )) + .observe(drag_handler::>()) + .with_children(|parent| { + parent.spawn((ImageNode::new( + asset_server.load("textures/rpg/props/generic-rpg-loot02.png"), + ),)); + }); + + parent + .spawn(( + Name::new("Inventory Slot C"), + inventory_node.clone(), + BackgroundColor(Color::WHITE.with_alpha(0.5)), + )) + .observe(drag_handler::>()); + + parent + .spawn(( + Name::new("Inventory Slot C"), + inventory_node.clone(), + BackgroundColor(Color::WHITE.with_alpha(0.5)), + )) + .observe(drag_handler::>()); + }); +} + +/// Display instructions. +fn spawn_text(mut commands: Commands) { + commands.spawn(( + Name::new("Instructions"), + Text::new("Drag and drop birds within the inventory slots."), + Node { + position_type: PositionType::Absolute, + top: Val::Px(12.), + left: Val::Px(12.), + ..default() + }, + )); +} + +fn drag_handler() -> impl Fn(Trigger, Query<&mut Sprite>) { + move |ev, _sprites| { + dbg!(ev); + } +} +// +// fn drop_handler() -> impl Fn(Trigger) { +// move |ev| {} +// }