summaryrefslogtreecommitdiff
path: root/src/map.rs
blob: db79deb3fdcfcf46896b02618b0d41672cdaa761 (plain)
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
use ggez::filesystem::File;
use std::io::BufReader;
use xml::reader::{EventReader, XmlEvent};

pub struct Layer {
    pub id: usize,
    pub data: Vec<usize>,
}

impl Layer {
    pub fn new(text: String, id: usize) -> Layer {
        Layer {
            id,
            data: text
                .replace("\n", "")
                .split(',')
                .map(|s| s.parse().unwrap())
                .collect(),
        }
    }
}

pub struct Map {
    pub width: usize,
    pub height: usize,
    pub layers: Vec<Layer>,
}

impl Map {
    pub fn new(file: File) -> Map {
        let mut width = None;
        let mut height = None;
        let mut layers = Vec::new();

        for e in EventReader::new(BufReader::new(file)) {
            if let Ok(XmlEvent::StartElement {
                name, attributes, ..
            }) = e
            {
                if name.local_name == "map" {
                    for attribute in attributes {
                        match attribute.name.local_name.as_str() {
                            "width" => width = Some(attribute.value.parse::<usize>().unwrap()),
                            "height" => height = Some(attribute.value.parse::<usize>().unwrap()),
                            _ => (),
                        }
                    }
                }
            } else if let Ok(XmlEvent::Characters(text)) = e {
                layers.push(Layer::new(text, layers.len() + 1));
            }
        }

        Map {
            layers,
            width: width.unwrap(),
            height: height.unwrap(),
        }
    }
}