Compare commits
2 Commits
finish_gam
...
make_monst
| Author | SHA1 | Date | |
|---|---|---|---|
| cca9e8f285 | |||
| de5ea76913 |
@@ -168,6 +168,10 @@ impl Game {
|
|||||||
// TODO fight the monster
|
// TODO fight the monster
|
||||||
self.player.change_life(-1);
|
self.player.change_life(-1);
|
||||||
m.decrease_life(1);
|
m.decrease_life(1);
|
||||||
|
// monster died, player gains experience
|
||||||
|
if m.is_dead() {
|
||||||
|
self.player.gain_experience(m.get_experience_gain());
|
||||||
|
}
|
||||||
return m.is_dead();
|
return m.is_dead();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -186,11 +190,11 @@ impl Game {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/// updates the player's current level. This will remove collected artifacts and dead monsters.
|
/// updates the player's current level. This will remove collected artifacts and dead monsters.
|
||||||
pub fn update_level(&mut self) {
|
pub fn update_level(&mut self, ticks: u64) {
|
||||||
let player_pos = &self.player.get_immutable_position();
|
let player_pos = &self.player.get_immutable_position();
|
||||||
let player_level = player_pos.get_level();
|
let player_level = player_pos.get_level();
|
||||||
let level = &mut self.levels[player_level];
|
let level = &mut self.levels[player_level];
|
||||||
level.update();
|
level.update(ticks);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
11
src/level.rs
11
src/level.rs
@@ -152,7 +152,7 @@ impl Level {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn update(&mut self) {
|
pub fn update(&mut self, ticks: u64) {
|
||||||
for (index, a) in &mut self.artifacts.iter().enumerate() {
|
for (index, a) in &mut self.artifacts.iter().enumerate() {
|
||||||
if a.was_collected() {
|
if a.was_collected() {
|
||||||
self.artifacts.remove(index);
|
self.artifacts.remove(index);
|
||||||
@@ -165,6 +165,15 @@ impl Level {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
for index in 0..self.monsters.len() {
|
||||||
|
let mut dx = 0;
|
||||||
|
let speed = 50;
|
||||||
|
if ticks % speed == 0 {
|
||||||
|
dx = if (ticks / speed) % 2 == 0 { -1 } else { 1 };
|
||||||
|
}
|
||||||
|
|
||||||
|
self.monsters[index].get_position().change(dx, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
14
src/main.rs
14
src/main.rs
@@ -38,6 +38,7 @@ fn main() -> Result<()> {
|
|||||||
let mut terminal = Terminal::new(CrosstermBackend::new(stdout()))?;
|
let mut terminal = Terminal::new(CrosstermBackend::new(stdout()))?;
|
||||||
terminal.clear()?;
|
terminal.clear()?;
|
||||||
|
|
||||||
|
let mut ticks: u64 = 0;
|
||||||
loop {
|
loop {
|
||||||
terminal.draw(|frame| {
|
terminal.draw(|frame| {
|
||||||
let mut area = frame.size();
|
let mut area = frame.size();
|
||||||
@@ -67,18 +68,21 @@ fn main() -> Result<()> {
|
|||||||
height: 25,
|
height: 25,
|
||||||
};
|
};
|
||||||
frame.render_widget(
|
frame.render_widget(
|
||||||
Paragraph::new(format!("{}\nHealth: {}/{}\nGold: {}\nLevel: {}",
|
Paragraph::new(format!("{}\nHealth: {}/{}\nExp: {}\nGold: {}\nLevel: {}\nticks: {}",
|
||||||
game.get_player().get_name(),
|
game.get_player().get_name(),
|
||||||
game.get_player().get_life(),
|
game.get_player().get_life(),
|
||||||
game.get_player().get_max_life(),
|
game.get_player().get_max_life(),
|
||||||
|
game.get_player().get_experience(),
|
||||||
game.get_player().get_gold(),
|
game.get_player().get_gold(),
|
||||||
game.get_player().get_immutable_position().get_level()))
|
game.get_player().get_immutable_position().get_level(),
|
||||||
|
ticks
|
||||||
|
))
|
||||||
.white()
|
.white()
|
||||||
.on_blue(),
|
.on_blue(),
|
||||||
stats_area,
|
stats_area,
|
||||||
);
|
);
|
||||||
})?;
|
})?;
|
||||||
if event::poll(std::time::Duration::from_millis(16))? {
|
if event::poll(std::time::Duration::from_millis(50))? {
|
||||||
if let event::Event::Key(key) = event::read()? {
|
if let event::Event::Key(key) = event::read()? {
|
||||||
if key.kind == KeyEventKind::Press && key.code == KeyCode::Char('q') {
|
if key.kind == KeyEventKind::Press && key.code == KeyCode::Char('q') {
|
||||||
break;
|
break;
|
||||||
@@ -96,13 +100,14 @@ fn main() -> Result<()> {
|
|||||||
game.move_player(new_pos.0, new_pos.1);
|
game.move_player(new_pos.0, new_pos.1);
|
||||||
}
|
}
|
||||||
game.player_collects_artifact();
|
game.player_collects_artifact();
|
||||||
game.update_level();
|
|
||||||
if game.get_game_state() != GameState::RUNNING {
|
if game.get_game_state() != GameState::RUNNING {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
game.update_level(ticks);
|
||||||
|
ticks+=1;
|
||||||
}
|
}
|
||||||
loop {
|
loop {
|
||||||
let _ = terminal.draw(|frame| {
|
let _ = terminal.draw(|frame| {
|
||||||
@@ -131,6 +136,7 @@ fn main() -> Result<()> {
|
|||||||
"Congratulation! You mastered your way through the dungeon and won the game.".to_string()
|
"Congratulation! You mastered your way through the dungeon and won the game.".to_string()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
text += format!("\nYou gained {} experience.", game.get_player().get_experience()).as_str();
|
||||||
text += format!("\nYou collected {} gold.", game.get_player().get_gold()).as_str();
|
text += format!("\nYou collected {} gold.", game.get_player().get_gold()).as_str();
|
||||||
let paragraph = Paragraph::new(text).block(block).wrap(Wrap { trim: true });
|
let paragraph = Paragraph::new(text).block(block).wrap(Wrap { trim: true });
|
||||||
frame.render_widget(paragraph, area);
|
frame.render_widget(paragraph, area);
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ pub trait Monster {
|
|||||||
fn get_representation(&self) -> (&str, Color);
|
fn get_representation(&self) -> (&str, Color);
|
||||||
fn decrease_life(&mut self, by: usize);
|
fn decrease_life(&mut self, by: usize);
|
||||||
fn get_immutable_position(&self) -> &Position;
|
fn get_immutable_position(&self) -> &Position;
|
||||||
#[cfg(test)]
|
fn get_experience_gain(&self) -> usize;
|
||||||
fn get_position(&mut self) -> &mut Position;
|
fn get_position(&mut self) -> &mut Position;
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
fn get_life(&self) -> usize;
|
fn get_life(&self) -> usize;
|
||||||
@@ -17,6 +17,7 @@ macro_rules! default_monster {
|
|||||||
($($t:ty),+ $(,)?) => ($(
|
($($t:ty),+ $(,)?) => ($(
|
||||||
impl Monster for $t {
|
impl Monster for $t {
|
||||||
fn is_dead(&self) -> bool { self.life <= 0 }
|
fn is_dead(&self) -> bool { self.life <= 0 }
|
||||||
|
fn get_experience_gain(&self) -> usize { self.experience_gain }
|
||||||
fn get_representation(&self) -> (&str, Color) { (&self.symbol, self.color) }
|
fn get_representation(&self) -> (&str, Color) { (&self.symbol, self.color) }
|
||||||
fn decrease_life(&mut self, by: usize) {
|
fn decrease_life(&mut self, by: usize) {
|
||||||
self.life = self.life.saturating_sub(by);
|
self.life = self.life.saturating_sub(by);
|
||||||
@@ -24,7 +25,6 @@ macro_rules! default_monster {
|
|||||||
fn get_immutable_position(&self) -> &Position {
|
fn get_immutable_position(&self) -> &Position {
|
||||||
&self.position
|
&self.position
|
||||||
}
|
}
|
||||||
#[cfg(test)]
|
|
||||||
fn get_position(&mut self) -> &mut Position {
|
fn get_position(&mut self) -> &mut Position {
|
||||||
&mut self.position
|
&mut self.position
|
||||||
}
|
}
|
||||||
@@ -39,6 +39,7 @@ pub struct Rat {
|
|||||||
position: Position,
|
position: Position,
|
||||||
symbol: String,
|
symbol: String,
|
||||||
color: Color,
|
color: Color,
|
||||||
|
experience_gain: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Rat {
|
impl Rat {
|
||||||
@@ -49,6 +50,7 @@ impl Rat {
|
|||||||
position: Position::new(0, 0, 0),
|
position: Position::new(0, 0, 0),
|
||||||
symbol: String::from("R"),
|
symbol: String::from("R"),
|
||||||
color: Color::Black,
|
color: Color::Black,
|
||||||
|
experience_gain: 5,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn new_with_position(position: Position) -> Self {
|
pub fn new_with_position(position: Position) -> Self {
|
||||||
@@ -57,6 +59,7 @@ impl Rat {
|
|||||||
position,
|
position,
|
||||||
symbol: String::from("R"),
|
symbol: String::from("R"),
|
||||||
color: Color::Black,
|
color: Color::Black,
|
||||||
|
experience_gain: 5,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
@@ -69,6 +72,7 @@ pub struct Orc {
|
|||||||
position: Position,
|
position: Position,
|
||||||
symbol: String,
|
symbol: String,
|
||||||
color: Color,
|
color: Color,
|
||||||
|
experience_gain: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Orc {
|
impl Orc {
|
||||||
@@ -79,6 +83,7 @@ impl Orc {
|
|||||||
position: Position::new(0, 0, 0),
|
position: Position::new(0, 0, 0),
|
||||||
symbol: String::from("O"),
|
symbol: String::from("O"),
|
||||||
color: Color::DarkGray,
|
color: Color::DarkGray,
|
||||||
|
experience_gain: 10,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn new_with_position(position: Position) -> Self {
|
pub fn new_with_position(position: Position) -> Self {
|
||||||
@@ -87,6 +92,7 @@ impl Orc {
|
|||||||
position,
|
position,
|
||||||
symbol: String::from("O"),
|
symbol: String::from("O"),
|
||||||
color: Color::DarkGray,
|
color: Color::DarkGray,
|
||||||
|
experience_gain: 10,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ pub struct Player {
|
|||||||
life: i16,
|
life: i16,
|
||||||
max_life: i16,
|
max_life: i16,
|
||||||
gold: usize,
|
gold: usize,
|
||||||
|
experience: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Player {
|
impl Player {
|
||||||
@@ -18,6 +19,7 @@ impl Player {
|
|||||||
life: max_life,
|
life: max_life,
|
||||||
max_life,
|
max_life,
|
||||||
gold: 0,
|
gold: 0,
|
||||||
|
experience: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn get_name(&self) -> String {
|
pub fn get_name(&self) -> String {
|
||||||
@@ -44,6 +46,10 @@ impl Player {
|
|||||||
|
|
||||||
/// return the size of the players gold stash
|
/// return the size of the players gold stash
|
||||||
pub fn get_gold(&self) -> usize { self.gold }
|
pub fn get_gold(&self) -> usize { self.gold }
|
||||||
|
|
||||||
|
pub fn gain_experience(&mut self, amount: usize) { self.experience += amount }
|
||||||
|
|
||||||
|
pub fn get_experience(&self) -> usize { self.experience }
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
@@ -54,6 +60,7 @@ fn test_get_name() {
|
|||||||
life: 5,
|
life: 5,
|
||||||
max_life: 10,
|
max_life: 10,
|
||||||
gold: 0,
|
gold: 0,
|
||||||
|
experience: 0,
|
||||||
};
|
};
|
||||||
assert_eq!(p.get_name(), "Teddy Tester");
|
assert_eq!(p.get_name(), "Teddy Tester");
|
||||||
}
|
}
|
||||||
@@ -76,6 +83,7 @@ fn test_change_life() {
|
|||||||
life: 5,
|
life: 5,
|
||||||
max_life: 10,
|
max_life: 10,
|
||||||
gold: 0,
|
gold: 0,
|
||||||
|
experience: 0,
|
||||||
};
|
};
|
||||||
assert_eq!(p.get_life(), 5);
|
assert_eq!(p.get_life(), 5);
|
||||||
p.change_life(-2);
|
p.change_life(-2);
|
||||||
@@ -108,6 +116,7 @@ fn test_max_life() {
|
|||||||
life: 5,
|
life: 5,
|
||||||
max_life: 10,
|
max_life: 10,
|
||||||
gold: 0,
|
gold: 0,
|
||||||
|
experience: 0,
|
||||||
};
|
};
|
||||||
assert_eq!(p.get_max_life(), 10);
|
assert_eq!(p.get_max_life(), 10);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user