2012-12-13 13:05:22 -08:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-12-10 17:32:48 -08: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 11:38:46 -07:00
|
|
|
/// Map representation
|
|
|
|
|
2013-05-20 17:07:24 -07:00
|
|
|
extern mod extra;
|
2012-08-03 11:38:46 -07:00
|
|
|
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::io::ReaderUtil;
|
2013-05-24 19:35:29 -07:00
|
|
|
use std::io;
|
|
|
|
use std::str;
|
|
|
|
use std::to_str;
|
2013-03-26 21:17:29 -07:00
|
|
|
|
2012-08-03 11:38:46 -07:00
|
|
|
enum square {
|
|
|
|
bot,
|
|
|
|
wall,
|
|
|
|
rock,
|
|
|
|
lambda,
|
|
|
|
closed_lift,
|
|
|
|
open_lift,
|
|
|
|
earth,
|
|
|
|
empty
|
|
|
|
}
|
|
|
|
|
2013-02-14 11:47:00 -08:00
|
|
|
impl to_str::ToStr for square {
|
2013-03-22 11:23:21 -07:00
|
|
|
fn to_str(&self) -> ~str {
|
2013-02-03 20:47:26 -08:00
|
|
|
match *self {
|
2012-08-03 19:59:04 -07:00
|
|
|
bot => { ~"R" }
|
|
|
|
wall => { ~"#" }
|
|
|
|
rock => { ~"*" }
|
|
|
|
lambda => { ~"\\" }
|
|
|
|
closed_lift => { ~"L" }
|
|
|
|
open_lift => { ~"O" }
|
|
|
|
earth => { ~"." }
|
2013-05-03 19:25:04 -04:00
|
|
|
empty => { ~" " }
|
2012-08-03 11:38:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn square_from_char(c: char) -> square {
|
2012-08-06 12:34:08 -07:00
|
|
|
match c {
|
2012-08-03 19:59:04 -07:00
|
|
|
'R' => { bot }
|
|
|
|
'#' => { wall }
|
|
|
|
'*' => { rock }
|
|
|
|
'\\' => { lambda }
|
|
|
|
'L' => { closed_lift }
|
|
|
|
'O' => { open_lift }
|
|
|
|
'.' => { earth }
|
|
|
|
' ' => { empty }
|
|
|
|
_ => {
|
2012-10-12 12:32:36 -07:00
|
|
|
error!("invalid square: %?", c);
|
2013-02-11 19:26:38 -08:00
|
|
|
fail!()
|
2012-08-03 11:38:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-31 17:59:59 -04:00
|
|
|
fn read_board_grid<rdr:'static + io::Reader>(input: rdr) -> ~[~[square]] {
|
|
|
|
let input = @input as @io::Reader;
|
2012-08-03 11:38:46 -07:00
|
|
|
let mut grid = ~[];
|
2013-07-31 17:59:59 -04:00
|
|
|
for input.each_line |line| {
|
2012-08-03 11:38:46 -07:00
|
|
|
let mut row = ~[];
|
2013-06-08 22:04:46 +10:00
|
|
|
for line.iter().advance |c| {
|
2012-09-26 17:33:34 -07:00
|
|
|
row.push(square_from_char(c))
|
2012-08-03 11:38:46 -07:00
|
|
|
}
|
2012-09-26 17:33:34 -07:00
|
|
|
grid.push(row)
|
2012-08-03 11:38:46 -07:00
|
|
|
}
|
|
|
|
let width = grid[0].len();
|
2013-06-21 08:29:53 -04:00
|
|
|
for grid.iter().advance |row| { assert!(row.len() == width) }
|
2012-08-03 11:38:46 -07:00
|
|
|
grid
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test {
|
|
|
|
#[test]
|
2013-01-30 15:56:40 -08:00
|
|
|
pub fn trivial_to_str() {
|
2013-03-28 18:39:09 -07:00
|
|
|
assert!(lambda.to_str() == "\\")
|
2012-08-03 11:38:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {}
|