use crate::prelude::*;
use std::rc::Weak;
use std::hash::{Hash, Hasher};
use crate::property_storage::{WithProperties, PropertyStore};
#[derive(Clone, Debug)]
pub struct CellInstance<C: CoordinateType> {
pub(super) parent_cell_id: CellIndex,
pub(super) id: CellInstId,
pub(super) cell: Weak<Cell<C>>,
pub(super) parent_cell: Weak<Cell<C>>,
pub(super) transform: SimpleTransform<C>,
}
impl<C: CoordinateType> Eq for CellInstance<C> {}
impl<C: CoordinateType> PartialEq for CellInstance<C> {
fn eq(&self, other: &Self) -> bool {
self.id == other.id
&& self.parent_cell_id == other.parent_cell_id
}
}
impl<C: CoordinateType> Hash for CellInstance<C> {
fn hash<H: Hasher>(&self, state: &mut H) {
self.id.hash(state);
self.parent_cell_id.hash(state);
}
}
impl<C: CoordinateType> CellInstance<C> {
pub fn id(&self) -> CellInstId {
self.id
}
pub fn cell(&self) -> Weak<Cell<C>> {
self.cell.clone()
}
pub fn cell_id(&self) -> CellIndex {
self.cell.upgrade().unwrap().index()
}
pub fn parent_cell(&self) -> Weak<Cell<C>> {
self.parent_cell.clone()
}
pub fn get_transform(&self) -> SimpleTransform<C> {
self.transform.clone()
}
}
impl<C: CoordinateType> WithProperties for CellInstance<C> {
type Key = String;
fn with_properties<F, R>(&self, f: F) -> R
where F: FnOnce(Option<&PropertyStore<Self::Key>>) -> R {
f(
self.parent_cell()
.upgrade()
.unwrap()
.instance_properties.borrow()
.get(&self.id())
)
}
fn with_properties_mut<F, R>(&self, f: F) -> R
where F: FnOnce(&mut PropertyStore<Self::Key>) -> R {
f(
self.parent_cell()
.upgrade()
.unwrap()
.instance_properties.borrow_mut()
.entry(self.id())
.or_insert(PropertyStore::default())
)
}
}