From e7b227ed268e8570518f9d1452b5e7d0d0a0ee32 Mon Sep 17 00:00:00 2001 From: Luis Ferro Date: Tue, 12 Nov 2019 14:23:00 +0100 Subject: Add player character in the map --- src/character.rs | 9 +++++++-- src/main.rs | 19 +++++++++++++++++-- 2 files changed, 24 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/character.rs b/src/character.rs index 3e6c4a7..a62c51f 100644 --- a/src/character.rs +++ b/src/character.rs @@ -6,12 +6,13 @@ pub struct Character { pub name: String, pub class: String, pub health: i32, + pub level: i32, + pub location: Point, max_health: i32, attack: i32, dodge: i32, luck: i32, xp: i32, - location: Point } pub trait Player { @@ -22,6 +23,7 @@ pub trait Player { attack: i32, dodge: i32, luck: i32, + level: i32, location: Point ) -> Character; @@ -59,6 +61,7 @@ impl Player for Character { attack: i32, dodge: i32, luck: i32, + level: i32, location: Point ) -> Character { Character { @@ -70,6 +73,7 @@ impl Player for Character { dodge: dodge, luck: luck, xp: 0, + level: 0, location: location } } @@ -86,6 +90,7 @@ impl Player for Character { self.attack, self.dodge, self.luck + player_luck, + 0, (0,0) ) } @@ -139,7 +144,7 @@ mod tests { use super::*; fn test_attack() { - let player = Character::new("".to_string(), "Rogue".to_string(), 1, 4, 1, 4, (0,0)); + let player = Character::new("".to_string(), "Rogue".to_string(), 1, 4, 1, 4, 0,(0,0)); assert_eq!(player.attack(), 6); } diff --git a/src/main.rs b/src/main.rs index c4c6f4f..08e1b25 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,9 +60,10 @@ fn main() { let mut dungeon = Dungeon::new( window.get_max_x() as usize, - window.get_max_y() as usize - 2, + window.get_max_y() as usize - 2, // allow 2 lines for game stats 5 ); + dungeon.generate(); let start_location = dungeon.levels[0].get_start_point(); @@ -74,9 +75,9 @@ fn main() { 10, 10, 20, + 0, start_location ); - character.place(start_location); render_level(&window, &dungeon.levels[0]); @@ -85,7 +86,20 @@ fn main() { loop { // update actors + + // update character + window.mv(window.get_max_y() - 2, 0); + window.clrtoeol(); + + window.refresh(); + + window.addstr(character.stats() + "\n"); + window.addstr(character.info() + "\n"); + + window.mv(character.location.1 as i32,character.location.0 as i32); + window.refresh(); + draw_block(&window, &world::TileType::Character); window.refresh(); // get input and execute it @@ -100,6 +114,7 @@ fn main() { Some(_) => (), None => (), } + // actors actions (normally attack / interact if on same location as the character) } endwin(); } -- cgit v1.2.3 From fe183a3453a828c077db85cd72d3ce39410f2196 Mon Sep 17 00:00:00 2001 From: Luis Ferro Date: Tue, 12 Nov 2019 14:58:24 +0100 Subject: merge --- src/entities.rs | 41 ++++------------------------------------- 1 file changed, 4 insertions(+), 37 deletions(-) (limited to 'src') diff --git a/src/entities.rs b/src/entities.rs index c3ec262..57ecb4c 100644 --- a/src/entities.rs +++ b/src/entities.rs @@ -45,6 +45,7 @@ pub trait Player { attack: i32, dodge: i32, luck: i32, + level: i32, location: Point ) -> Self; fn damage(&mut self, damage_amount: i32); @@ -52,7 +53,6 @@ pub trait Player { fn attack(&self) -> i32; fn dodge(&self) -> i32; fn stats(&self) -> String; - fn walk(&mut self, dir: Direction); } impl Entity for Character { @@ -75,9 +75,9 @@ impl Enemy for Character { attack: i32, dodge: i32, luck: i32, + level: i32, location: Point ) -> Character { - Character { name: class.clone(), class: class.clone(), max_health: health, @@ -88,7 +88,6 @@ impl Enemy for Character { xp: 0, location: location, tile_type: TileType::Character - } } fn set_tile_type(&mut self, tile_type: TileType) { @@ -105,8 +104,7 @@ impl Player for Character { dodge: i32, luck: i32, level: i32, - location: Point, - tile_type: TileType + location: Point ) -> Character { Character { name: name, @@ -123,37 +121,6 @@ impl Player for Character { } } - fn place(&mut self, location: Point) { - self.location = location; - } - - fn select(&self, player_name: String, player_luck: i32) -> Self { - Self::new( - player_name, - self.class.to_string(), - self.health, - self.attack, - self.dodge, - self.luck + player_luck, - 0, - (0,0) - ) - } - - location: location, - tile_type: TileType::Player - } - } - - fn walk(&mut self, dir: Direction) { - match dir { - Direction::North => { (); }, - Direction::South => { (); }, - Direction::East => { (); }, - Direction::West => { (); } - } - } - fn damage(&mut self, damage_amount: i32) { self.health = cmp::max(0, self.health - damage_amount); self.xp += 2; @@ -187,7 +154,7 @@ mod tests { use super::*; fn test_attack() { - let player: Character = Player::new("".to_string(), "Rogue".to_string(), 1, 4, 1, 4, (0,0)); + let player: Character = Player::new("".to_string(), "Rogue".to_string(), 1, 4, 1, 4, 0, (0,0)); assert_eq!(player.attack(), 6); } -- cgit v1.2.3 From 8b11578ed5d2b254c7b0f827170aadac6490434b Mon Sep 17 00:00:00 2001 From: Luis Ferro Date: Tue, 12 Nov 2019 16:07:29 +0100 Subject: Rendering stuff --- src/entities.rs | 22 ++++++++++++++++++++++ src/main.rs | 5 +---- src/state.rs | 23 +---------------------- src/tiling.rs | 2 +- src/world.rs | 21 ++------------------- 5 files changed, 27 insertions(+), 46 deletions(-) (limited to 'src') diff --git a/src/entities.rs b/src/entities.rs index 2d3078c..a01d86a 100644 --- a/src/entities.rs +++ b/src/entities.rs @@ -1,5 +1,6 @@ use std::cmp; +use pancurses::{Window}; use crate::world::{Point}; use crate::tiling::TileType; @@ -23,6 +24,10 @@ pub struct Character { tile_type: TileType } +pub trait Render { + fn render(&self, window: &Window); +} + pub trait Enemy { fn new( class: String, @@ -54,6 +59,23 @@ pub trait Player { fn stats(&self) -> String; } +impl Render for Character { + fn render(&self, window: &Window) { + // window.mv(window.get_max_y() - 2, 0); + // window.clrtoeol(); + + // window.refresh(); + + // window.addstr(self.character.info() + "\n"); + + // window.mv(self.character.location.1 as i32,self.character.location.0 as i32); + // window.refresh(); + // draw_block(&window, self.character.tile_type); + // window.refresh(); + + } +} + impl Entity for Character { fn place(&mut self, location: Point) { self.location = location; diff --git a/src/main.rs b/src/main.rs index 11cac4d..b59d587 100644 --- a/src/main.rs +++ b/src/main.rs @@ -39,9 +39,6 @@ fn main() { state.init(); - // Dump the whole dungeon structure in terminal for debugging - state.debug(); - window.keypad(true); noecho(); @@ -52,7 +49,7 @@ fn main() { // update character state.show_character(&window); - + // get input and execute it match window.getch() { diff --git a/src/state.rs b/src/state.rs index 6dad58e..1f50f1a 100644 --- a/src/state.rs +++ b/src/state.rs @@ -1,7 +1,7 @@ use pancurses::Window; use std::env; -use crate::entities::{Character, Entity}; +use crate::entities::{Character, Entity, Render}; use crate::world::{Dungeon, Generatable, Level}; pub struct State { @@ -27,33 +27,12 @@ impl State { self.character.place(self.current_level().get_start_point()); } - pub fn debug(&self) { - match env::var("DEBUG") { - Ok(_) => { - self.dungeon.debug_levels(); - }, - Err(_) => () - }; - } - pub fn render_level(&self, window: &Window) { self.current_level().render(window); } pub fn show_character(&self, window: &Window) { self.character.render(window); - - // window.mv(window.get_max_y() - 2, 0); - // window.clrtoeol(); - - // window.refresh(); - - // window.addstr(self.character.info() + "\n"); - - // window.mv(self.character.location.1 as i32,self.character.location.0 as i32); - // window.refresh(); - // draw_block(&window, self.character.tile_type); - // window.refresh(); } fn current_level(&self) -> &Level { diff --git a/src/tiling.rs b/src/tiling.rs index 3e33de1..d443fb6 100644 --- a/src/tiling.rs +++ b/src/tiling.rs @@ -53,7 +53,7 @@ fn tile_to_str(tile: &TileType) -> &str { } } -fn draw_block(window: &Window, block: &TileType) { +pub fn draw_block(window: &Window, block: &TileType) { window.printw(tile_to_str(block)); } diff --git a/src/world.rs b/src/world.rs index 42e4d7c..15c77e4 100644 --- a/src/world.rs +++ b/src/world.rs @@ -1,7 +1,7 @@ use rand::Rng; use pancurses::{Window}; use crate::entities::{Entity}; -use crate::tiling::{TileGrid, Tileable, TileType}; +use crate::tiling::{TileGrid, Tileable, TileType, draw_block}; pub type Point = (usize, usize); @@ -187,23 +187,6 @@ impl Dungeon { levels: vec![] } } - - pub fn debug_levels(&self) { - for l in &self.levels { - Dungeon::debug_level(l); - } - } - - fn debug_level(level: &Level) { - let grid = level.to_tilegrid().unwrap(); - - for line in grid.raw_data().iter() { - for block in line.iter() { - print!("{}", Dungeon::tile_to_str(block)); - } - print!("\n"); - } - } } impl Generatable for Dungeon { @@ -270,7 +253,7 @@ impl Level { for (linenum, line) in grid.raw_data().iter().enumerate() { for block in line.iter() { - Dungeon::draw_block(&window, &block); + draw_block(&window, &block); } window.mv(linenum as i32, 0); } -- cgit v1.2.3