2012-12-13 15:05:22 -06:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-12-10 19:32:48 -06:00
|
|
|
// 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.
|
|
|
|
|
2012-08-03 13:38:46 -05:00
|
|
|
/// Map representation
|
|
|
|
|
2012-09-26 19:03:02 -05:00
|
|
|
use io::ReaderUtil;
|
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2012-08-03 13:38:46 -05:00
|
|
|
|
|
|
|
enum square {
|
|
|
|
bot,
|
|
|
|
wall,
|
|
|
|
rock,
|
|
|
|
lambda,
|
|
|
|
closed_lift,
|
|
|
|
open_lift,
|
|
|
|
earth,
|
|
|
|
empty
|
|
|
|
}
|
|
|
|
|
2012-08-13 18:20:27 -05:00
|
|
|
impl square: to_str::ToStr {
|
2012-10-11 16:12:50 -05:00
|
|
|
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 => { ~" " }
|
2012-08-03 13:38:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 }
|
|
|
|
_ => {
|
2012-10-12 14:32:36 -05:00
|
|
|
error!("invalid square: %?", c);
|
2012-08-03 13:38:46 -05:00
|
|
|
fail
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-10 13:16:54 -06:00
|
|
|
fn read_board_grid<rdr: &static io::Reader>(+in: rdr) -> ~[~[square]] {
|
2012-09-19 00:45:24 -05:00
|
|
|
let in = (move in) as io::Reader;
|
2012-08-03 13:38:46 -05:00
|
|
|
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| {
|
2012-09-26 19:33:34 -05:00
|
|
|
row.push(square_from_char(c))
|
2012-08-03 13:38:46 -05:00
|
|
|
}
|
2012-09-26 19:33:34 -05:00
|
|
|
grid.push(row)
|
2012-08-03 13:38:46 -05:00
|
|
|
}
|
|
|
|
let width = grid[0].len();
|
|
|
|
for grid.each |row| { assert row.len() == width }
|
|
|
|
grid
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2012-08-03 13:38:46 -05:00
|
|
|
#[test]
|
|
|
|
fn trivial_to_str() {
|
|
|
|
assert lambda.to_str() == "\\"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn read_simple_board() {
|
2012-11-07 15:41:02 -06:00
|
|
|
let s = include_str!("./maps/contest1.map");
|
2012-08-21 20:32:23 -05:00
|
|
|
io::with_str_reader(s, read_board_grid)
|
2012-08-03 13:38:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|