1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! Macros used in Bevy Retrograde

/// Utility to implement deref for single-element tuple structs
///
/// # Example
///
/// ```rust
/// # use bevy_retrograde_macros::impl_deref;
/// struct Score(usize);
///
/// impl_deref!(Score, usize);
/// ```
#[macro_export]
macro_rules! impl_deref {
    ($struct:ident, $target:path) => {
        impl std::ops::Deref for $struct {
            type Target = $target;

            fn deref(&self) -> &Self::Target {
                &self.0
            }
        }

        impl std::ops::DerefMut for $struct {
            fn deref_mut(&mut self) -> &mut Self::Target {
                &mut self.0
            }
        }
    };
}

/// Utility macro for adding an attribute to a batch of items
///
/// # Example
///
/// ```
/// # use bevy_retrograde_macros::items_attr;
/// // Only import these libraries for wasm targets
/// items_attr!(cfg(wasm), {
///     use web_sys;
///     use js_sys;
/// });
/// ```
#[macro_export]
macro_rules! items_attr {
    ($attr:ident($meta:meta), {
        $(
            $item:item
        )*
    }) => {
        $(
            #[$attr($meta)]
            $item
        )*
    };
}