diff options
author | Guillaume Pasquet <dev@etenil.net> | 2019-07-05 21:03:55 +0100 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2019-07-05 21:03:55 +0100 |
commit | 7abfab104ffa052d885eb7d333f0569dc61ab74c (patch) | |
tree | 6ee0a9d1743de49cbcb36b2fdc6e6e9024013f33 |
Start generating game world
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Cargo.lock | 205 | ||||
-rw-r--r-- | Cargo.toml | 10 | ||||
-rw-r--r-- | src/character.rs | 116 | ||||
-rw-r--r-- | src/computer.rs | 36 | ||||
-rw-r--r-- | src/main.rs | 70 | ||||
-rw-r--r-- | src/world.rs | 79 |
7 files changed, 518 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..53eaa21 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +**/*.rs.bk diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..79ba554 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,205 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "autocfg" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "c2-chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cc" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cfg-if" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "getrandom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "lazy_static" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.58" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "log" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ncurses" +version = "5.99.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pancurses" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "ncurses 5.99.0 (registry+https://github.com/rust-lang/crates.io-index)", + "pdcurses-sys 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winreg 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pdcurses-sys" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pkg-config" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "ppv-lite86" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rand" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_chacha" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "roguelike" +version = "0.1.0" +dependencies = [ + "pancurses 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "text_io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "spin" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "text_io" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winreg" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0e49efa51329a5fd37e7c79db4621af617cd4e3e5bc224939808d076077077bf" +"checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" +"checksum cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d" +"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" +"checksum getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e65cce4e5084b14874c4e7097f38cab54f47ee554f9194673456ea379dcc4c55" +"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" +"checksum libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = "6281b86796ba5e4366000be6e9e18bf35580adf9e63fbe2294aadb587613a319" +"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" +"checksum ncurses 5.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "15699bee2f37e9f8828c7b35b2bc70d13846db453f2d507713b758fabe536b82" +"checksum pancurses 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d3058bc37c433096b2ac7afef1c5cdfae49ede0a4ffec3dfc1df1df0959d0ff0" +"checksum pdcurses-sys 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "084dd22796ff60f1225d4eb6329f33afaf4c85419d51d440ab6b8c6f4529166b" +"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" +"checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b" +"checksum rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c" +"checksum rand_chacha 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e193067942ef6f485a349a113329140d0ab9e2168ce92274499bb0e9a4190d9d" +"checksum rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca" +"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +"checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" +"checksum text_io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "9658b61ebd1d2a40c276ba2335890b9eb6550b67458a6fbce2022e58c3350a50" +"checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +"checksum winreg 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..b26809f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "roguelike" +version = "0.1.0" +authors = ["Guillaume"] +edition = "2018" + +[dependencies] +rand = "0.7.0" +text_io = "0.1.7" +pancurses = "0.16" diff --git a/src/character.rs b/src/character.rs new file mode 100644 index 0000000..04b31a8 --- /dev/null +++ b/src/character.rs @@ -0,0 +1,116 @@ +use std::cmp;
+
+pub struct Character {
+ pub name: String,
+ pub class: String,
+ pub health: i32,
+ max_health: i32,
+ attack: i32,
+ dodge: i32,
+ luck: i32,
+ xp: i32
+}
+
+pub trait Player {
+ fn new(
+ name: String,
+ class: String,
+ health: i32,
+ attack: i32,
+ dodge: i32,
+ luck: i32
+ ) -> Character;
+
+ fn select(&self, player_name: String, player_luck: i32) -> Self;
+
+ fn damage(&mut self, damage_amount: i32);
+
+ fn heal(&mut self, heal_amount: i32);
+
+ fn attack(&self) -> i32;
+
+ fn dodge(&self) -> i32;
+
+ fn info(&self) -> String;
+
+ fn stats(&self) -> String;
+}
+
+
+impl Player for Character {
+ fn new(
+ name: String,
+ class: String,
+ health: i32,
+ attack: i32,
+ dodge: i32,
+ luck: i32
+ ) -> Character {
+ Character {
+ name: name,
+ class: class,
+ max_health: health,
+ health: health,
+ attack: attack,
+ dodge: dodge,
+ luck: luck,
+ xp: 0,
+ }
+ }
+
+ 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
+ )
+ }
+
+ fn damage(&mut self, damage_amount: i32) {
+ self.health = cmp::max(0, self.health - damage_amount);
+ self.xp += 2;
+ }
+
+ fn heal(&mut self, heal_amount: i32) {
+ if (self.health) <= self.max_health {
+ self.health = cmp::min(self.health + heal_amount, self.max_health);
+ self.xp += 1;
+ }
+ }
+
+ fn attack(&self) -> i32 {
+ self.xp + self.attack + self.luck / 2
+ }
+
+ fn dodge(&self) -> i32 {
+ self.xp + self.dodge + self.luck / 2
+ }
+
+ fn info(&self) -> String {
+ format!(
+ "{} \thp: {} attack: {} dodge: {} luck: {}",
+ self.class, self.health, self.attack, self.dodge, self.luck
+ )
+ }
+
+ fn stats(&self) -> String {
+ format!(
+ "{} - hp: {} attack: {} dodge: {} luck: {} experience: {}",
+ self.class, self.health, self.attack, self.dodge, self.luck, self.xp
+ )
+ }
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ fn test_attack() {
+ let player = Character::new("".to_string(), "Rogue".to_string(), 1, 4, 1, 4);
+
+ assert_eq!(player.attack(), 6);
+ }
+}
diff --git a/src/computer.rs b/src/computer.rs new file mode 100644 index 0000000..a8b9b3e --- /dev/null +++ b/src/computer.rs @@ -0,0 +1,36 @@ +pub struct Computer {
+ level: i32,
+ difficulty: i32,
+}
+
+pub trait Enemy {
+ fn new(level: i32, difficulty: i32) -> Self;
+
+ fn action(&self) -> (i32, i32);
+
+ fn level_up(&mut self);
+
+ fn stats(&self) -> String;
+}
+
+impl Enemy for Computer {
+ fn new(level: i32, difficulty: i32) -> Computer {
+ Computer {
+ level: level,
+ difficulty: difficulty
+ }
+ }
+
+ fn action(&self) -> (i32, i32) {
+ (self.level, self.difficulty)
+ }
+
+ fn level_up(&mut self) {
+ self.level += 1;
+ self.difficulty += 3;
+ }
+
+ fn stats(&self) -> String {
+ format!("level: {} difficulty: {}", self.level, self.difficulty)
+ }
+}
diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..65ada01 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,70 @@ +extern crate rand; +extern crate pancurses; + +#[macro_use] +extern crate text_io; + +mod character; +mod computer; +mod world; + +use character::Player; +use computer::Enemy; +use pancurses::{initscr, endwin}; +use rand::Rng; +use std::io; + +fn main() { + let window = initscr(); + window.printw("Hello Rust"); + window.refresh(); + window.mv(2, 2); + window.printw("toto"); + window.refresh(); + window.getch(); + endwin(); +} + // println!( + // "=== Welcome to RRL {} the {}! ===\n", + // env!("CARGO_PKG_DESCRIPTION"), env!("CARGO_PKG_VERSION") + // ); + + // let characters: [character::Character; 5] = [ + // character::Character::new("".to_string(), "Cleric".to_string(), 7, 5, 6, 7), + // character::Character::new("".to_string(), "Warrior".to_string(), 10, 5, 5, 5), + // character::Character::new("".to_string(), "Hunter".to_string(), 5, 7, 7, 6), + // character::Character::new("".to_string(), "Wizard".to_string(), 3, 10, 5, 7), + // character::Character::new("".to_string(), "Thief".to_string(), 4, 5, 6, 10), + // ]; + + // let _luck_amount = rand::thread_rng().gen_range(2, 6); + + // println!("You enter the Ephemeral Plane of Creation..."); + // println!("Please enter your name."); + + // let mut input_text = String::new(); + + // io::stdin() + // .read_line(&mut input_text) + // .expect("Failed to read line"); + // let _character_name = input_text.trim(); + + // println!("Please select your character type:"); + // for (i, elem) in characters.iter().enumerate() { + // print!("\n{}. {}\n\n", i + 1, elem.info()); + // } + + // let mut character_index: usize = 100; + // while character_index > characters.len() { + // character_index = read!(); + // } + + // let mut player = characters[character_index].select(_character_name.to_string(), _luck_amount); + + // play(&mut player); +// } + +fn play(player: &mut character::Character) { + println!("=== Welcome to RRL {} the {}! ===\n", player.name, player.class); + println!("Your unique stats: {}", player.stats()); +} diff --git a/src/world.rs b/src/world.rs new file mode 100644 index 0000000..fe89c3d --- /dev/null +++ b/src/world.rs @@ -0,0 +1,79 @@ +pub enum BlockType {
+ Nothing,
+ Wall,
+ Floor,
+}
+
+pub struct World {
+ size: usize,
+ world: Vec<Vec<BlockType>>
+}
+
+pub trait GameWorld<'a> {
+ fn new(size: usize) -> Self;
+
+ fn generate(&mut self);
+
+ fn get_world(&'a self) -> &'a Vec<Vec<BlockType>>;
+
+ fn get_item(&'a self, x: usize, y: usize) -> &'a BlockType;
+}
+
+impl World {
+ fn make_corridor(&mut self, start: (usize, usize), end: (usize, usize)) {
+ for x in start.0..end.0 {
+ for y in start.1..end.1 {
+ self.world[x - 1][y] = BlockType::Wall;
+ self.world[x][y] = BlockType::Floor;
+ self.world[x + 1][y] = BlockType::Wall;
+ }
+ }
+ }
+}
+
+impl<'a> GameWorld<'a> for World {
+ fn new(size: usize) -> World {
+ World {
+ size: size,
+ world: Vec::with_capacity(size)
+ }
+ }
+
+ fn generate(&mut self) {
+ for _ in 0..self.size {
+ let mut subvec = Vec::with_capacity(self.size);
+ for _ in 0..self.size {
+ subvec.push(BlockType::Nothing);
+ }
+ self.world.push(subvec);
+ }
+
+ self.make_corridor((1, 10), (1, 13))
+ }
+
+ fn get_world(&'a self) -> &'a Vec<Vec<BlockType>> {
+ &self.world
+ }
+
+ fn get_item(&'a self, x: usize, y: usize) -> &'a BlockType {
+ &self.world[x][y]
+ }
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn test_generates_world() {
+ let mut world = World::new(128);
+ world.generate();
+
+ assert_eq!(world.get_world().len(), 128);
+ assert_eq!(world.get_world()[0].len(), 128);
+ match world.get_world()[0][0] {
+ BlockType::Nothing => assert!(true),
+ _ => assert!(false)
+ }
+ }
+}
|