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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
use fnv::FnvBuildHasher;
use num_iter::range_inclusive;
use num_traits::{One, ToPrimitive, Zero};
use std::collections::hash_set;
use std::collections::HashSet;
use std::fmt;
use std::hash::Hash;
use std::iter::FromIterator;
use crate::{BoardRange, Position};
/// A two-dimensional orthogonal grid map of live/dead cells.
///
/// The type parameter `T` is used as the type of the x- and y-coordinate values for each cell.
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let pattern = [Position(0, 0), Position(1, 0), Position(2, 0), Position(1, 1)];
/// let board: Board<i16> = pattern.iter().collect();
/// assert_eq!(board.contains(&Position(0, 0)), true);
/// assert_eq!(board.contains(&Position(0, 1)), false);
/// assert_eq!(board.iter().count(), 4);
/// ```
///
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct Board<T>(HashSet<Position<T>, FnvBuildHasher>)
where
T: Eq + Hash;
// Inherent methods
impl<T> Board<T>
where
T: Eq + Hash,
{
/// Creates an empty board.
///
/// # Examples
///
/// ```
/// use life_backend::Board;
/// let board = Board::<i16>::new();
/// assert_eq!(board.iter().count(), 0);
/// ```
///
#[inline]
pub fn new() -> Self {
Self(HashSet::default())
}
/// Returns `true` if the board contains the specified position.
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let board = Board::<i16>::new();
/// assert_eq!(board.contains(&Position(0, 0)), false);
/// ```
///
#[inline]
pub fn contains(&self, position: &Position<T>) -> bool {
self.0.contains(position)
}
/// Adds the specified position to the board.
///
/// Returns whether the position was newly inserted, like as [`insert()`] of [`HashSet`].
///
/// [`insert()`]: std::collections::HashSet::insert
/// [`HashSet`]: std::collections::HashSet
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let mut board = Board::<i16>::new();
/// assert_eq!(board.insert(Position(0, 0)), true);
/// assert_eq!(board.contains(&Position(0, 0)), true);
/// ```
///
#[inline]
pub fn insert(&mut self, position: Position<T>) -> bool {
self.0.insert(position)
}
/// Removes the specified position from the board.
///
/// Returns whether the position was contained in the board, like as [`remove()`] of [`HashSet`].
///
/// [`remove()`]: std::collections::HashSet::remove
/// [`HashSet`]: std::collections::HashSet
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let mut board = Board::<i16>::new();
/// assert_eq!(board.insert(Position(0, 0)), true);
/// assert_eq!(board.remove(&Position(0, 0)), true);
/// assert_eq!(board.contains(&Position(0, 0)), false);
/// ```
///
#[inline]
pub fn remove(&mut self, position: &Position<T>) -> bool {
self.0.remove(position)
}
/// Returns the minimum bounding box of all live cells on the board.
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let mut board = Board::new();
/// board.insert(Position(-1, 2));
/// board.insert(Position(3, -2));
/// let bbox = board.bounding_box();
/// assert_eq!(bbox.x(), &(-1..=3));
/// assert_eq!(bbox.y(), &(-2..=2));
/// ```
///
#[inline]
pub fn bounding_box(&self) -> BoardRange<T>
where
T: Copy + PartialOrd + Zero + One,
{
self.0.iter().collect::<BoardRange<_>>()
}
/// Removes all live cells in the board.
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let mut board = Board::<i16>::new();
/// board.insert(Position(0, 0));
/// board.clear();
/// assert_eq!(board.contains(&Position(0, 0)), false);
/// ```
///
#[inline]
pub fn clear(&mut self) {
self.0.clear();
}
/// Retains only the live cell positions specified by the predicate, similar as [`retain()`] of [`HashSet`].
///
/// [`retain()`]: std::collections::HashSet::retain
/// [`HashSet`]: std::collections::HashSet
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let mut board = Board::<i16>::new();
/// board.insert(Position(0, 0));
/// board.insert(Position(1, 0));
/// board.insert(Position(0, 1));
/// board.retain(|&pos| pos.0 == pos.1);
/// assert_eq!(board.contains(&Position(0, 0)), true);
/// assert_eq!(board.contains(&Position(1, 0)), false);
/// assert_eq!(board.contains(&Position(0, 1)), false);
/// ```
///
#[inline]
pub fn retain<F>(&mut self, pred: F)
where
F: FnMut(&Position<T>) -> bool,
{
self.0.retain(pred);
}
}
impl<'a, T> Board<T>
where
T: Eq + Hash,
{
/// Creates a non-owning iterator over the series of immutable live cell positions on the board in arbitrary order.
///
/// # Examples
///
/// ```
/// use std::collections::HashSet;
/// use life_backend::{Board, Position};
/// let mut board = Board::<i16>::new();
/// board.insert(Position(1, 0));
/// board.insert(Position(0, 1));
/// let result: HashSet<_> = board.iter().collect();
/// assert_eq!(result.len(), 2);
/// assert!(result.contains(&Position(1, 0)));
/// assert!(result.contains(&Position(0, 1)));
/// ```
///
#[inline]
pub fn iter(&'a self) -> hash_set::Iter<'a, Position<T>> {
self.into_iter()
}
}
// Trait implementations
impl<T> Default for Board<T>
where
T: Eq + Hash,
{
/// Returns the default value of the type, same as the return value of [`new()`].
///
/// [`new()`]: #method.new
///
#[inline]
fn default() -> Self {
Self::new()
}
}
impl<T> fmt::Display for Board<T>
where
T: Eq + Hash + Copy + PartialOrd + Zero + One + ToPrimitive,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let bbox = self.bounding_box();
for y in range_inclusive(*bbox.y().start(), *bbox.y().end()) {
let line: String = range_inclusive(*bbox.x().start(), *bbox.x().end())
.map(|x| if self.contains(&Position(x, y)) { 'O' } else { '.' })
.collect();
writeln!(f, "{line}")?;
}
Ok(())
}
}
impl<'a, T> IntoIterator for &'a Board<T>
where
T: Eq + Hash,
{
type Item = &'a Position<T>;
type IntoIter = hash_set::Iter<'a, Position<T>>;
/// Creates a non-owning iterator over the series of immutable live cell positions on the board in arbitrary order.
///
/// # Examples
///
/// ```
/// use std::collections::HashSet;
/// use life_backend::{Board, Position};
/// let pattern = [Position(1, 0), Position(0, 1)];
/// let board: Board<i16> = pattern.iter().collect();
/// let result: HashSet<_> = (&board).into_iter().collect();
/// let expected: HashSet<_> = pattern.iter().collect();
/// assert_eq!(result, expected);
/// ```
///
#[inline]
fn into_iter(self) -> Self::IntoIter {
self.0.iter()
}
}
impl<T> IntoIterator for Board<T>
where
T: Eq + Hash,
{
type Item = Position<T>;
type IntoIter = hash_set::IntoIter<Self::Item>;
/// Creates an owning iterator over the series of moved live cell positions on the board in arbitrary order.
///
/// # Examples
///
/// ```
/// use std::collections::HashSet;
/// use life_backend::{Board, Position};
/// let pattern = [Position(1, 0), Position(0, 1)];
/// let board: Board<i16> = pattern.iter().collect();
/// let result: HashSet<_> = board.into_iter().collect();
/// let expected: HashSet<_> = pattern.iter().copied().collect();
/// assert_eq!(result, expected);
/// ```
///
#[inline]
fn into_iter(self) -> Self::IntoIter {
self.0.into_iter()
}
}
impl<'a, T> FromIterator<&'a Position<T>> for Board<T>
where
T: Eq + Hash + Copy + 'a,
{
/// Creates a value from a non-owning iterator over a series of [`&Position<T>`].
/// Each item in the series represents an immutable reference of a live cell position.
///
/// [`&Position<T>`]: Position
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let pattern = [Position(1, 0), Position(0, 1)];
/// let board: Board<i16> = pattern.iter().collect();
/// assert_eq!(board.contains(&Position(0, 0)), false);
/// assert_eq!(board.contains(&Position(1, 0)), true);
/// assert_eq!(board.contains(&Position(0, 1)), true);
/// assert_eq!(board.contains(&Position(1, 1)), false);
/// ```
///
#[inline]
fn from_iter<U>(iter: U) -> Self
where
U: IntoIterator<Item = &'a Position<T>>,
{
Self::from_iter(iter.into_iter().copied())
}
}
impl<T> FromIterator<Position<T>> for Board<T>
where
T: Eq + Hash,
{
/// Creates a value from an owning iterator over a series of [`Position<T>`].
/// Each item in the series represents a moved live cell position.
///
/// [`Position<T>`]: Position
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let mut pattern = [Position(1, 0), Position(0, 1)];
/// let board: Board<i16> = pattern.into_iter().collect();
/// assert_eq!(board.contains(&Position(0, 0)), false);
/// assert_eq!(board.contains(&Position(1, 0)), true);
/// assert_eq!(board.contains(&Position(0, 1)), true);
/// assert_eq!(board.contains(&Position(1, 1)), false);
/// ```
///
#[inline]
fn from_iter<U>(iter: U) -> Self
where
U: IntoIterator<Item = Position<T>>,
{
Self(HashSet::<Position<T>, _>::from_iter(iter))
}
}
impl<'a, T> Extend<&'a Position<T>> for Board<T>
where
T: Eq + Hash + Copy + 'a,
{
/// Extends the board with the contents of the specified non-owning iterator over the series of [`&Position<T>`].
/// Each item in the series represents an immutable reference of a live cell position.
///
/// [`&Position<T>`]: Position
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let mut board = Board::<i16>::new();
/// let pattern = [Position(1, 0), Position(0, 1)];
/// board.extend(pattern.iter());
/// assert_eq!(board.contains(&Position(0, 0)), false);
/// assert_eq!(board.contains(&Position(1, 0)), true);
/// assert_eq!(board.contains(&Position(0, 1)), true);
/// assert_eq!(board.contains(&Position(1, 1)), false);
/// ```
///
#[inline]
fn extend<U>(&mut self, iter: U)
where
U: IntoIterator<Item = &'a Position<T>>,
{
self.0.extend(iter);
}
}
impl<T> Extend<Position<T>> for Board<T>
where
T: Eq + Hash,
{
/// Extends the board with the contents of the specified owning iterator over the series of [`Position<T>`].
/// Each item in the series represents a moved live cell position.
///
/// [`Position<T>`]: Position
///
/// # Examples
///
/// ```
/// use life_backend::{Board, Position};
/// let mut board = Board::<i16>::new();
/// let pattern = [Position(1, 0), Position(0, 1)];
/// board.extend(pattern.into_iter());
/// assert_eq!(board.contains(&Position(0, 0)), false);
/// assert_eq!(board.contains(&Position(1, 0)), true);
/// assert_eq!(board.contains(&Position(0, 1)), true);
/// assert_eq!(board.contains(&Position(1, 1)), false);
/// ```
///
#[inline]
fn extend<U>(&mut self, iter: U)
where
U: IntoIterator<Item = Position<T>>,
{
self.0.extend(iter);
}
}
// Unit tests
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn default() {
let target = Board::<i16>::default();
let expected = Board::<i16>::new();
assert_eq!(target, expected);
}
}