2019-10-29 00:00:00 +00:00
|
|
|
//@ build-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(unused_must_use)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_mut)]
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(non_camel_case_types)]
|
2013-10-23 04:49:18 -04:00
|
|
|
|
2015-03-05 18:33:58 -08:00
|
|
|
// Map representation
|
|
|
|
|
2014-02-19 18:56:33 -08:00
|
|
|
use std::fmt;
|
2015-04-10 11:12:43 -07:00
|
|
|
use std::io::prelude::*;
|
2014-11-06 00:05:53 -08:00
|
|
|
use square::{bot, wall, rock, lambda, closed_lift, open_lift, earth, empty};
|
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
|
|
|
|
}
|
|
|
|
|
2015-01-28 08:34:18 -05:00
|
|
|
impl fmt::Debug for square {
|
2014-02-19 18:56:33 -08:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2014-05-10 14:05:06 -07:00
|
|
|
write!(f, "{}", match *self {
|
2014-05-25 03:10:11 -07: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 18:56:33 -08:00
|
|
|
})
|
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 }
|
|
|
|
_ => {
|
2014-10-14 21:07:11 -04:00
|
|
|
println!("invalid square: {}", c);
|
2014-10-09 15:17:22 -04:00
|
|
|
panic!()
|
2012-08-03 11:38:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-10 11:12:43 -07:00
|
|
|
fn read_board_grid<rdr:'static + Read>(mut input: rdr)
|
2014-03-05 15:28:08 -08:00
|
|
|
-> Vec<Vec<square>> {
|
2019-05-28 14:46:13 -04:00
|
|
|
let mut input: &mut dyn Read = &mut input;
|
2014-03-05 14:02:44 -08:00
|
|
|
let mut grid = Vec::new();
|
2014-12-20 15:20:51 +13:00
|
|
|
let mut line = [0; 10];
|
2014-11-17 21:39:01 +13:00
|
|
|
input.read(&mut line);
|
2014-03-05 14:02:44 -08:00
|
|
|
let mut row = Vec::new();
|
2015-01-31 12:20:46 -05:00
|
|
|
for c in &line {
|
2013-10-13 18:48:47 -07:00
|
|
|
row.push(square_from_char(*c as char))
|
|
|
|
}
|
|
|
|
grid.push(row);
|
2014-10-14 23:05:01 -07:00
|
|
|
let width = grid[0].len();
|
2015-06-07 21:00:38 +03:00
|
|
|
for row in &grid { assert_eq!(row.len(), width) }
|
2012-08-03 11:38:46 -07:00
|
|
|
grid
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test {
|
|
|
|
#[test]
|
2014-06-21 03:39:03 -07:00
|
|
|
pub fn trivial_to_string() {
|
2015-06-07 21:00:38 +03:00
|
|
|
assert_eq!(lambda.to_string(), "\\")
|
2012-08-03 11:38:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {}
|