Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/crafting/CraftingAltar.java

162 lines
4.1 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.crafting;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.users.Habbo;
import gnu.trove.map.hash.THashMap;
import gnu.trove.set.hash.THashSet;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
public class CraftingAltar
{
private final Item baseItem;
private final THashSet<Item> ingredients;
private final THashMap<Integer, CraftingRecipe> recipes;
public CraftingAltar(Item baseItem)
{
this.baseItem = baseItem;
2019-03-18 02:22:00 +01:00
this.ingredients = new THashSet<>(1);
this.recipes = new THashMap<>(1);
2018-07-06 15:30:00 +02:00
}
public void addIngredient(Item item)
{
this.ingredients.add(item);
}
public boolean hasIngredient(Item item)
{
return this.ingredients.contains(item);
}
public Map<CraftingRecipe, Boolean> matchRecipes(Map<Item, Integer> amountMap)
{
2019-03-18 02:22:00 +01:00
THashMap<CraftingRecipe, Boolean> foundRecepies = new THashMap<>(Math.max(1, this.recipes.size() / 3));
2018-07-06 15:30:00 +02:00
for (Map.Entry<Integer, CraftingRecipe> set : this.recipes.entrySet())
{
boolean contains = true;
2019-03-18 02:22:00 +01:00
boolean equals;
2018-07-06 15:30:00 +02:00
if (set.getValue().isLimited() && !set.getValue().canBeCrafted())
{
continue;
}
equals = amountMap.size() == set.getValue().getIngredients().size();
for (Map.Entry<Item, Integer> entry : amountMap.entrySet())
{
if (contains)
{
if (set.getValue().getIngredients().containsKey(entry.getKey()))
{
if (set.getValue().getIngredients().get(entry.getKey()).equals(entry.getValue()))
{
continue;
}
equals = false;
if (set.getValue().getIngredients().get(entry.getKey()) > entry.getValue())
{
continue;
}
}
contains = false;
}
}
if (contains)
{
foundRecepies.put(set.getValue(), equals);
}
}
return foundRecepies;
}
public void addRecipe(CraftingRecipe recipe)
{
this.recipes.put(recipe.getId(), recipe);
}
public CraftingRecipe getRecipe(int id)
{
return this.recipes.get(id);
}
public CraftingRecipe getRecipe(String name)
{
for (Map.Entry<Integer, CraftingRecipe> set : this.recipes.entrySet())
{
if (set.getValue().getName().equals(name))
{
return set.getValue();
}
}
return null;
}
public CraftingRecipe getRecipe(Map<Item, Integer> items)
{
for (Map.Entry<Integer, CraftingRecipe> set : this.recipes.entrySet())
{
CraftingRecipe recipe = set.getValue();
for (Map.Entry<Item, Integer> entry : recipe.getIngredients().entrySet())
{
if (!(items.containsKey(entry.getKey()) && items.get(entry.getKey()).equals(entry.getValue())))
{
recipe = null;
break;
}
}
if (recipe != null)
{
return recipe;
}
}
return null;
}
public List<CraftingRecipe> getRecipesForHabbo(Habbo habbo)
{
2018-09-28 21:25:00 +02:00
List<CraftingRecipe> recipeList = new ArrayList<>();
2018-07-06 15:30:00 +02:00
for (Map.Entry<Integer, CraftingRecipe> set : this.recipes.entrySet())
{
if (!set.getValue().isSecret() || habbo.getHabboStats().hasRecipe(set.getValue().getId()))
{
recipeList.add(set.getValue());
}
}
return recipeList;
}
public Item getBaseItem()
{
return this.baseItem;
}
public Collection<Item> getIngredients()
{
return this.ingredients;
}
public Collection<CraftingRecipe> getRecipes()
{
return this.recipes.values();
}
}