rust/src/test/run-pass/issue-2904.rs

90 lines
2.0 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
/// Map representation
2012-09-26 19:03:02 -05:00
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 {
2012-08-06 14:34:08 -05:00
match self {
2012-08-03 21:59:04 -05:00
bot => { ~"R" }
wall => { ~"#" }
rock => { ~"*" }
lambda => { ~"\\" }
closed_lift => { ~"L" }
open_lift => { ~"O" }
earth => { ~"." }
empty => { ~" " }
}
}
}
fn square_from_char(c: char) -> square {
2012-08-06 14:34:08 -05:00
match c {
2012-08-03 21:59:04 -05:00
'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]] {
2012-09-19 00:45:24 -05:00
let in = (move in) as io::Reader;
let mut grid = ~[];
for in.each_line |line| {
let mut row = ~[];
2012-09-26 19:03:02 -05:00
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() {}