5a8ba073bc
Two separate changes that got intertwined (sorry): Make to_str pure. Closes #3691 In str, change functions like push_char to take an &mut str instead of an &str. Closes #3710
80 lines
1.5 KiB
Rust
80 lines
1.5 KiB
Rust
/// Map representation
|
|
|
|
use io::ReaderUtil;
|
|
|
|
extern mod std;
|
|
|
|
enum square {
|
|
bot,
|
|
wall,
|
|
rock,
|
|
lambda,
|
|
closed_lift,
|
|
open_lift,
|
|
earth,
|
|
empty
|
|
}
|
|
|
|
impl square: to_str::ToStr {
|
|
pure fn to_str() -> ~str {
|
|
match self {
|
|
bot => { ~"R" }
|
|
wall => { ~"#" }
|
|
rock => { ~"*" }
|
|
lambda => { ~"\\" }
|
|
closed_lift => { ~"L" }
|
|
open_lift => { ~"O" }
|
|
earth => { ~"." }
|
|
empty => { ~" " }
|
|
}
|
|
}
|
|
}
|
|
|
|
fn square_from_char(c: char) -> square {
|
|
match c {
|
|
'R' => { bot }
|
|
'#' => { wall }
|
|
'*' => { rock }
|
|
'\\' => { lambda }
|
|
'L' => { closed_lift }
|
|
'O' => { open_lift }
|
|
'.' => { earth }
|
|
' ' => { empty }
|
|
_ => {
|
|
#error("invalid square: %?", c);
|
|
fail
|
|
}
|
|
}
|
|
}
|
|
|
|
fn read_board_grid<rdr: Owned io::Reader>(+in: rdr) -> ~[~[square]] {
|
|
let in = in as io::Reader;
|
|
let mut grid = ~[];
|
|
for in.each_line |line| {
|
|
let mut row = ~[];
|
|
for str::each_char(line) |c| {
|
|
row.push(square_from_char(c))
|
|
}
|
|
grid.push(row)
|
|
}
|
|
let width = grid[0].len();
|
|
for grid.each |row| { assert row.len() == width }
|
|
grid
|
|
}
|
|
|
|
mod test {
|
|
#[legacy_exports];
|
|
#[test]
|
|
fn trivial_to_str() {
|
|
assert lambda.to_str() == "\\"
|
|
}
|
|
|
|
#[test]
|
|
fn read_simple_board() {
|
|
let s = #include_str("./maps/contest1.map");
|
|
io::with_str_reader(s, read_board_grid)
|
|
}
|
|
}
|
|
|
|
fn main() {}
|