2020-07-14 20:11:39 +00:00
|
|
|
use crate::{
|
2020-12-12 22:14:24 +00:00
|
|
|
assets::{self, AssetExt, AssetHandle},
|
2021-02-16 01:05:54 +00:00
|
|
|
comp::{
|
2021-10-05 21:27:11 +00:00
|
|
|
inventory::slot::InvSlotId,
|
2021-04-29 23:34:14 +00:00
|
|
|
item::{modular, tool::AbilityMap, ItemDef, ItemTag, MaterialStatManifest},
|
2021-02-16 01:05:54 +00:00
|
|
|
Inventory, Item,
|
|
|
|
},
|
2021-04-17 14:58:43 +00:00
|
|
|
terrain::SpriteKind,
|
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
|
|
|
|
2021-02-16 01:05:54 +00:00
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub enum RecipeInput {
|
|
|
|
Item(Arc<ItemDef>),
|
|
|
|
Tag(ItemTag),
|
|
|
|
}
|
|
|
|
|
2020-07-14 20:11:39 +00:00
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct Recipe {
|
2020-09-26 15:20:46 +00:00
|
|
|
pub output: (Arc<ItemDef>, u32),
|
2021-02-16 01:05:54 +00:00
|
|
|
pub inputs: Vec<(RecipeInput, u32)>,
|
2021-04-17 14:58:43 +00:00
|
|
|
pub craft_sprite: Option<SpriteKind>,
|
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
|
2020-09-26 15:20:46 +00:00
|
|
|
pub fn perform(
|
|
|
|
&self,
|
|
|
|
inv: &mut Inventory,
|
2021-04-29 23:34:14 +00:00
|
|
|
ability_map: &AbilityMap,
|
2021-02-23 20:29:27 +00:00
|
|
|
msm: &MaterialStatManifest,
|
2021-10-05 21:27:11 +00:00
|
|
|
) -> Result<(Item, u32), Vec<(&RecipeInput, u32)>> {
|
2020-07-14 20:11:39 +00:00
|
|
|
// Get ingredient cells from inventory,
|
2021-02-17 04:23:08 +00:00
|
|
|
let mut components = Vec::new();
|
|
|
|
|
2020-07-14 20:11:39 +00:00
|
|
|
inv.contains_ingredients(self)?
|
|
|
|
.into_iter()
|
2021-01-08 19:12:09 +00:00
|
|
|
.for_each(|(pos, n)| {
|
2020-07-14 20:11:39 +00:00
|
|
|
(0..n).for_each(|_| {
|
2021-02-23 20:29:27 +00:00
|
|
|
let component = inv
|
2021-04-29 23:34:14 +00:00
|
|
|
.take(pos, ability_map, msm)
|
2021-02-23 20:29:27 +00:00
|
|
|
.expect("Expected item to exist in inventory");
|
2021-02-17 04:23:08 +00:00
|
|
|
components.push(component);
|
2020-07-14 20:11:39 +00:00
|
|
|
})
|
|
|
|
});
|
|
|
|
|
2021-10-05 21:27:11 +00:00
|
|
|
let crafted_item =
|
|
|
|
Item::new_from_item_def(Arc::clone(&self.output.0), &components, ability_map, msm);
|
|
|
|
|
|
|
|
Ok((crafted_item, self.output.1))
|
|
|
|
|
|
|
|
// for i in 0..self.output.1 {
|
|
|
|
// if let Err(item) = inv.push(crafted_item) {
|
|
|
|
// return Ok(Some((item, self.output.1 - i)));
|
|
|
|
// }
|
|
|
|
// }
|
2020-07-14 20:11:39 +00:00
|
|
|
|
2021-10-05 21:27:11 +00:00
|
|
|
// Ok(None)
|
2020-07-14 20:11:39 +00:00
|
|
|
}
|
|
|
|
|
2021-02-16 01:05:54 +00:00
|
|
|
pub fn inputs(&self) -> impl ExactSizeIterator<Item = (&RecipeInput, u32)> {
|
2020-09-26 15:20:46 +00:00
|
|
|
self.inputs
|
|
|
|
.iter()
|
|
|
|
.map(|(item_def, amount)| (item_def, *amount))
|
2020-07-14 20:11:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-05 21:27:11 +00:00
|
|
|
pub enum SalvageError {
|
|
|
|
NotSalvageable,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_salvage(
|
|
|
|
inv: &mut Inventory,
|
|
|
|
slot: InvSlotId,
|
|
|
|
ability_map: &AbilityMap,
|
|
|
|
msm: &MaterialStatManifest,
|
|
|
|
) -> Result<Vec<Item>, SalvageError> {
|
|
|
|
if inv.get(slot).map_or(false, |item| item.is_salvageable()) {
|
|
|
|
let salvage_item = inv
|
|
|
|
.take(slot, ability_map, msm)
|
|
|
|
.expect("Expected item to exist in inventory");
|
|
|
|
match salvage_item.try_salvage() {
|
|
|
|
Ok(items) => Ok(items),
|
|
|
|
Err(item) => {
|
|
|
|
inv.push(item)
|
|
|
|
.expect("Item taken from inventory just before");
|
|
|
|
Err(SalvageError::NotSalvageable)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(SalvageError::NotSalvageable)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-16 01:05:54 +00:00
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub enum RawRecipeInput {
|
|
|
|
Item(String),
|
|
|
|
Tag(ItemTag),
|
|
|
|
}
|
|
|
|
|
2021-04-17 14:58:43 +00:00
|
|
|
#[derive(Clone, Deserialize)]
|
|
|
|
pub(crate) struct RawRecipe {
|
|
|
|
pub(crate) output: (String, u32),
|
|
|
|
pub(crate) inputs: Vec<(RawRecipeInput, u32)>,
|
|
|
|
pub(crate) craft_sprite: Option<SpriteKind>,
|
|
|
|
}
|
|
|
|
|
2021-02-17 04:23:08 +00:00
|
|
|
#[derive(Clone, Deserialize)]
|
2020-12-12 22:14:24 +00:00
|
|
|
#[serde(transparent)]
|
2021-04-17 18:35:48 +00:00
|
|
|
pub(crate) struct RawRecipeBook(pub(crate) HashMap<String, RawRecipe>);
|
2020-12-12 22:14:24 +00:00
|
|
|
|
|
|
|
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 {
|
2021-05-07 11:24:37 +00:00
|
|
|
fn load<S: assets::source::Source>(
|
|
|
|
cache: &assets::AssetCache<S>,
|
2020-12-13 01:09:57 +00:00
|
|
|
specifier: &str,
|
2021-05-07 11:24:37 +00:00
|
|
|
) -> Result<Self, assets::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))
|
|
|
|
}
|
2021-06-26 16:12:23 +00:00
|
|
|
|
2021-02-16 01:05:54 +00:00
|
|
|
#[inline]
|
|
|
|
fn load_recipe_input(
|
|
|
|
spec: &(RawRecipeInput, u32),
|
|
|
|
) -> Result<(RecipeInput, u32), assets::Error> {
|
|
|
|
let def = match &spec.0 {
|
2021-07-12 07:09:57 +00:00
|
|
|
RawRecipeInput::Item(name) => RecipeInput::Item(Arc::<ItemDef>::load_cloned(name)?),
|
2021-02-16 01:05:54 +00:00
|
|
|
RawRecipeInput::Tag(tag) => RecipeInput::Tag(*tag),
|
|
|
|
};
|
|
|
|
Ok((def, spec.1))
|
|
|
|
}
|
2020-12-12 22:14:24 +00:00
|
|
|
|
2021-02-17 04:23:08 +00:00
|
|
|
let mut raw = cache.load::<RawRecipeBook>(specifier)?.read().clone();
|
2021-02-18 22:22:15 +00:00
|
|
|
|
|
|
|
// Avoid showing purple-question-box recipes until the assets are added
|
|
|
|
// (the `if false` is needed because commenting out the call will add a warning
|
|
|
|
// that there are no other uses of append_modular_recipes)
|
|
|
|
if false {
|
|
|
|
modular::append_modular_recipes(&mut raw);
|
|
|
|
}
|
2020-12-12 22:14:24 +00:00
|
|
|
|
2020-12-13 01:09:57 +00:00
|
|
|
let recipes = raw
|
|
|
|
.0
|
|
|
|
.iter()
|
2021-04-17 18:35:48 +00:00
|
|
|
.map(
|
|
|
|
|(
|
|
|
|
name,
|
|
|
|
RawRecipe {
|
|
|
|
output,
|
|
|
|
inputs,
|
|
|
|
craft_sprite,
|
|
|
|
},
|
|
|
|
)| {
|
|
|
|
let inputs = inputs
|
|
|
|
.iter()
|
|
|
|
.map(load_recipe_input)
|
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
|
|
|
let output = load_item_def(output)?;
|
|
|
|
Ok((name.clone(), Recipe {
|
|
|
|
output,
|
|
|
|
inputs,
|
|
|
|
craft_sprite: *craft_sprite,
|
|
|
|
}))
|
|
|
|
},
|
|
|
|
)
|
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")
|
|
|
|
}
|