 8b9d88f4d0
			
		
	
	
		8b9d88f4d0
		
			
		
	
	
	
	
		
			
			Followup to #7184 This makes `Reflect: DynamicTypePath` which allows us to remove `Reflect::get_type_path`, reducing unnecessary codegen and simplifying `Reflect` implementations.
		
			
				
	
	
		
			184 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			184 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use bevy_reflect_derive::impl_type_path;
 | |
| use smallvec::SmallVec;
 | |
| use std::any::Any;
 | |
| 
 | |
| use crate::utility::GenericTypeInfoCell;
 | |
| use crate::{
 | |
|     self as bevy_reflect, FromReflect, FromType, GetTypeRegistration, List, ListInfo, ListIter,
 | |
|     Reflect, ReflectFromPtr, ReflectMut, ReflectOwned, ReflectRef, TypeInfo, TypePath,
 | |
|     TypeRegistration, Typed,
 | |
| };
 | |
| 
 | |
| impl<T: smallvec::Array + TypePath + Send + Sync> List for SmallVec<T>
 | |
| where
 | |
|     T::Item: FromReflect,
 | |
| {
 | |
|     fn get(&self, index: usize) -> Option<&dyn Reflect> {
 | |
|         if index < SmallVec::len(self) {
 | |
|             Some(&self[index] as &dyn Reflect)
 | |
|         } else {
 | |
|             None
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     fn get_mut(&mut self, index: usize) -> Option<&mut dyn Reflect> {
 | |
|         if index < SmallVec::len(self) {
 | |
|             Some(&mut self[index] as &mut dyn Reflect)
 | |
|         } else {
 | |
|             None
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     fn insert(&mut self, index: usize, value: Box<dyn Reflect>) {
 | |
|         let value = value.take::<T::Item>().unwrap_or_else(|value| {
 | |
|             <T as smallvec::Array>::Item::from_reflect(&*value).unwrap_or_else(|| {
 | |
|                 panic!(
 | |
|                     "Attempted to insert invalid value of type {}.",
 | |
|                     value.type_name()
 | |
|                 )
 | |
|             })
 | |
|         });
 | |
|         SmallVec::insert(self, index, value);
 | |
|     }
 | |
| 
 | |
|     fn remove(&mut self, index: usize) -> Box<dyn Reflect> {
 | |
|         Box::new(self.remove(index))
 | |
|     }
 | |
| 
 | |
|     fn push(&mut self, value: Box<dyn Reflect>) {
 | |
|         let value = value.take::<T::Item>().unwrap_or_else(|value| {
 | |
|             <T as smallvec::Array>::Item::from_reflect(&*value).unwrap_or_else(|| {
 | |
|                 panic!(
 | |
|                     "Attempted to push invalid value of type {}.",
 | |
|                     value.type_name()
 | |
|                 )
 | |
|             })
 | |
|         });
 | |
|         SmallVec::push(self, value);
 | |
|     }
 | |
| 
 | |
|     fn pop(&mut self) -> Option<Box<dyn Reflect>> {
 | |
|         self.pop().map(|value| Box::new(value) as Box<dyn Reflect>)
 | |
|     }
 | |
| 
 | |
|     fn len(&self) -> usize {
 | |
|         <SmallVec<T>>::len(self)
 | |
|     }
 | |
| 
 | |
|     fn iter(&self) -> ListIter {
 | |
|         ListIter::new(self)
 | |
|     }
 | |
| 
 | |
|     fn drain(self: Box<Self>) -> Vec<Box<dyn Reflect>> {
 | |
|         self.into_iter()
 | |
|             .map(|value| Box::new(value) as Box<dyn Reflect>)
 | |
|             .collect()
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl<T: smallvec::Array + TypePath + Send + Sync> Reflect for SmallVec<T>
 | |
| where
 | |
|     T::Item: FromReflect,
 | |
| {
 | |
|     fn type_name(&self) -> &str {
 | |
|         std::any::type_name::<Self>()
 | |
|     }
 | |
| 
 | |
|     fn get_represented_type_info(&self) -> Option<&'static TypeInfo> {
 | |
|         Some(<Self as Typed>::type_info())
 | |
|     }
 | |
| 
 | |
|     fn into_any(self: Box<Self>) -> Box<dyn Any> {
 | |
|         self
 | |
|     }
 | |
| 
 | |
|     fn as_any(&self) -> &dyn Any {
 | |
|         self
 | |
|     }
 | |
| 
 | |
|     fn as_any_mut(&mut self) -> &mut dyn Any {
 | |
|         self
 | |
|     }
 | |
| 
 | |
|     fn into_reflect(self: Box<Self>) -> Box<dyn Reflect> {
 | |
|         self
 | |
|     }
 | |
| 
 | |
|     fn as_reflect(&self) -> &dyn Reflect {
 | |
|         self
 | |
|     }
 | |
| 
 | |
|     fn as_reflect_mut(&mut self) -> &mut dyn Reflect {
 | |
|         self
 | |
|     }
 | |
| 
 | |
|     fn apply(&mut self, value: &dyn Reflect) {
 | |
|         crate::list_apply(self, value);
 | |
|     }
 | |
| 
 | |
|     fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>> {
 | |
|         *self = value.take()?;
 | |
|         Ok(())
 | |
|     }
 | |
| 
 | |
|     fn reflect_ref(&self) -> ReflectRef {
 | |
|         ReflectRef::List(self)
 | |
|     }
 | |
| 
 | |
|     fn reflect_mut(&mut self) -> ReflectMut {
 | |
|         ReflectMut::List(self)
 | |
|     }
 | |
| 
 | |
|     fn reflect_owned(self: Box<Self>) -> ReflectOwned {
 | |
|         ReflectOwned::List(self)
 | |
|     }
 | |
| 
 | |
|     fn clone_value(&self) -> Box<dyn Reflect> {
 | |
|         Box::new(self.clone_dynamic())
 | |
|     }
 | |
| 
 | |
|     fn reflect_partial_eq(&self, value: &dyn Reflect) -> Option<bool> {
 | |
|         crate::list_partial_eq(self, value)
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl<T: smallvec::Array + TypePath + Send + Sync + 'static> Typed for SmallVec<T>
 | |
| where
 | |
|     T::Item: FromReflect,
 | |
| {
 | |
|     fn type_info() -> &'static TypeInfo {
 | |
|         static CELL: GenericTypeInfoCell = GenericTypeInfoCell::new();
 | |
|         CELL.get_or_insert::<Self, _>(|| TypeInfo::List(ListInfo::new::<Self, T::Item>()))
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl_type_path!(::smallvec::SmallVec<T: smallvec::Array + TypePath + Send + Sync>);
 | |
| 
 | |
| impl<T: smallvec::Array + TypePath + Send + Sync> FromReflect for SmallVec<T>
 | |
| where
 | |
|     T::Item: FromReflect,
 | |
| {
 | |
|     fn from_reflect(reflect: &dyn Reflect) -> Option<Self> {
 | |
|         if let ReflectRef::List(ref_list) = reflect.reflect_ref() {
 | |
|             let mut new_list = Self::with_capacity(ref_list.len());
 | |
|             for field in ref_list.iter() {
 | |
|                 new_list.push(<T as smallvec::Array>::Item::from_reflect(field)?);
 | |
|             }
 | |
|             Some(new_list)
 | |
|         } else {
 | |
|             None
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl<T: smallvec::Array + TypePath + Send + Sync> GetTypeRegistration for SmallVec<T>
 | |
| where
 | |
|     T::Item: FromReflect,
 | |
| {
 | |
|     fn get_type_registration() -> TypeRegistration {
 | |
|         let mut registration = TypeRegistration::of::<SmallVec<T>>();
 | |
|         registration.insert::<ReflectFromPtr>(FromType::<SmallVec<T>>::from_type());
 | |
|         registration
 | |
|     }
 | |
| }
 |