rust/src/test/run-pass/issue-2904.rs

87 lines
2.1 KiB
Rust
Raw Normal View History

// Copyright 2012-2014 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
// Map representation
#![feature(old_io)]
2015-01-22 18:31:00 -06:00
use std::old_io;
use std::fmt;
use square::{bot, wall, rock, lambda, closed_lift, open_lift, earth, empty};
2013-03-26 23:17:29 -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 {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
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() }
})
}
}
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);
panic!()
}
}
}
2015-01-22 18:31:00 -06:00
fn read_board_grid<rdr:'static + old_io::Reader>(mut input: rdr)
-> Vec<Vec<square>> {
2015-01-22 18:31:00 -06:00
let mut input: &mut old_io::Reader = &mut input;
let mut grid = Vec::new();
let mut line = [0; 10];
2014-11-17 02:39:01 -06:00
input.read(&mut line);
let mut row = Vec::new();
2015-01-31 11:20:46 -06:00
for c in &line {
row.push(square_from_char(*c as char))
}
grid.push(row);
let width = grid[0].len();
2015-01-31 11:20:46 -06:00
for row in &grid { assert!(row.len() == width) }
grid
}
mod test {
#[test]
pub fn trivial_to_string() {
assert!(lambda.to_string() == "\\")
}
}
pub fn main() {}