This repository has been archived on 2021-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-48/src/items.rs
2021-04-25 13:28:34 -04:00

223 lines
4.1 KiB
Rust

use raylib::texture::Texture2D;
use serde::{Deserialize, Serialize};
pub trait ItemBase {
fn get_cost(&self) -> u32;
fn get_level(&self) -> u8;
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 {
pub fn lvl1() -> Self {
Self {
range: 30.0,
duration: 0.75,
level: 1,
cost: 30,
}
}
pub fn lvl2() -> Self {
Self {
range: 60.0,
duration: 1.25,
level: 2,
cost: 40,
}
}
pub fn lvl3() -> Self {
Self {
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!\nJust don't point it at yourself.".to_string();
}
fn get_texture(&self) -> &Texture2D {
todo!()
}
fn get_level(&self) -> u8 {
self.level
}
}
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
pub struct AirBag {
pub extra_oxygen: f32,
pub level: u8,
cost: u32,
}
impl AirBag {
pub fn lvl1() -> Self {
Self {
extra_oxygen: 0.15,
level: 1,
cost: 30,
}
}
pub fn lvl2() -> Self {
Self {
extra_oxygen: 0.30,
level: 2,
cost: 40,
}
}
pub fn lvl3() -> Self {
Self {
extra_oxygen: 0.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.\nFilled with air. Duh".to_string();
}
fn get_texture(&self) -> &Texture2D {
todo!()
}
fn get_level(&self) -> u8 {
self.level
}
}
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
pub struct Flashlight {
pub radius: f32,
pub level: u8,
cost: u32,
}
impl Flashlight {
pub fn lvl1() -> Self {
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!()
}
fn get_level(&self) -> u8 {
self.level
}
}
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
pub struct Flippers {
pub speed_increase: f32,
pub level: u8,
cost: u32,
}
impl Flippers {
pub fn lvl1() -> Self {
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\nat the same time!".to_string();
}
fn get_texture(&self) -> &Texture2D {
todo!()
}
fn get_level(&self) -> u8 {
self.level
}
}