A small 2D Map library for console games in Rust.
rust
let mut m = gamemap::Map::new(20, 20);
rust
m.update();
```rust let mut utext = String::from("This is some text above the map!!!"); let mut ltext = String::from("This is some text below the map!!!");
m.setuppertext(utext) .setlowertext(ltext) .update(); ```
```rust let mut sprites = vec![((15u32, 7u32), 'P'), ((9u32, 12u32), 'E'), ((11u32, 6u32), 'E')];
m.addsprite(sprites[0]) .addsprite(sprites[1]) .add_sprite(sprites[2]) .update(); ```
rust
m.move_sprite(sprites[0].0, (1u32, 1u32))
.update();
rust
m.remove_sprite(sprites[1].0)
.remove_sprite(sprites[2].0)
.update();
rust
m.clear()
.update();
Add this line to your Cargo.toml:
toml
[dependencies]
gamemap = "0.1.0"
and then add this line to your main.rs:
rust
extern crate gamemap;