2022-11-01 22:43:47 -05:00
|
|
|
//! Type-safe indices and indexed containers.
|
|
|
|
|
|
|
|
use std::default::Default;
|
|
|
|
use std::fmt::Debug;
|
|
|
|
use std::hash::Hash;
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
use std::ops::{Index, IndexMut};
|
|
|
|
|
|
|
|
pub trait EntityRef: Clone + Copy + PartialEq + Eq + PartialOrd + Ord + Hash {
|
|
|
|
fn new(value: usize) -> Self;
|
|
|
|
fn index(self) -> usize;
|
|
|
|
fn invalid() -> Self;
|
|
|
|
fn is_valid(self) -> bool {
|
|
|
|
self != Self::invalid()
|
|
|
|
}
|
|
|
|
fn is_invalid(self) -> bool {
|
|
|
|
self == Self::invalid()
|
|
|
|
}
|
2022-11-22 21:20:36 -06:00
|
|
|
fn maybe_index(self) -> Option<usize>;
|
2022-11-01 22:43:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
2022-11-09 13:45:47 -06:00
|
|
|
macro_rules! declare_entity {
|
2022-11-01 22:43:47 -05:00
|
|
|
($name:tt, $prefix:tt) => {
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
pub struct $name(u32);
|
|
|
|
|
2022-11-09 13:45:47 -06:00
|
|
|
impl $crate::entity::EntityRef for $name {
|
2022-11-01 22:43:47 -05:00
|
|
|
fn new(value: usize) -> Self {
|
|
|
|
use std::convert::TryFrom;
|
|
|
|
let value = u32::try_from(value).unwrap();
|
|
|
|
debug_assert!(value != u32::MAX);
|
|
|
|
Self(value)
|
|
|
|
}
|
|
|
|
fn index(self) -> usize {
|
2022-11-22 21:20:36 -06:00
|
|
|
debug_assert!(self.is_valid());
|
2022-11-01 22:43:47 -05:00
|
|
|
self.0 as usize
|
|
|
|
}
|
2022-11-22 21:20:36 -06:00
|
|
|
fn maybe_index(self) -> Option<usize> {
|
|
|
|
if self.is_valid() {
|
|
|
|
Some(self.0 as usize)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2022-11-01 22:43:47 -05:00
|
|
|
fn invalid() -> Self {
|
|
|
|
Self(u32::MAX)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::convert::From<u32> for $name {
|
|
|
|
fn from(val: u32) -> Self {
|
2022-11-09 13:45:47 -06:00
|
|
|
<Self as $crate::entity::EntityRef>::new(val as usize)
|
2022-11-01 22:43:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::default::Default for $name {
|
|
|
|
fn default() -> Self {
|
2022-11-09 13:45:47 -06:00
|
|
|
<Self as $crate::entity::EntityRef>::invalid()
|
2022-11-01 22:43:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::fmt::Debug for $name {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
|
|
write!(f, "{}{}", $prefix, self.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl std::fmt::Display for $name {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
|
|
write!(f, "{}{}", $prefix, self.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct EntityVec<Idx: EntityRef, T: Clone + Debug>(Vec<T>, PhantomData<Idx>);
|
|
|
|
|
|
|
|
impl<Idx: EntityRef, T: Clone + Debug> std::default::Default for EntityVec<Idx, T> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self(vec![], PhantomData)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-02 15:44:35 -05:00
|
|
|
impl<Idx: EntityRef, T: Clone + Debug> From<Vec<T>> for EntityVec<Idx, T> {
|
|
|
|
fn from(vec: Vec<T>) -> Self {
|
|
|
|
Self(vec, PhantomData)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-01 22:43:47 -05:00
|
|
|
impl<Idx: EntityRef, T: Clone + Debug> EntityVec<Idx, T> {
|
|
|
|
pub fn push(&mut self, t: T) -> Idx {
|
|
|
|
let idx = Idx::new(self.0.len());
|
|
|
|
self.0.push(t);
|
|
|
|
idx
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
self.0.len()
|
|
|
|
}
|
|
|
|
|
2022-11-02 23:26:22 -05:00
|
|
|
pub fn iter(&self) -> impl DoubleEndedIterator<Item = Idx> {
|
2022-11-01 22:43:47 -05:00
|
|
|
(0..self.0.len()).map(|index| Idx::new(index))
|
|
|
|
}
|
|
|
|
|
2022-12-01 20:57:00 -06:00
|
|
|
pub fn values(&self) -> impl DoubleEndedIterator<Item = &T> {
|
2022-11-01 22:43:47 -05:00
|
|
|
self.0.iter()
|
|
|
|
}
|
|
|
|
|
2022-12-01 20:57:00 -06:00
|
|
|
pub fn values_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut T> {
|
2022-11-01 22:43:47 -05:00
|
|
|
self.0.iter_mut()
|
|
|
|
}
|
|
|
|
|
2022-12-01 20:57:00 -06:00
|
|
|
pub fn entries(&self) -> impl DoubleEndedIterator<Item = (Idx, &T)> {
|
2022-11-01 22:43:47 -05:00
|
|
|
self.0
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(index, t)| (Idx::new(index), t))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn entries_mut(&mut self) -> impl Iterator<Item = (Idx, &mut T)> {
|
|
|
|
self.0
|
|
|
|
.iter_mut()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(index, t)| (Idx::new(index), t))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get(&self, idx: Idx) -> Option<&T> {
|
|
|
|
self.0.get(idx.index())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_mut(&mut self, idx: Idx) -> Option<&mut T> {
|
|
|
|
self.0.get_mut(idx.index())
|
|
|
|
}
|
2022-11-02 15:44:35 -05:00
|
|
|
|
|
|
|
pub fn into_vec(self) -> Vec<T> {
|
|
|
|
self.0
|
|
|
|
}
|
2022-11-01 22:43:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<Idx: EntityRef, T: Clone + Debug> Index<Idx> for EntityVec<Idx, T> {
|
|
|
|
type Output = T;
|
|
|
|
fn index(&self, idx: Idx) -> &T {
|
|
|
|
&self.0[idx.index()]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Idx: EntityRef, T: Clone + Debug> IndexMut<Idx> for EntityVec<Idx, T> {
|
|
|
|
fn index_mut(&mut self, idx: Idx) -> &mut T {
|
|
|
|
&mut self.0[idx.index()]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Default)]
|
|
|
|
pub struct PerEntity<Idx: EntityRef, T: Clone + Debug + Default>(Vec<T>, PhantomData<Idx>, T);
|
|
|
|
|
|
|
|
impl<Idx: EntityRef, T: Clone + Debug + Default> Index<Idx> for PerEntity<Idx, T> {
|
|
|
|
type Output = T;
|
|
|
|
fn index(&self, idx: Idx) -> &T {
|
2022-11-10 02:50:09 -06:00
|
|
|
debug_assert!(idx.is_valid());
|
2022-11-01 22:43:47 -05:00
|
|
|
self.0.get(idx.index()).unwrap_or(&self.2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Idx: EntityRef, T: Clone + Debug + Default> IndexMut<Idx> for PerEntity<Idx, T> {
|
|
|
|
fn index_mut(&mut self, idx: Idx) -> &mut T {
|
2022-11-10 02:50:09 -06:00
|
|
|
debug_assert!(idx.is_valid());
|
2022-11-01 22:43:47 -05:00
|
|
|
if idx.index() >= self.0.len() {
|
|
|
|
self.0.resize(idx.index() + 1, T::default());
|
|
|
|
}
|
|
|
|
&mut self.0[idx.index()]
|
|
|
|
}
|
|
|
|
}
|
2023-02-24 23:24:09 -06:00
|
|
|
|
|
|
|
impl<Idx: EntityRef, T: Clone + Debug + Default + PartialEq> PartialEq for PerEntity<Idx, T> {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.0 == other.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl<Idx: EntityRef, T: Clone + Debug + Default + PartialEq + Eq> Eq for PerEntity<Idx, T> {}
|