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
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//! Macros for implementing storage with ease

// Macros
//--------------------------------------------------------------------------------------------------
	/// Creates and implements [`Storage`] and [`Component`] for an enum with all possible component types
	/// using an incremental `u64` for the id
	#[macro_export]
	macro_rules! impl_enum_storage
	{
		// Component
		//--------------------------------------------------------------------------------------------------
			// Tail
			{@ComponentImpl
				$cur_idx: expr,
				$name   : ident,
			} => {};
			
			// Main Branch
			{@ComponentImpl
				$cur_idx  : expr ,
				$name     : ident,
				
				$variant_name: ident ($variant_type: ty),
				
				$($variant_names: ident ($variant_types: ty),)*
			} =>
			{
				// Impl the head type with the current index
				impl<'a> $crate::Component<'a, $name> for $variant_type {
					#[must_use]
					fn id() -> <$name as $crate::Storage<'a>>::Id {
						$cur_idx
					}
					
					#[must_use]
					fn get(storage: &$name) -> Option<&Self> {
						if let $name::$variant_name(value) = storage { Some(value) }
						else                                         { None        }
					}
					
					#[must_use]
					fn get_mut(storage: &mut $name) -> Option<&mut Self> {
						if let $name::$variant_name(value) = storage { Some(value) }
						else                                         { None        }
					}
				}
				
				// Implement all types within the tail
				$crate::impl_enum_storage!{@ComponentImpl
					$cur_idx + 1,
					$name,
					$($variant_names($variant_types),)*
				}
			};
			
			// Entry point
			{@ComponentImpl
				$name: ident,
				
				$($variant_name: ident ($variant_type: ty),)*
			} =>
			{
				$crate::impl_enum_storage!{@ComponentImpl
					0,
					$name,
					$($variant_name($variant_type),)*
				}
			};
		//--------------------------------------------------------------------------------------------------
		
		// Component
		//--------------------------------------------------------------------------------------------------
			// Entry point
			{@StorageImpl
				// Enum name
				$name: ident,
				
				// Variants
				$(
					$( #[$variant_meta: meta] )*
					$variant_name: ident( $variant_type: ty )
				),*
			} =>
			{
				impl<'a> $crate::Storage<'a> for $name
				{
					type Id = u64;
					
					#[must_use]
					fn id(&self) -> Self::Id {
						match self {
							$(
								Self::$variant_name(_) => { <$variant_type as $crate::Component<$name>>::id() }
							)*
						}
					}
				}
			};
		//--------------------------------------------------------------------------------------------------
		
		// Main Entry Point
		{
			// Enum declaration
			$( #[$enum_meta:meta] )*
			$vis:vis enum $name:ident
			{
				$(
					$( #[$variant_meta: meta] )*
					$variant_name: ident ( $variant_type: ty )
				),*
				
				$(,)?
			}
		} =>
		{
			// Enum declaration
			$( #[$enum_meta] )*
			$vis enum $name
			{
				$(
					$( #[$variant_meta] )*
					$variant_name( $variant_type ),
				)*
			}
			
			$crate::impl_enum_storage!(@StorageImpl
				$name,
				$(
					$( #[$variant_meta] )*
					$variant_name( $variant_type )
				),*
			);
			
			$crate::impl_enum_storage!(@ComponentImpl $name, $( $variant_name($variant_type), )*);
		}
	}
//--------------------------------------------------------------------------------------------------