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