-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Observer EventPatterns
#24013
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ItsDoot
wants to merge
15
commits into
bevyengine:main
Choose a base branch
from
ItsDoot:ecs/nomoreb
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Observer EventPatterns
#24013
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
1d23421
ECS Implementation
ItsDoot 7eea9b7
Fix ECS tests
ItsDoot de1289e
Now fix everything else
ItsDoot c4c3b39
Add migration guide
ItsDoot bec3e74
fix ci
ItsDoot c03057f
Add migration guide for dynamic components
ItsDoot 856a17a
address feedback
ItsDoot 3a685f1
Relax bounds on `On` bounds
ItsDoot 66f248d
Relax OnTemplate bounds
ItsDoot cec0039
Merge branch 'main' into ecs/nomoreb
ItsDoot c827c5e
Rename `EventMatcher` -> `EventPattern`
ItsDoot 00d3ca8
Merge branch 'main' into ecs/nomoreb
cart 51a2564
Merge branch 'main' into ecs/nomoreb
alice-i-cecile b33963b
remove unused imports
ItsDoot 5c708dd
Update _release-content/migration-guides/observer_event_matching.md
ItsDoot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
76 changes: 76 additions & 0 deletions
76
_release-content/migration-guides/observer_event_matching.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| --- | ||
| title: Moved Observer events `B` Bundle generic into the event type | ||
| pull_requests: [24013] | ||
| --- | ||
|
|
||
| The `B: Bundle` type parameter has been removed from `On<E, B>` in observer systems. | ||
| Lifecycle events (`Add`/`Insert`/`Discard`/`Remove`/`Despawn`) have been updated | ||
| to have this `B: Bundle` directly on them. | ||
|
|
||
| ```rust | ||
| // Bevy 0.19 | ||
| world.add_observer(|on: On<Add, A>| { | ||
| // ... | ||
| }); | ||
|
|
||
| // Bevy 0.20 | ||
| world.add_observer(|on: On<Add<A>>| { | ||
| // ... | ||
| }); | ||
| ``` | ||
|
|
||
| For custom event types that previously made use of `B: Bundle`, it's recommended to do the following: | ||
|
|
||
| ```rust | ||
| // Bevy 0.19 | ||
|
|
||
| #[derive(Event)] | ||
| pub struct Foo; | ||
|
|
||
| #[derive(Component)] | ||
| pub struct Bar; | ||
|
|
||
| world.add_observer(|on: On<Foo, Bar>| { | ||
| // ... | ||
| }); | ||
|
|
||
| // Bevy 0.20 | ||
|
|
||
| #[derive(Event)] | ||
| pub struct FooEvent; | ||
|
|
||
| #[derive(Component)] | ||
| pub struct Bar; | ||
|
|
||
| pub struct Foo<B: Bundle>(PhantomData<B>); | ||
|
|
||
| impl<B: Bundle> EventPattern for Foo<B> { | ||
| type Event = FooEvent; | ||
| type Components = B; | ||
| } | ||
|
|
||
| world.add_observer(|on: On<Foo<Bar>>| { | ||
| // ... | ||
| }); | ||
| ``` | ||
|
|
||
| For lifecycle observers watching dynamic components, you now need to modify | ||
| `On<Add>` to `On<Add<()>>`: | ||
|
ItsDoot marked this conversation as resolved.
|
||
|
|
||
| ```rust | ||
| // Bevy 0.19 | ||
| world.spawn( | ||
| Observer::new(|_: On<Add>| { | ||
| // ... | ||
| }) | ||
| .with_component(component_id), | ||
| ); | ||
|
|
||
| // Bevy 0.20 | ||
| world.spawn( | ||
| Observer::new(|_: On<Add<()>>| { | ||
| // ... | ||
| }) | ||
| .with_component(component_id), | ||
| ); | ||
| ``` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.