Skip to content
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

Ensure ExtendedMaterial works with reflection (to enable bevy_egui_inspector integration) #10548

Merged
merged 5 commits into from
Nov 15, 2023

Conversation

Braymatter
Copy link
Contributor

@Braymatter Braymatter commented Nov 14, 2023

Objective

  • Ensure ExtendedMaterial can be referenced in bevy_egui_inspector correctly

Solution

Add a more manual TypePath implementation to work around bugs in the derive macro.

Copy link
Contributor

Welcome, new contributor!

Please make sure you've read our contributing guide and we look forward to reviewing your pull request shortly ✨

@alice-i-cecile alice-i-cecile added A-Rendering Drawing game state to the screen C-Usability A simple quality-of-life change that makes Bevy easier to use C-Breaking-Change A breaking change to Bevy's public API that needs to be noted in a migration guide labels Nov 14, 2023
#[derive(Asset, Clone, TypePath)]
pub struct ExtendedMaterial<B: Material, E: MaterialExtension> {
#[derive(Asset, Clone, Reflect)]
pub struct ExtendedMaterial<B: Material + FromReflect, E: MaterialExtension + FromReflect> {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why FromReflect bounds here rather than Reflect?

Copy link
Contributor Author

@Braymatter Braymatter Nov 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not an expert, or even novice on bevy_reflect, but according to the compiler FromReflect seems to be required by TypePath. I tried with Reflect initially, and Reflect + TypePath bounds just now and FromReflect seems to be the thing that works.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting. What's the error you're getting if you just add TypePath as a bound?

My thought is that we ideally don't want to force reflection on types that don't want or need it (i.e. allow the user to define a B and E that are not strictly Reflect).

Copy link
Contributor Author

@Braymatter Braymatter Nov 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we need reflect on this otherwise we're going to need to do a weird wrapper pattern for any custom material in order to inspect it at runtime.

StandardMaterial already implements reflect, and there's an immediate use for it in the form of runtime inspection, which is really important for our debugging process.

image

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the code that's causing this error? I ask because I'm wondering if it's an issue with how we're using it rather than how the type is defined. Like, if we're registering concrete types, then there probably shouldn't be an issue. But if we're trying to make the system/plugin generic, then we probably do need these bounds added.

Copy link
Contributor Author

@Braymatter Braymatter Nov 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a

register_type::<ExtendedMaterial<StandardMaterial,MyCustomMaterial>>>()

Copy link
Member

@MrGVSV MrGVSV Nov 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I found the problem: Asset requires TypePath, but the TypePath impl generated by the Reflect derive has additional FromReflect bounds on the generic type parameters, which means that TypePath is only implemented where ExtendedMaterial<B, M> is Reflect.

The fix would be to opt-out of Reflect's automatic TypePath implementation and derive it separately:

#[derive(Asset, Clone, Reflect, TypePath)]
#[reflect(type_path = false)]
pub struct ExtendedMaterial<B: Material, E: MaterialExtension> {
    pub base: B,
    pub extension: E,
}

However, this apparently reveals a bug with the TypePath derive. Since it reuses some of the Reflect derive logic, it actually picks up the #[reflect(type_path = false)] attribute and just doesn't generate anything 😅.

As a temporary workaround so this isn't blocked, I recommend doing something like this:

#[derive(Asset, Clone, Reflect)]
#[reflect(type_path = false)]
pub struct ExtendedMaterial<B: Material, E: MaterialExtension> {
    pub base: B,
    pub extension: E,
}

// We don't use the `TypePath` derive here due to a bug where `#[reflect(type_path = false)]`
// causes the `TypePath` derive to not generate an implementation.
impl_type_path!((in bevy_pbr::extended_material) ExtendedMaterial<B: Material, E: MaterialExtension>);

The above code should compile and not be a breaking change!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh nice! Would love for this to make it in for .12.1 -- I just pushed the suggested change

@alice-i-cecile alice-i-cecile added this to the 0.12.1 milestone Nov 14, 2023
@alice-i-cecile
Copy link
Member

@Braymatter can you update your PR title and description to match the new changes?

@alice-i-cecile alice-i-cecile removed the C-Breaking-Change A breaking change to Bevy's public API that needs to be noted in a migration guide label Nov 14, 2023
crates/bevy_pbr/src/extended_material.rs Outdated Show resolved Hide resolved
crates/bevy_pbr/src/extended_material.rs Outdated Show resolved Hide resolved
@Braymatter Braymatter changed the title feature: Added reflect type bounds to ExtendedMaterial for bevy_egui_inspector integration feature: Made ExtendedMaterial reflect for bevy_egui_inspector integration Nov 14, 2023
@Braymatter
Copy link
Contributor Author

Braymatter commented Nov 14, 2023

Suggested changes made, since this is no longer breaking is it possible to get it into 12.1? @alice-i-cecile

@Selene-Amanita Selene-Amanita added the S-Ready-For-Final-Review This PR has been approved by the community. It's ready for a maintainer to consider merging it label Nov 14, 2023
@alice-i-cecile
Copy link
Member

Yep, this is now 0.12.1 compatible :D It's in the milestone, so Cart will make the final call on cherrypicking it when he prepares the release.

@MrGVSV
Copy link
Member

MrGVSV commented Nov 14, 2023

I would update the Migration Guide and PR description btw

auto-merge was automatically disabled November 15, 2023 02:37

Head branch was pushed to by a user without write access

@alice-i-cecile alice-i-cecile changed the title feature: Made ExtendedMaterial reflect for bevy_egui_inspector integration Ensure ExtendedMaterial works with reflection (to enable bevy_egui_inspector integration) Nov 15, 2023
@alice-i-cecile alice-i-cecile added this pull request to the merge queue Nov 15, 2023
Merged via the queue into bevyengine:main with commit bad55c1 Nov 15, 2023
21 checks passed
cart pushed a commit that referenced this pull request Nov 30, 2023
…spector integration) (#10548)

# Objective

- Ensure ExtendedMaterial can be referenced in bevy_egui_inspector
correctly

## Solution

Add a more manual `TypePath` implementation to work around bugs in the
derive macro.
rdrpenguin04 pushed a commit to rdrpenguin04/bevy that referenced this pull request Jan 9, 2024
…spector integration) (bevyengine#10548)

# Objective

- Ensure ExtendedMaterial can be referenced in bevy_egui_inspector
correctly

## Solution

Add a more manual `TypePath` implementation to work around bugs in the
derive macro.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-Rendering Drawing game state to the screen C-Usability A simple quality-of-life change that makes Bevy easier to use S-Ready-For-Final-Review This PR has been approved by the community. It's ready for a maintainer to consider merging it
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants