2012-12-13 21:05:22 +00:00
|
|
|
|
2014-02-07 19:08:32 +00:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-11 01:32:48 +00:00
|
|
|
// 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 08:49:18 +00:00
|
|
|
|
2012-08-03 18:38:46 +00:00
|
|
|
/// Map representation
|
|
|
|
|
2013-11-11 06:46:32 +00:00
|
|
|
use std::io;
|
2014-02-20 02:56:33 +00:00
|
|
|
use std::fmt;
|
2013-03-27 04:17:29 +00:00
|
|
|
|
2012-08-03 18:38:46 +00:00
|
|
|
enum square {
|
|
|
|
bot,
|
|
|
|
wall,
|
|
|
|
rock,
|
|
|
|
lambda,
|
|
|
|
closed_lift,
|
|
|
|
open_lift,
|
|
|
|
earth,
|
|
|
|
empty
|
|
|
|
}
|
|
|
|
|
2014-02-20 02:56:33 +00:00
|
|
|
impl fmt::Show for square {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2014-05-10 21:05:06 +00:00
|
|
|
write!(f, "{}", match *self {
|
2014-05-25 10:10:11 +00:00
|
|
|
bot => { "R".to_string() }
|
|
|
|
wall => { "#".to_string() }
|
|
|
|
rock => { "*".to_string() }
|
|
|
|
lambda => { "\\".to_string() }
|
|
|
|
closed_lift => { "L".to_string() }
|
|
|
|
open_lift => { "O".to_string() }
|
|
|
|
earth => { ".".to_string() }
|
|
|
|
empty => { " ".to_string() }
|
2014-02-20 02:56:33 +00:00
|
|
|
})
|
2012-08-03 18:38:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn square_from_char(c: char) -> square {
|
2012-08-06 19:34:08 +00:00
|
|
|
match c {
|
2012-08-04 02:59:04 +00:00
|
|
|
'R' => { bot }
|
|
|
|
'#' => { wall }
|
|
|
|
'*' => { rock }
|
|
|
|
'\\' => { lambda }
|
|
|
|
'L' => { closed_lift }
|
|
|
|
'O' => { open_lift }
|
|
|
|
'.' => { earth }
|
|
|
|
' ' => { empty }
|
|
|
|
_ => {
|
2014-10-15 01:07:11 +00:00
|
|
|
println!("invalid square: {}", c);
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!()
|
2012-08-03 18:38:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 23:28:08 +00:00
|
|
|
fn read_board_grid<rdr:'static + io::Reader>(mut input: rdr)
|
|
|
|
-> Vec<Vec<square>> {
|
2013-12-31 23:46:27 +00:00
|
|
|
let mut input: &mut io::Reader = &mut input;
|
2014-03-05 22:02:44 +00:00
|
|
|
let mut grid = Vec::new();
|
2013-10-14 01:48:47 +00:00
|
|
|
let mut line = [0, ..10];
|
|
|
|
input.read(line);
|
2014-03-05 22:02:44 +00:00
|
|
|
let mut row = Vec::new();
|
2013-10-14 01:48:47 +00:00
|
|
|
for c in line.iter() {
|
|
|
|
row.push(square_from_char(*c as char))
|
|
|
|
}
|
|
|
|
grid.push(row);
|
2014-10-15 06:05:01 +00:00
|
|
|
let width = grid[0].len();
|
2013-08-03 16:45:23 +00:00
|
|
|
for row in grid.iter() { assert!(row.len() == width) }
|
2012-08-03 18:38:46 +00:00
|
|
|
grid
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test {
|
|
|
|
#[test]
|
2014-06-21 10:39:03 +00:00
|
|
|
pub fn trivial_to_string() {
|
|
|
|
assert!(lambda.to_string() == "\\")
|
2012-08-03 18:38:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {}
|