Compare commits

...

8 Commits

Author SHA1 Message Date
d0c6b3dfe2 Merge pull request 'clippy + rustfmt' (#1) from wip into master
All checks were successful
Build / Build (push) Successful in 16m8s
Reviewed-on: #1
2025-04-03 21:26:47 -04:00
c3ca450d78 clippy + rustfmt
All checks were successful
Build / Build (push) Successful in 21m12s
2025-04-03 20:48:33 -04:00
e8e14c49c8
try single cache action
All checks were successful
Build / Build (push) Successful in 1m42s
2025-03-17 20:15:16 -04:00
0883e21250
cargo build caching
Some checks failed
Build / Build (push) Has been cancelled
2025-03-16 20:28:01 -04:00
14b99480df
cargo build caching
All checks were successful
Build / Build (push) Successful in 20m23s
2025-03-16 20:06:51 -04:00
0aa4913f91
cargo build caching
Some checks failed
Build / Build (push) Has been cancelled
2025-03-16 19:59:05 -04:00
1906b3d651
Added bevy deps to workflow
All checks were successful
Build / Build (push) Successful in 15m44s
2025-03-16 19:30:13 -04:00
8f7666f072
Added cargo gitea action
Some checks failed
Build / Build (push) Failing after 1m27s
2025-03-16 19:26:15 -04:00
6 changed files with 51 additions and 1522 deletions

View File

@ -0,0 +1,25 @@
name: Build
on: [push]
jobs:
Build:
env:
RUNNER_TOOL_CACHE: /toolcache
container: rust:alpine
steps:
- name: Install node
run: apk add nodejs gcc libc-dev pkgconf libx11-dev alsa-lib-dev eudev-dev tar
- name: Check out repository code
uses: actions/checkout@v4
- name: Restore cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --release

2
.gitignore vendored
View File

@ -1 +1,3 @@
/target
Cargo.lock
.cargo

1512
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,6 @@
# bevy_basic_interaction
![License](https://img.shields.io/badge/license-0BSD%2FMIT%2FApache-blue.svg)
![Tag](https://img.shields.io/github/v/tag/exvacuum/bevy_basic_interaction)
This crate provides an `InteractionPlugin` which enables a basic interaction system.
@ -20,7 +19,7 @@ If enough people (like literally 1 person) want this on crates.io I'll consider
```toml
[dependencies.bevy_basic_interaction]
git = "https://git.exvacuum.dev/bevy_basic_interaction"
git = "https://git.soaos.dev/soaos/bevy_basic_interaction"
```
## Usage

View File

@ -1,5 +1,7 @@
//! Components used for interactions
use std::sync::Arc;
use bevy::{prelude::*, utils::HashSet};
/// Component which enables an entity to request interactions.
@ -18,14 +20,14 @@ pub struct Interactor {
///
/// An entity with an `Interactable` component might get passed to an `InteractionEvent` when an
/// `Interactor` requests an interaction, if the interactable is in range.
#[derive(Component, Clone, Debug)]
#[derive(Component, Clone)]
pub struct Interactable {
/// An optional name for this interactable
pub name: Option<String>,
/// An optional description of the action
pub description: Option<String>,
/// Predicate to check to see if interaction is possible
pub predicate: Option<fn(Entity, &mut World) -> bool>,
pub predicate: Option<Arc<Box<dyn Fn(Entity, &mut World) -> bool + Send + Sync>>>,
pub(crate) exclusive: bool,
pub(crate) max_distance_squared: f32,
pub(crate) possible: bool,
@ -39,11 +41,17 @@ impl Interactable {
/// If exclusive, this interactable will only be interacted with if it's the closest one to the
/// interactor, and the interaction will *not* be processed for any other in-range
/// interactables.
pub fn new(max_distance: f32, exclusive: bool, name: Option<String>, description: Option<String>, predicate: Option<fn(Entity, &mut World) -> bool>) -> Self {
pub fn new(
max_distance: f32,
exclusive: bool,
name: Option<String>,
description: Option<String>,
predicate: Option<Box<dyn Fn(Entity, &mut World) -> bool + Send + Sync>>,
) -> Self {
Self {
name,
description,
predicate,
predicate: predicate.map(|p| Arc::new(p)),
exclusive,
max_distance_squared: max_distance * max_distance,
possible: true,
@ -62,4 +70,3 @@ impl Default for Interactable {
Self::new(1.0, false, None, None, None)
}
}

View File

@ -1,4 +1,5 @@
#![warn(missing_docs)]
#![allow(clippy::type_complexity)]
//! This library provides basic "interaction" functionality
//! Entities which can trigger interactions get the `Interactor` component, and entities which can
@ -28,7 +29,11 @@ impl Plugin for InteractionPlugin {
fn build(&self, app: &mut App) {
app.add_systems(
Update,
(handle_interactor_events, update_interactor_targets, update_interactable_predicates),
(
handle_interactor_events,
update_interactor_targets,
update_interactable_predicates,
),
)
.add_event::<InteractorFiredEvent>()
.add_event::<InteractionEvent>();
@ -118,14 +123,17 @@ fn update_interactable_predicates(world: &mut World) {
let mut interactable_query = world.query::<(Entity, &mut Interactable)>();
let mut interactables = vec![];
for (interactable_entity, interactable) in interactable_query.iter(world) {
interactables.push((interactable_entity, (*interactable).clone()));
interactables.push((interactable_entity, interactable.clone()));
}
for (interactable_entity, interactable) in interactables.iter_mut() {
if let Some(predicate) = &interactable.predicate {
interactable.possible = predicate(*interactable_entity, world);
}
}
for ((_, mut interactable), (_, temp)) in interactable_query.iter_mut(world).zip(interactables.into_iter()) {
for ((_, mut interactable), (_, temp)) in interactable_query
.iter_mut(world)
.zip(interactables.into_iter())
{
*interactable = temp;
}
}