ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/recipe/ReconstructorRecipeHandler.java

115 lines
3.8 KiB
Java
Raw Normal View History

/*
* This file ("AtomicReconstructorRecipeHandler.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015 Ellpeck
*/
package ellpeck.actuallyadditions.recipe;
import ellpeck.actuallyadditions.config.values.ConfigCrafting;
2015-11-22 20:23:54 +01:00
import ellpeck.actuallyadditions.util.AssetUtil;
2015-11-22 18:52:11 +01:00
import ellpeck.actuallyadditions.util.Util;
import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary;
import java.util.ArrayList;
2015-11-15 18:14:39 +01:00
import java.util.List;
import java.util.Objects;
2015-11-15 18:05:58 +01:00
public class ReconstructorRecipeHandler{
public static ArrayList<Recipe> recipes = new ArrayList<Recipe>();
public static final int RECIPES_FOR_BOOKLET_PAGE = 12;
public static void init(){
addRecipe("blockRedstone", "blockCrystalRed", 400);
addRecipe("blockLapis", "blockCrystalBlue", 400);
addRecipe("blockDiamond", "blockCrystalLightBlue", 6000);
addRecipe("blockEmerald", "blockCrystalGreen", 10000);
addRecipe("blockCoal", "blockCrystalBlack", 600);
addRecipe("blockIron", "blockCrystalWhite", 800);
addRecipe("dustRedstone", "crystalRed", 40);
addRecipe("gemLapis", "crystalBlue", 40);
addRecipe("gemDiamond", "crystalLightBlue", 600);
addRecipe("gemEmerald", "crystalGreen", 1000);
addRecipe("coal", "crystalBlack", 60);
addRecipe("ingotIron", "crystalWhite", 80);
if(ConfigCrafting.RECONSTRUCTOR_MISC.isEnabled()){
addRecipe("sand", "soulSand", 20000);
addRecipe("blockQuartz", "blockWhiteBrick", 10);
2015-11-22 20:23:54 +01:00
addRecipe("blockQuartz", "blockGreenBrick", 10, LensType.COLOR);
}
}
public static void addRecipe(String input, String output, int energyUse){
2015-11-22 18:52:11 +01:00
addRecipe(input, output, energyUse, LensType.NONE);
}
public static void addRecipe(String input, String output, int energyUse, LensType type){
recipes.add(new Recipe(input, output, energyUse, type));
}
2015-11-22 20:23:54 +01:00
public static ArrayList<Recipe> getRecipes(ItemStack input){
ArrayList<Recipe> possibleRecipes = new ArrayList<Recipe>();
for(Recipe recipe : recipes){
int[] ids = OreDictionary.getOreIDs(input);
for(int id : ids){
if(Objects.equals(OreDictionary.getOreName(id), recipe.input)){
2015-11-22 20:23:54 +01:00
possibleRecipes.add(recipe);
}
}
}
2015-11-22 20:23:54 +01:00
return possibleRecipes;
}
public static class Recipe{
public String input;
public String output;
public int energyUse;
2015-11-22 18:52:11 +01:00
public LensType type;
2015-11-22 18:52:11 +01:00
public Recipe(String input, String output, int energyUse, LensType type){
this.input = input;
this.output = output;
this.energyUse = energyUse;
2015-11-22 18:52:11 +01:00
this.type = type;
}
public ItemStack getFirstOutput(){
2015-11-15 18:14:39 +01:00
List<ItemStack> stacks = OreDictionary.getOres(this.output, false);
if(stacks != null && !stacks.isEmpty()){
return stacks.get(0);
}
return null;
}
}
2015-11-22 18:52:11 +01:00
public enum LensType{
2015-11-22 20:23:54 +01:00
NONE("No Lens"),
COLOR("Color Lens");
2015-11-22 18:52:11 +01:00
2015-11-22 20:23:54 +01:00
public String name;
2015-11-22 18:52:11 +01:00
2015-11-22 20:23:54 +01:00
LensType(String name){
this.name = name;
2015-11-22 18:52:11 +01:00
}
2015-11-22 20:23:54 +01:00
public float[] getColor(){
2015-11-22 18:52:11 +01:00
if(this == COLOR){
2015-11-22 20:23:54 +01:00
float[] colors = AssetUtil.RGB_WOOL_COLORS[Util.RANDOM.nextInt(AssetUtil.RGB_WOOL_COLORS.length)];
return new float[]{colors[0]/255F, colors[1]/255F, colors[2]/255F};
2015-11-22 18:52:11 +01:00
}
2015-11-22 20:23:54 +01:00
return new float[]{27F/255F, 109F/255F, 1F};
2015-11-22 18:52:11 +01:00
}
}
}