Compare commits
No commits in common. "c9c0942daf6473aca42060feb6b4701b1430c9de" and "b72e8f5ac8f1078d3265fb77d32fe35083f33576" have entirely different histories.
c9c0942daf
...
b72e8f5ac8
25
TODO.md
25
TODO.md
|
@ -2,11 +2,6 @@
|
|||
|
||||
## game data structure
|
||||
|
||||
add "from_dir" functions for structs
|
||||
make that function generic?
|
||||
|
||||
--
|
||||
|
||||
what is the distinction between animate and inanimate objects?
|
||||
|
||||
idea:
|
||||
|
@ -17,7 +12,21 @@ idea:
|
|||
* each position could have (optionally) a tile and (optionally) a thing
|
||||
* things have render priority
|
||||
|
||||
* ideally support gif/png for images (are there other indexed colour formats?)
|
||||
### colours
|
||||
|
||||
~convert colours to hex~
|
||||
* ~accept abcdef, #abcdef, 0xabcdef (inc. uppercase)~
|
||||
* ~export as #abcdef~
|
||||
|
||||
### palettes
|
||||
|
||||
### images
|
||||
|
||||
* ideally support gif/png...
|
||||
|
||||
### parser
|
||||
|
||||
* ~move tests into their respective modules where appropriate~
|
||||
|
||||
## players
|
||||
|
||||
|
@ -26,6 +35,10 @@ idea:
|
|||
* text (how?)
|
||||
* support older graphics adaptors
|
||||
|
||||
### linux
|
||||
|
||||
* ~get working~
|
||||
|
||||
### windows
|
||||
|
||||
* ~try to compile~
|
||||
|
|
|
@ -4,9 +4,9 @@ use serde_derive::{Serialize, Deserialize};
|
|||
|
||||
#[derive(Debug, Eq, PartialEq)]
|
||||
pub struct Entity {
|
||||
pub name: String,
|
||||
pub image: String,
|
||||
pub tags: Vec<String>,
|
||||
name: String,
|
||||
image: String,
|
||||
tags: Vec<String>,
|
||||
}
|
||||
|
||||
impl Entity {
|
||||
|
|
71
src/lib.rs
71
src/lib.rs
|
@ -121,7 +121,9 @@ pub struct Game {
|
|||
pub struct GameParseError;
|
||||
|
||||
impl Game {
|
||||
pub fn from(path: PathBuf) -> Result<Game, GameParseError> {
|
||||
pub fn from(path: String) -> Result<Game, GameParseError> {
|
||||
let path = PathBuf::from(path);
|
||||
|
||||
let mut images = Vec::new();
|
||||
let mut tiles = Vec::new();
|
||||
let mut entities = Vec::new();
|
||||
|
@ -198,71 +200,4 @@ impl Game {
|
|||
|
||||
Ok(Game { config, images, tiles, palettes, music, entities })
|
||||
}
|
||||
|
||||
// todo Result<&Image>?
|
||||
pub fn get_image_by_name(&self, name: String) -> Option<&Image> {
|
||||
for image in self.images.iter() {
|
||||
if image.name == name {
|
||||
return Some(&image);
|
||||
}
|
||||
}
|
||||
|
||||
None
|
||||
}
|
||||
|
||||
pub fn get_entities_by_tag(&self, tag: &String) -> Vec<&Entity> {
|
||||
let mut entities = Vec::new();
|
||||
|
||||
for entity in self.entities.iter() {
|
||||
if entity.tags.contains(tag) {
|
||||
entities.push(entity);
|
||||
}
|
||||
}
|
||||
|
||||
entities
|
||||
}
|
||||
|
||||
// todo Result<&Entity>?
|
||||
pub fn get_entity_by_name(&self, name: String) -> Option<&Entity> {
|
||||
for entity in self.entities.iter() {
|
||||
if entity.name == name {
|
||||
return Some(&entity);
|
||||
}
|
||||
}
|
||||
|
||||
None
|
||||
}
|
||||
|
||||
// todo Result<&Music>?
|
||||
pub fn get_music_by_name(&self, name: String) -> Option<&Music> {
|
||||
for music in self.music.iter() {
|
||||
if music.name == name {
|
||||
return Some(&music);
|
||||
}
|
||||
}
|
||||
|
||||
None
|
||||
}
|
||||
|
||||
// todo Result<&Palette>?
|
||||
pub fn get_palette_by_name(&self, name: String) -> Option<&Palette> {
|
||||
for palette in self.palettes.iter() {
|
||||
if palette.name == name {
|
||||
return Some(&palette);
|
||||
}
|
||||
}
|
||||
|
||||
None
|
||||
}
|
||||
|
||||
// todo Result<&Tile>?
|
||||
pub fn get_tile_by_name(&self, name: String) -> Option<&Tile> {
|
||||
for tile in self.tiles.iter() {
|
||||
if tile.name == name {
|
||||
return Some(&tile);
|
||||
}
|
||||
}
|
||||
|
||||
None
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
image = "avatar"
|
||||
tags = ["player"]
|
||||
tags = []
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
image = "cat"
|
||||
tags = []
|
|
@ -1,2 +0,0 @@
|
|||
image = "tea"
|
||||
tags = []
|
|
@ -1,8 +0,0 @@
|
|||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00111100
|
||||
01100100
|
||||
00100100
|
||||
00011000
|
||||
00000000
|
Loading…
Reference in New Issue