$ cargo new --bin text-adventure
Created binary (application) `text-adventure` project
$ cd text-adventure
$ cargo run
Usamos módulos para agrupar funcionalidad
src/house.rs
pub struct Room<'a> {
pub title: &'a str,
pub description: &'a str,
pub transitions: Vec<i32>
}
pub type House<'a> = HashMap<i32, Room<'a>>;
pub fn build_house<'a>() -> House<'a> {
let mut house = House::new();
house.insert(-1, Room {
title: "Entrada",
description: "Estás frente a la puerta de la casa",
transitions: vec![0],
});
// ...
house
}
src/player.rs
pub struct Detective<'a, 'b> {
pub name: &'a str,
pub current_room: i32,
pub house: &'b House<'b>
}
impl<'a, 'b> Detective<'a, 'b> {
pub fn change_room(&mut self,
room_id: i32)
-> Result<&mut Self, &str> {
...
}
}
mod house;
mod player;
pub struct ...
pub type ...
pub fn ...
pub struct Room {
pub title ...
}
use house::{House, build_house};
use player::Detective;
fn main() {
let house: House = build_house();
let mut detective: Detective = Detective {
name: "test",
current_room: -1,
house: &house
};
}
fn main() {
let house = build_house();
let mut detective = Detective {
name: "test",
current_room: -1,
house: &house
};
}
fn main() {
...
loop {
}
}
fn main() {
...
loop {
}
}
match house.get(&detective.current_room) {
Some(room) => {
...
},
None => panic!("Habitación inválida..."),
}
println!("Estás en: {} ({})", room.title, room.description);
println!("Te puedes mover a:");
for t in &room.transitions {
match house.get(&t) {
Some(t_room) => {
println!("\t- {}: {}", &t, t_room.title);
},
None => panic!("Transición inválida..."),
}
}
println!("Puedes indicar ....");
// en el tope de main.rs
use std::io::{self};
// dentro del loop
let mut next_room_buf = String::new();
match io::stdin().read_line(&mut next_room_buf) {
Ok(_) => {
....
},
Err(_) => panic!("Error al leer entrada..."),
}
let command = next_room_buf.trim();
if command == "x" {
println!("Adiós!");
break;
} else {
match command.parse::<i32>() {
Ok(room_number) => {
match detective.change_room(room_number) {
Ok(_) => {},
Err(e) => panic!("err: {}", e),
}
},
Err(err) => {
println!("Error: {:?}", err);
}
}
}