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