blastmud/blastmud_game/src/static_content/fixed_item.rs

126 lines
5.7 KiB
Rust

// For things like signs that don't do much except stay where they are and carry a description.
use super::{possession_type::PossessionData, StaticItem};
use crate::{
models::item::{Item, LiquidType, LocationActionType, Pronouns},
static_content::{possession_type::LiquidContainerData, room::computer_museum},
};
use ansi::ansi;
use once_cell::sync::OnceCell;
use serde::{Deserialize, Serialize};
use std::collections::BTreeMap;
#[derive(Serialize, Deserialize)]
pub struct FixedItem {
pub code: String,
pub name: String,
pub description: String,
pub description_less_explicit: Option<String>,
pub location: String,
pub proper_noun: bool,
pub aliases: Vec<String>,
pub action_type: LocationActionType,
}
impl Default for FixedItem {
fn default() -> Self {
Self {
code: "default".to_owned(),
name: "default".to_owned(),
description: "A thingy".to_owned(),
description_less_explicit: None,
location: "unset".to_owned(),
proper_noun: true,
aliases: vec![],
action_type: LocationActionType::Normal,
}
}
}
fn fixed_item_list() -> &'static Vec<FixedItem> {
static FIXED_ITEM_LIST: OnceCell<Vec<FixedItem>> = OnceCell::new();
FIXED_ITEM_LIST.get_or_init(|| {
vec![
FixedItem {
code: "repro_xv_updates_red_poster".to_owned(),
name: ansi!("red poster").to_owned(),
description: "A larger faded poster with a thick red border. It says:\n\
\t\"Dear newly memory wiped citizen! Welcome to Melbs! A lot \
has changed since the memories your implant is based on were \
created. The global Gazos-Murlison Co empire fell in a nuclear \
attack, and most cities of the world were destroyed. \
A few cities around Australia, like this one, took some fallout \
but survived. The few remaining cities are now all independently \
run. I was a young governor under the empire, and I now rule inner \
Melbs as the King. I have gotten all the fallout out from the inner city, \
and I have a robot police force to keep you safe from the worst baddies, \
but be warned - there still are some dangers near by, and the world \
further out, outside my realm, is a dangerous and radioactive place.\"".to_owned(),
description_less_explicit: None,
location: "room/repro_xv_updates".to_owned(),
proper_noun: false,
aliases: vec!["poster".to_owned()],
..Default::default()
},
FixedItem {
code: "melbs_king_st_spring_fed_fountain".to_owned(),
name: "spring fed fountain".to_owned(),
description: ansi!("A stainless steel fountain, clearly old, but in surprisingly good \
condition. A discoloured bronze plaque attached to it proudly declares \
that it is fed by a natural spring underneath it. It was designed so that \
unused water runs off it into a dog bowl - presumably in a time long past when \
dogs were friendly companions and not the menace they are today. It smells \
faintly of iron. [Try <bold>drink from fountain<reset> or, if you have a suitable \
container, <bold>fill<reset> container <bold>from fountain<reset>].").to_owned(),
description_less_explicit: None,
location: "room/melbs_kingst_40".to_owned(),
proper_noun: false,
aliases: vec!["fountain".to_owned()],
..Default::default()
},
].into_iter().chain(computer_museum::fixed_items().into_iter()).collect()
})
}
pub fn fixed_item_properties() -> &'static BTreeMap<&'static str, PossessionData> {
static PROPS: OnceCell<BTreeMap<&'static str, PossessionData>> = OnceCell::new();
PROPS.get_or_init(|| {
vec![(
"melbs_king_st_spring_fed_fountain",
PossessionData {
liquid_container_data: Some(LiquidContainerData {
capacity: 5000000, // mL
allowed_contents: Some(vec![LiquidType::Water]),
..Default::default()
}),
..Default::default()
},
)]
.into_iter()
.chain(computer_museum::fixed_item_properties().into_iter())
.collect()
})
}
pub fn static_items() -> Box<dyn Iterator<Item = StaticItem>> {
Box::new(fixed_item_list().iter().map(|r| StaticItem {
item_code: r.code.clone(),
initial_item: Box::new(|| Item {
item_code: r.code.clone(),
item_type: "fixed_item".to_owned(),
display: r.name.clone(),
details: Some(r.description.clone()),
details_less_explicit: r.description_less_explicit.as_ref().map(|d| d.clone()),
location: r.location.clone(),
is_static: true,
aliases: r.aliases.iter().map(|s| (*s).clone()).collect(),
pronouns: Pronouns {
is_proper: r.proper_noun,
..Pronouns::default_inanimate()
},
action_type: r.action_type.clone(),
..Item::default()
}),
extra_items_on_create: Box::new(|_| Box::new(std::iter::empty())),
}))
}