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
// Copyright (C) 2025 Christian Mauduit <ufoot@ufoot.org>
//! Trait for reading 2D cell data from various sources.
use *;
use crate*;
/// Trait for reading 2D grid data from various sources.
///
/// This trait provides an abstraction for reading cell types (free/wall)
/// from different data sources such as text, images, or procedural generation.
///
/// # Example
///
/// ```
/// use shortestpath::mesh_source::{Source2D, CellType};
///
/// struct SimpleGrid {
/// width: usize,
/// height: usize,
/// }
///
/// impl Source2D for SimpleGrid {
/// fn get(&self, x: usize, y: usize) -> Result<CellType, shortestpath::Error> {
/// if x >= self.width || y >= self.height {
/// return Err(shortestpath::Error::invalid_xy(x, y));
/// }
/// // Alternating pattern
/// Ok(if (x + y) % 2 == 0 { CellType::FLOOR } else { CellType::WALL })
/// }
///
/// fn width(&self) -> usize { self.width }
/// fn height(&self) -> usize { self.height }
/// }
///
/// let grid = SimpleGrid { width: 4, height: 3 };
/// assert_eq!(grid.get(0, 0).unwrap(), CellType::FLOOR);
/// assert_eq!(grid.get(1, 0).unwrap(), CellType::WALL);
/// ```