forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EnumVariantMeta derive (bevyengine#1972) - 1248a63
- Loading branch information
Showing
7 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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,40 @@ | ||
use crate::modules::{get_modules, get_path}; | ||
use proc_macro::TokenStream; | ||
use quote::quote; | ||
use syn::{parse_macro_input, Data, DeriveInput}; | ||
|
||
pub fn derive_enum_variant_meta(input: TokenStream) -> TokenStream { | ||
let ast = parse_macro_input!(input as DeriveInput); | ||
let variants = match &ast.data { | ||
Data::Enum(v) => &v.variants, | ||
_ => panic!("Expected an enum."), | ||
}; | ||
|
||
let modules = get_modules(&ast.attrs); | ||
let bevy_util_path = get_path(&modules.bevy_utils); | ||
|
||
let generics = ast.generics; | ||
let (impl_generics, ty_generics, where_clause) = generics.split_for_impl(); | ||
|
||
let struct_name = &ast.ident; | ||
let idents = variants.iter().map(|v| &v.ident); | ||
let names = variants.iter().map(|v| v.ident.to_string()); | ||
let indices = 0..names.len(); | ||
|
||
TokenStream::from(quote! { | ||
impl #impl_generics #bevy_util_path::EnumVariantMeta for #struct_name#ty_generics #where_clause { | ||
fn enum_variant_index(&self) -> usize { | ||
match self { | ||
#(#struct_name::#idents {..} => #indices,)* | ||
} | ||
} | ||
fn enum_variant_name(&self) -> &'static str { | ||
static variants: &[&str] = &[ | ||
#(#names,)* | ||
]; | ||
let index = self.enum_variant_index(); | ||
variants[index] | ||
} | ||
} | ||
}) | ||
} |
This file contains 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 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 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 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 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,6 @@ | ||
pub use bevy_derive::EnumVariantMeta; | ||
|
||
pub trait EnumVariantMeta { | ||
fn enum_variant_index(&self) -> usize; | ||
fn enum_variant_name(&self) -> &'static str; | ||
} |
This file contains 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