mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 13:13:49 +00:00
951c9bb1a2
# Objective - Fix adding `#![allow(clippy::type_complexity)]` everywhere. like #9796 ## Solution - Use the new [lints] table that will land in 1.74 (https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#lints) - inherit lint to the workspace, crates and examples. ``` [lints] workspace = true ``` ## Changelog - Bump rust version to 1.74 - Enable lints table for the workspace ```toml [workspace.lints.clippy] type_complexity = "allow" ``` - Allow type complexity for all crates and examples ```toml [lints] workspace = true ``` --------- Co-authored-by: Martín Maita <47983254+mnmaita@users.noreply.github.com>
211 lines
5.4 KiB
Rust
211 lines
5.4 KiB
Rust
extern crate proc_macro;
|
|
|
|
mod app_plugin;
|
|
mod bevy_main;
|
|
mod derefs;
|
|
mod enum_variant_meta;
|
|
|
|
use bevy_macro_utils::{derive_label, BevyManifest};
|
|
use proc_macro::TokenStream;
|
|
use quote::format_ident;
|
|
|
|
/// Generates a dynamic plugin entry point function for the given `Plugin` type.
|
|
#[proc_macro_derive(DynamicPlugin)]
|
|
pub fn derive_dynamic_plugin(input: TokenStream) -> TokenStream {
|
|
app_plugin::derive_dynamic_plugin(input)
|
|
}
|
|
|
|
/// Implements [`Deref`] for structs. This is especially useful when utilizing the [newtype] pattern.
|
|
///
|
|
/// For single-field structs, the implementation automatically uses that field.
|
|
/// For multi-field structs, you must specify which field to use with the `#[deref]` attribute.
|
|
///
|
|
/// If you need [`DerefMut`] as well, consider using the other [derive] macro alongside
|
|
/// this one.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ## Tuple Structs
|
|
///
|
|
/// Using a single-field struct:
|
|
///
|
|
/// ```
|
|
/// use bevy_derive::Deref;
|
|
///
|
|
/// #[derive(Deref)]
|
|
/// struct MyNewtype(String);
|
|
///
|
|
/// let foo = MyNewtype(String::from("Hello"));
|
|
/// assert_eq!("Hello", *foo);
|
|
/// ```
|
|
///
|
|
/// Using a multi-field struct:
|
|
///
|
|
/// ```
|
|
/// # use std::marker::PhantomData;
|
|
/// use bevy_derive::Deref;
|
|
///
|
|
/// #[derive(Deref)]
|
|
/// struct MyStruct<T>(#[deref] String, PhantomData<T>);
|
|
///
|
|
/// let foo = MyStruct(String::from("Hello"), PhantomData::<usize>);
|
|
/// assert_eq!("Hello", *foo);
|
|
/// ```
|
|
///
|
|
/// ## Named Structs
|
|
///
|
|
/// Using a single-field struct:
|
|
///
|
|
/// ```
|
|
/// use bevy_derive::{Deref, DerefMut};
|
|
///
|
|
/// #[derive(Deref, DerefMut)]
|
|
/// struct MyStruct {
|
|
/// value: String,
|
|
/// }
|
|
///
|
|
/// let foo = MyStruct {
|
|
/// value: String::from("Hello")
|
|
/// };
|
|
/// assert_eq!("Hello", *foo);
|
|
/// ```
|
|
///
|
|
/// Using a multi-field struct:
|
|
///
|
|
/// ```
|
|
/// # use std::marker::PhantomData;
|
|
/// use bevy_derive::{Deref, DerefMut};
|
|
///
|
|
/// #[derive(Deref, DerefMut)]
|
|
/// struct MyStruct<T> {
|
|
/// #[deref]
|
|
/// value: String,
|
|
/// _phantom: PhantomData<T>,
|
|
/// }
|
|
///
|
|
/// let foo = MyStruct {
|
|
/// value:String::from("Hello"),
|
|
/// _phantom:PhantomData::<usize>
|
|
/// };
|
|
/// assert_eq!("Hello", *foo);
|
|
/// ```
|
|
///
|
|
/// [`Deref`]: std::ops::Deref
|
|
/// [newtype]: https://doc.rust-lang.org/rust-by-example/generics/new_types.html
|
|
/// [`DerefMut`]: std::ops::DerefMut
|
|
/// [derive]: crate::derive_deref_mut
|
|
#[proc_macro_derive(Deref, attributes(deref))]
|
|
pub fn derive_deref(input: TokenStream) -> TokenStream {
|
|
derefs::derive_deref(input)
|
|
}
|
|
|
|
/// Implements [`DerefMut`] for structs. This is especially useful when utilizing the [newtype] pattern.
|
|
///
|
|
/// For single-field structs, the implementation automatically uses that field.
|
|
/// For multi-field structs, you must specify which field to use with the `#[deref]` attribute.
|
|
///
|
|
/// [`DerefMut`] requires a [`Deref`] implementation. You can implement it manually or use
|
|
/// Bevy's [derive] macro for convenience.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ## Tuple Structs
|
|
///
|
|
/// Using a single-field struct:
|
|
///
|
|
/// ```
|
|
/// use bevy_derive::{Deref, DerefMut};
|
|
///
|
|
/// #[derive(Deref, DerefMut)]
|
|
/// struct MyNewtype(String);
|
|
///
|
|
/// let mut foo = MyNewtype(String::from("Hello"));
|
|
/// foo.push_str(" World!");
|
|
/// assert_eq!("Hello World!", *foo);
|
|
/// ```
|
|
///
|
|
/// Using a multi-field struct:
|
|
///
|
|
/// ```
|
|
/// # use std::marker::PhantomData;
|
|
/// use bevy_derive::{Deref, DerefMut};
|
|
///
|
|
/// #[derive(Deref, DerefMut)]
|
|
/// struct MyStruct<T>(#[deref] String, PhantomData<T>);
|
|
///
|
|
/// let mut foo = MyStruct(String::from("Hello"), PhantomData::<usize>);
|
|
/// foo.push_str(" World!");
|
|
/// assert_eq!("Hello World!", *foo);
|
|
/// ```
|
|
///
|
|
/// ## Named Structs
|
|
///
|
|
/// Using a single-field struct:
|
|
///
|
|
/// ```
|
|
/// use bevy_derive::{Deref, DerefMut};
|
|
///
|
|
/// #[derive(Deref, DerefMut)]
|
|
/// struct MyStruct {
|
|
/// value: String,
|
|
/// }
|
|
///
|
|
/// let mut foo = MyStruct {
|
|
/// value: String::from("Hello")
|
|
/// };
|
|
/// foo.push_str(" World!");
|
|
/// assert_eq!("Hello World!", *foo);
|
|
/// ```
|
|
///
|
|
/// Using a multi-field struct:
|
|
///
|
|
/// ```
|
|
/// # use std::marker::PhantomData;
|
|
/// use bevy_derive::{Deref, DerefMut};
|
|
///
|
|
/// #[derive(Deref, DerefMut)]
|
|
/// struct MyStruct<T> {
|
|
/// #[deref]
|
|
/// value: String,
|
|
/// _phantom: PhantomData<T>,
|
|
/// }
|
|
///
|
|
/// let mut foo = MyStruct {
|
|
/// value:String::from("Hello"),
|
|
/// _phantom:PhantomData::<usize>
|
|
/// };
|
|
/// foo.push_str(" World!");
|
|
/// assert_eq!("Hello World!", *foo);
|
|
/// ```
|
|
///
|
|
/// [`DerefMut`]: std::ops::DerefMut
|
|
/// [newtype]: https://doc.rust-lang.org/rust-by-example/generics/new_types.html
|
|
/// [`Deref`]: std::ops::Deref
|
|
/// [derive]: crate::derive_deref
|
|
#[proc_macro_derive(DerefMut, attributes(deref))]
|
|
pub fn derive_deref_mut(input: TokenStream) -> TokenStream {
|
|
derefs::derive_deref_mut(input)
|
|
}
|
|
|
|
#[proc_macro_attribute]
|
|
pub fn bevy_main(attr: TokenStream, item: TokenStream) -> TokenStream {
|
|
bevy_main::bevy_main(attr, item)
|
|
}
|
|
|
|
#[proc_macro_derive(EnumVariantMeta)]
|
|
pub fn derive_enum_variant_meta(input: TokenStream) -> TokenStream {
|
|
enum_variant_meta::derive_enum_variant_meta(input)
|
|
}
|
|
|
|
/// Generates an impl of the `AppLabel` trait.
|
|
///
|
|
/// This does not work for unions.
|
|
#[proc_macro_derive(AppLabel)]
|
|
pub fn derive_app_label(input: TokenStream) -> TokenStream {
|
|
let input = syn::parse_macro_input!(input as syn::DeriveInput);
|
|
let mut trait_path = BevyManifest::default().get_path("bevy_app");
|
|
let mut dyn_eq_path = trait_path.clone();
|
|
trait_path.segments.push(format_ident!("AppLabel").into());
|
|
dyn_eq_path.segments.push(format_ident!("DynEq").into());
|
|
derive_label(input, "AppLabel", &trait_path, &dyn_eq_path)
|
|
}
|