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