From 0d862760bdcd4156d98a5efbc2b226f9a2bb88fe Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 11:26:25 -0400 Subject: [PATCH] item trait --- src/items.rs | 96 ++++++++++++++++++++++++++++++++++++++++++ src/logic/shop/item.rs | 16 +++++++ src/logic/shop/mod.rs | 1 + 3 files changed, 113 insertions(+) create mode 100644 src/logic/shop/item.rs diff --git a/src/items.rs b/src/items.rs index d157dbc..ee04336 100644 --- a/src/items.rs +++ b/src/items.rs @@ -1,10 +1,19 @@ +use raylib::texture::Texture2D; use serde::{Deserialize, Serialize}; +pub trait ItemBase { + fn get_cost(&self) -> u32; + fn get_name(&self) -> String; + fn get_description(&self) -> String; + fn get_texture(&self) -> &Texture2D; +} + #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub struct StunGun { pub range: f32, pub duration: f64, pub level: u8, + cost: u32, } impl StunGun { @@ -13,6 +22,7 @@ impl StunGun { range: 30.0, duration: 0.75, level: 1, + cost: 30, } } pub fn lvl2() -> Self { @@ -20,6 +30,7 @@ impl StunGun { range: 60.0, duration: 1.25, level: 2, + cost: 40, } } pub fn lvl3() -> Self { @@ -27,14 +38,34 @@ impl StunGun { range: 80.0, duration: 1.0, level: 3, + cost: 50, } } } +impl ItemBase for StunGun { + fn get_cost(&self) -> u32 { + self.cost + } + + fn get_name(&self) -> String { + return "Stun Gun".to_string(); + } + + fn get_description(&self) -> String { + return "Stun your enemies! Just don't point it at yourself.".to_string(); + } + + fn get_texture(&self) -> &Texture2D { + todo!() + } +} + #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub struct AirBag { extra_oxygen: u32, pub level: u8, + cost: u32, } impl AirBag { @@ -42,26 +73,48 @@ impl AirBag { Self { extra_oxygen: 15, level: 1, + cost: 30, } } pub fn lvl2() -> Self { Self { extra_oxygen: 30, level: 2, + cost: 40, } } pub fn lvl3() -> Self { Self { extra_oxygen: 45, level: 3, + cost: 50, } } } +impl ItemBase for AirBag { + fn get_cost(&self) -> u32 { + self.cost + } + + fn get_name(&self) -> String { + return "Bag of Air".to_string(); + } + + fn get_description(&self) -> String { + return "Its.. a bag. Filled with air. Duh".to_string(); + } + + fn get_texture(&self) -> &Texture2D { + todo!() + } +} + #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub struct Flashlight { pub radius: f32, pub level: u8, + cost: u32, } impl Flashlight { @@ -69,26 +122,48 @@ impl Flashlight { Self { radius: 0.25, level: 1, + cost: 40, } } pub fn lvl2() -> Self { Self { radius: 0.5, level: 2, + cost: 50, } } pub fn lvl3() -> Self { Self { radius: 1.0, level: 3, + cost: 60, } } } +impl ItemBase for Flashlight { + fn get_cost(&self) -> u32 { + self.cost + } + + fn get_name(&self) -> String { + return "Flashlight".to_string(); + } + + fn get_description(&self) -> String { + return "See better for longer".to_string(); + } + + fn get_texture(&self) -> &Texture2D { + todo!() + } +} + #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub struct Flippers { pub speed_increase: f32, pub level: u8, + cost: u32, } impl Flippers { @@ -96,18 +171,39 @@ impl Flippers { Self { speed_increase: 1.2, level: 1, + cost: 30, } } pub fn lvl2() -> Self { Self { speed_increase: 1.5, level: 2, + cost: 40, } } pub fn lvl3() -> Self { Self { speed_increase: 1.8, level: 3, + cost: 50, } } } + +impl ItemBase for Flippers { + fn get_cost(&self) -> u32 { + self.cost + } + + fn get_name(&self) -> String { + return "Flippers".to_string(); + } + + fn get_description(&self) -> String { + return "Swim faster, and look stupid at the same time!".to_string(); + } + + fn get_texture(&self) -> &Texture2D { + todo!() + } +} diff --git a/src/logic/shop/item.rs b/src/logic/shop/item.rs new file mode 100644 index 0000000..6af28cb --- /dev/null +++ b/src/logic/shop/item.rs @@ -0,0 +1,16 @@ +use raylib::prelude::*; + +use super::itemui::ShopItemUi; + +// pub struct ShopItemWrapper { +// bounds: Rectangle, +// ui: ShopItemUi +// } + +// impl ShopItemWrapper { + +// pub fn new(name: String, from_inventory: Option, first_item_bounds: Rectangle, index: u8){ + +// } + +// } \ No newline at end of file diff --git a/src/logic/shop/mod.rs b/src/logic/shop/mod.rs index d025468..0013b5a 100644 --- a/src/logic/shop/mod.rs +++ b/src/logic/shop/mod.rs @@ -1,5 +1,6 @@ mod mainui; mod itemui; +mod item; use raylib::prelude::*;