veloren/common/src/uid.rs

81 lines
2.0 KiB
Rust
Raw Normal View History

use serde::{Deserialize, Serialize};
2019-11-24 20:12:03 +00:00
use specs::{
saveload::{Marker, MarkerAllocator},
world::EntitiesRes,
Component, Entity, FlaggedStorage, Join, ReadStorage, VecStorage,
};
use std::{collections::HashMap, fmt, u64};
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct Uid(pub u64);
impl Into<u64> for Uid {
fn into(self) -> u64 { self.0 }
2019-11-24 20:12:03 +00:00
}
impl From<u64> for Uid {
fn from(uid: u64) -> Self { Self(uid) }
2019-11-24 20:12:03 +00:00
}
impl fmt::Display for Uid {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.0) }
2019-11-24 20:12:03 +00:00
}
impl Component for Uid {
type Storage = FlaggedStorage<Self, VecStorage<Self>>;
}
impl Marker for Uid {
type Allocator = UidAllocator;
type Identifier = u64;
2019-11-24 20:12:03 +00:00
fn id(&self) -> u64 { self.0 }
2019-11-24 20:12:03 +00:00
fn update(&mut self, update: Self) {
assert_eq!(self.0, update.0);
}
}
pub struct UidAllocator {
index: u64,
mapping: HashMap<u64, Entity>,
}
impl UidAllocator {
pub fn new() -> Self {
Self {
index: 0,
mapping: HashMap::new(),
}
}
// Useful for when a single entity is deleted because it doesn't reconstruct the
// entire hashmap
pub fn remove_entity(&mut self, id: u64) -> Option<Entity> { self.mapping.remove(&id) }
2019-11-24 20:12:03 +00:00
}
impl Default for UidAllocator {
fn default() -> Self { Self::new() }
2019-11-24 20:12:03 +00:00
}
impl MarkerAllocator<Uid> for UidAllocator {
fn allocate(&mut self, entity: Entity, id: Option<u64>) -> Uid {
let id = id.unwrap_or_else(|| {
let id = self.index;
self.index += 1;
id
});
2019-11-29 06:04:37 +00:00
self.mapping.insert(id, entity);
2019-11-24 20:12:03 +00:00
Uid(id)
}
fn retrieve_entity_internal(&self, id: u64) -> Option<Entity> { self.mapping.get(&id).copied() }
2019-11-24 20:12:03 +00:00
fn maintain(&mut self, entities: &EntitiesRes, storage: &ReadStorage<Uid>) {
self.mapping = (entities, storage)
.join()
.map(|(e, m)| (m.id(), e))
.collect();
}
}