mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-04 16:19:10 +01:00
125 lines
4.6 KiB
Java
125 lines
4.6 KiB
Java
|
/*
|
||
|
* This file ("CrusherRecipeRegistry.java") is part of the Actually Additions Mod for Minecraft.
|
||
|
* It is created and owned by Ellpeck and distributed
|
||
|
* under the Actually Additions License to be found at
|
||
|
* http://ellpeck.de/actaddlicense/
|
||
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
||
|
*
|
||
|
* © 2016 Ellpeck
|
||
|
*/
|
||
|
|
||
|
package de.ellpeck.actuallyadditions.mod.recipe;
|
||
|
|
||
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
||
|
import de.ellpeck.actuallyadditions.api.recipe.CrusherRecipe;
|
||
|
import de.ellpeck.actuallyadditions.mod.config.ConfigValues;
|
||
|
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
|
||
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraftforge.oredict.OreDictionary;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
|
||
|
public class CrusherRecipeRegistry{
|
||
|
|
||
|
public static ArrayList<SearchCase> searchCases = new ArrayList<SearchCase>();
|
||
|
|
||
|
public static void registerFinally(){
|
||
|
ArrayList<String> oresNoResult = new ArrayList<String>();
|
||
|
int recipeStartedAt = ActuallyAdditionsAPI.crusherRecipes.size();
|
||
|
|
||
|
for(String ore : OreDictionary.getOreNames()){
|
||
|
if(!hasException(ore)){
|
||
|
for(SearchCase theCase : searchCases){
|
||
|
if(ore.length() > theCase.theCase.length()){
|
||
|
if(ore.substring(0, theCase.theCase.length()).equals(theCase.theCase)){
|
||
|
String output = theCase.resultPreString+ore.substring(theCase.theCase.length());
|
||
|
|
||
|
if(!hasOreRecipe(ore)){
|
||
|
if(!OreDictionary.getOres(output, false).isEmpty() && !OreDictionary.getOres(ore, false).isEmpty()){
|
||
|
ActuallyAdditionsAPI.addCrusherRecipe(ore, output, theCase.resultAmount);
|
||
|
}
|
||
|
else{
|
||
|
oresNoResult.add(ore);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ArrayList<String> addedRecipes = new ArrayList<String>();
|
||
|
for(int i = recipeStartedAt; i < ActuallyAdditionsAPI.crusherRecipes.size(); i++){
|
||
|
CrusherRecipe recipe = ActuallyAdditionsAPI.crusherRecipes.get(i);
|
||
|
addedRecipes.add(recipe.input+" -> "+recipe.outputOneAmount+"x "+recipe.outputOne);
|
||
|
}
|
||
|
ModUtil.LOGGER.info("Added "+addedRecipes.size()+" Crusher Recipes automatically: "+addedRecipes.toString());
|
||
|
ModUtil.LOGGER.warn("Couldn't add "+oresNoResult.size()+" Crusher Recipes automatically because the inputs were missing outputs: "+oresNoResult.toString());
|
||
|
}
|
||
|
|
||
|
private static boolean hasException(String ore){
|
||
|
for(String conf : ConfigValues.crusherRecipeExceptions){
|
||
|
if(conf.equals(ore)){
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public static boolean hasOreRecipe(String input){
|
||
|
for(CrusherRecipe recipe : ActuallyAdditionsAPI.crusherRecipes){
|
||
|
if(recipe.input != null && recipe.input.equals(input)){
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public static List<ItemStack> getOutputOnes(ItemStack input){
|
||
|
CrusherRecipe recipe = getRecipeFromInput(input);
|
||
|
return recipe == null ? null : recipe.getRecipeOutputOnes();
|
||
|
}
|
||
|
|
||
|
public static CrusherRecipe getRecipeFromInput(ItemStack input){
|
||
|
for(CrusherRecipe recipe : ActuallyAdditionsAPI.crusherRecipes){
|
||
|
if(ItemUtil.contains(recipe.getRecipeInputs(), input, true)){
|
||
|
return recipe;
|
||
|
}
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public static List<ItemStack> getOutputTwos(ItemStack input){
|
||
|
CrusherRecipe recipe = getRecipeFromInput(input);
|
||
|
return recipe == null ? null : recipe.getRecipeOutputTwos();
|
||
|
}
|
||
|
|
||
|
public static int getOutputTwoChance(ItemStack input){
|
||
|
CrusherRecipe recipe = getRecipeFromInput(input);
|
||
|
return recipe == null ? -1 : recipe.outputTwoChance;
|
||
|
}
|
||
|
|
||
|
public static class SearchCase{
|
||
|
|
||
|
String theCase;
|
||
|
int resultAmount;
|
||
|
String resultPreString;
|
||
|
|
||
|
public SearchCase(String theCase, int resultAmount){
|
||
|
this(theCase, resultAmount, "dust");
|
||
|
}
|
||
|
|
||
|
public SearchCase(String theCase, int resultAmount, String resultPreString){
|
||
|
this.theCase = theCase;
|
||
|
this.resultAmount = resultAmount;
|
||
|
this.resultPreString = resultPreString;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|