Das Grid is a 2D grid library which serves as fundamental building block for any 2D game built on the concept of grid
Famous games built on 2d grid concept:
Das Grid offers:
```rust // Creates a 10x10 grid with 0 as default value for each cell let mut g = das_grid::Grid::new(10, 10, 0);
// Set the the value 1 at position x: 5 and y: 5 g.set((5, 5), &1); ```
rust
// Using &str instead of i32
let mut g: das_grid::Grid<&str> = das_grid::Grid::new(10, 10, "a");
g.get((0, 0)).unwrap(); // ouputs: "a"
```rust use std::fmt::Display;
// Your own enum, much better to track grid values
enum Pawn { None, Player, Enemy, }
impl std::fmt::Display for Pawn { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { match *self { Pawn::None => write!(f, "None"), Pawn::Player => write!(f, "Player"), Pawn::Enemy => write!(f, "Enemy"), } } }
// Initialize empty grid
let mut g: dasgrid::Grid
// Set the Player on position 5,5 g.set((5, 5), &Pawn::Player);
// Move the player to right if let Ok(()) = g.movto((5, 5), dasgrid::MoveDirection::Right) { // "The pawn on 6,5 is Player" println!("The pawn on 6,5 is {}", g.get((6, 5)).unwrap()); }
```
The
mov_to
function can returnsResult<(), OutOfGridErr>
if the attept of move is out of the bounds of the grid
Each tile of the grid is called cell and each cell is the type that you want, because it is a 2D structure each cell has an address which consists of X and Y
```rust // Creates a 5x5 grid with 0 as default value for each cell let mut g = das_grid::Grid::new(5, 5, 0);
// Print with special {:?} to see the contents of the grid println!("{:?}", g); // outputs: // Grid { width: 5, height: 5, cells: [ // 0 (x: 0 y: 0) 0 (x: 1 y: 0) 0 (x: 2 y: 0) 0 (x: 3 y: 0) 0 (x: 4 y: 0) // 0 (x: 0 y: 1) 0 (x: 1 y: 1) 0 (x: 2 y: 1) 0 (x: 3 y: 1) 0 (x: 4 y: 1) // 0 (x: 0 y: 2) 0 (x: 1 y: 2) 0 (x: 2 y: 2) 0 (x: 3 y: 2) 0 (x: 4 y: 2) // 0 (x: 0 y: 3) 0 (x: 1 y: 3) 0 (x: 2 y: 3) 0 (x: 3 y: 3) 0 (x: 4 y: 3) // 0 (x: 0 y: 4) 0 (x: 1 y: 4) 0 (x: 2 y: 4) 0 (x: 3 y: 4) 0 (x: 4 y: 4) // ] } ```
```text MIT License
Copyright (c) 2021 Eduardo Pereira
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ```