veloren/common/src/recipe.rs

108 lines
3.2 KiB
Rust
Raw Normal View History

2020-07-14 20:11:39 +00:00
use crate::{
2020-12-12 22:14:24 +00:00
assets::{self, AssetExt, AssetHandle},
comp::{item::ItemDef, Inventory, Item},
2020-07-14 20:11:39 +00:00
};
use hashbrown::HashMap;
use serde::{Deserialize, Serialize};
2020-12-12 22:14:24 +00:00
use std::sync::Arc;
2020-07-14 20:11:39 +00:00
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Recipe {
pub output: (Arc<ItemDef>, u32),
pub inputs: Vec<(Arc<ItemDef>, u32)>,
2020-07-14 20:11:39 +00:00
}
#[allow(clippy::type_complexity)]
impl Recipe {
/// Perform a recipe, returning a list of missing items on failure
pub fn perform(
&self,
inv: &mut Inventory,
) -> Result<Option<(Item, u32)>, Vec<(&ItemDef, u32)>> {
2020-07-14 20:11:39 +00:00
// Get ingredient cells from inventory,
inv.contains_ingredients(self)?
.into_iter()
.for_each(|(pos, n)| {
2020-07-14 20:11:39 +00:00
(0..n).for_each(|_| {
inv.take(pos).expect("Expected item to exist in inventory");
2020-07-14 20:11:39 +00:00
})
});
for i in 0..self.output.1 {
let crafted_item = Item::new_from_item_def(Arc::clone(&self.output.0));
if let Some(item) = inv.push(crafted_item) {
2020-07-14 20:11:39 +00:00
return Ok(Some((item, self.output.1 - i)));
}
}
Ok(None)
}
pub fn inputs(&self) -> impl ExactSizeIterator<Item = (&Arc<ItemDef>, u32)> {
self.inputs
.iter()
.map(|(item_def, amount)| (item_def, *amount))
2020-07-14 20:11:39 +00:00
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct RecipeBook {
recipes: HashMap<String, Recipe>,
}
impl RecipeBook {
pub fn get(&self, recipe: &str) -> Option<&Recipe> { self.recipes.get(recipe) }
pub fn iter(&self) -> impl ExactSizeIterator<Item = (&String, &Recipe)> { self.recipes.iter() }
pub fn get_available(&self, inv: &Inventory) -> Vec<(String, Recipe)> {
self.recipes
.iter()
.filter(|(_, recipe)| inv.contains_ingredients(recipe).is_ok())
.map(|(name, recipe)| (name.clone(), recipe.clone()))
.collect()
}
}
2020-12-12 22:14:24 +00:00
#[derive(Deserialize)]
#[serde(transparent)]
2020-12-13 14:57:10 +00:00
#[allow(clippy::type_complexity)]
2020-12-12 22:14:24 +00:00
struct RawRecipeBook(HashMap<String, ((String, u32), Vec<(String, u32)>)>);
impl assets::Asset for RawRecipeBook {
type Loader = assets::RonLoader;
2020-12-13 01:09:57 +00:00
const EXTENSION: &'static str = "ron";
2020-12-12 22:14:24 +00:00
}
impl assets::Compound for RecipeBook {
2020-12-13 01:09:57 +00:00
fn load<S: assets_manager::source::Source>(
cache: &assets_manager::AssetCache<S>,
specifier: &str,
) -> Result<Self, assets_manager::Error> {
2020-12-12 22:14:24 +00:00
#[inline]
fn load_item_def(spec: &(String, u32)) -> Result<(Arc<ItemDef>, u32), assets::Error> {
let def = Arc::<ItemDef>::load_cloned(&spec.0)?;
Ok((def, spec.1))
}
let raw = cache.load::<RawRecipeBook>(specifier)?.read();
2020-12-13 01:09:57 +00:00
let recipes = raw
.0
.iter()
2020-12-12 22:14:24 +00:00
.map(|(name, (output, inputs))| {
2020-12-13 01:09:57 +00:00
let inputs = inputs.iter().map(load_item_def).collect::<Result<_, _>>()?;
2020-12-12 22:14:24 +00:00
let output = load_item_def(output)?;
Ok((name.clone(), Recipe { inputs, output }))
2020-07-14 20:11:39 +00:00
})
2020-12-12 22:14:24 +00:00
.collect::<Result<_, assets::Error>>()?;
Ok(RecipeBook { recipes })
2020-07-14 20:11:39 +00:00
}
}
2020-12-12 22:14:24 +00:00
pub fn default_recipe_book() -> AssetHandle<RecipeBook> {
RecipeBook::load_expect("common.recipe_book")
}