Skip to content

Instantly share code, notes, and snippets.

@Tsyklop
Created February 22, 2016 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tsyklop/568e5f5fd6426f1fd22c to your computer and use it in GitHub Desktop.
Save Tsyklop/568e5f5fd6426f1fd22c to your computer and use it in GitHub Desktop.
RecipeRapair
package ru.lionzxy.simlyhammer.commons.recipe;
import cofh.core.item.tool.ItemAxeAdv;
import net.minecraft.block.Block;
import net.minecraft.block.BlockTorch;
import net.minecraft.init.Items;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.*;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.util.MathHelper;
import net.minecraft.util.StatCollector;
import net.minecraft.world.World;
import net.minecraftforge.common.util.Constants;
import net.minecraftforge.oredict.RecipeSorter;
import cpw.mods.fml.common.Loader;
import ru.lionzxy.simlyhammer.commons.config.Config;
import ru.lionzxy.simlyhammer.commons.items.AddItems;
import ru.lionzxy.simlyhammer.interfaces.IModifiHammer;
/**
* Created by LionZXY on 08.09.2015.
* SimplyHammer v0.9
*/
public class RecipeRepair implements IRecipe {
boolean axefromth = false;
public RecipeRepair(){
RecipeSorter.setCategory(RecipeRepair.class, RecipeSorter.Category.SHAPELESS);
}
@Override
public boolean matches(InventoryCrafting ic, World p_77569_2_) {
for (int i = 0; i < ic.getSizeInventory(); i++)
if (ic.getStackInSlot(i) != null && ic.getStackInSlot(i).getItem() instanceof IModifiHammer)
return true;
return false;
}
@Override
public ItemStack getCraftingResult(InventoryCrafting ic) {
ItemStack hammer = null;
for (int i = 0; i < ic.getSizeInventory(); i++)
if (ic.getStackInSlot(i) != null && ic.getStackInSlot(i).getItem() instanceof IModifiHammer)
hammer = ic.getStackInSlot(i).copy();
if (hammer != null && !hammer.hasTagCompound()) {
NBTTagCompound tag = new NBTTagCompound();
tag.setBoolean("Modif", false);
tag.setBoolean("Diamond", false);
tag.setInteger("Shovel", 0);
tag.setInteger("ShovelSpeed", 0);
tag.setInteger("Axe", 0);
tag.setDouble("AxeSpeed", 0);
tag.setBoolean("Torch", false);
tag.setBoolean("Trash", false);
tag.setBoolean("Vacuum", false);
tag.setBoolean("Smelt", false);
hammer.setTagCompound(tag);
}
if (findItem(ic, Items.diamond) && hammer != null && hammer.hasTagCompound() && Config.MDiamond && !hammer.getTagCompound().getBoolean("Diamond") && ((IModifiHammer) hammer.getItem()).getHammerSettings().getMDiamond()) {
hammer.getTagCompound().setBoolean("Diamond", true);
hammer.getTagCompound().setBoolean("Modif", true);
}
if (findAxe(ic) != null && hammer != null && hammer.hasTagCompound() && Config.MAxe && ((IModifiHammer) hammer.getItem()).getHammerSettings().getMAxe())
{
ItemStack itemStack = findAxe(ic);
if(axefromth == true)
{
hammer.getTagCompound().setInteger("Axe", ((ItemAxeAdv) itemStack.getItem()).func_150913_i().getHarvestLevel());
hammer.getTagCompound().setDouble("AxeSpeed", ((ItemAxeAdv) itemStack.getItem()).func_150913_i().getEfficiencyOnProperMaterial());
hammer.getTagCompound().setBoolean("Modif", true);
axefromth = false;
}
else
{
hammer.getTagCompound().setInteger("Axe", ((ItemAxe) itemStack.getItem()).func_150913_i().getHarvestLevel());
hammer.getTagCompound().setDouble("AxeSpeed", ((ItemAxe) itemStack.getItem()).func_150913_i().getEfficiencyOnProperMaterial());
hammer.getTagCompound().setBoolean("Modif", true);
}
}
if (findDye(ic) != null && hammer != null && hammer.hasTagCompound() && Config.MDye) {
ItemStack itemStack = findDye(ic);
int i = MathHelper.clamp_int(itemStack.getItemDamage(), 0, 15);
hammer.getTagCompound().setInteger("Color", ItemDye.field_150922_c[i]);
}
if (findShovel(ic) != null && hammer != null && hammer.hasTagCompound() && Config.MShovel && ((IModifiHammer) hammer.getItem()).getHammerSettings().getMShovel()) {
ItemStack itemStack = findShovel(ic);
hammer.getTagCompound().setInteger("Shovel", ((ItemSpade) itemStack.getItem()).func_150913_i().getHarvestLevel());
hammer.getTagCompound().setDouble("ShovelSpeed", ((ItemSpade) itemStack.getItem()).func_150913_i().getEfficiencyOnProperMaterial());
hammer.getTagCompound().setBoolean("Modif", true);
}
if (findTorch(ic) != null && hammer != null && hammer.hasTagCompound() && Config.MTorch && ((IModifiHammer) hammer.getItem()).getHammerSettings().getMTorch()) {
if (!hammer.getTagCompound().getBoolean("Torch")) {
hammer.getTagCompound().setInteger("TorchID", Block.getIdFromBlock(((ItemBlock) findTorch(ic).getItem()).field_150939_a));
hammer.getTagCompound().setBoolean("Torch", true);
} else
hammer.getTagCompound().setBoolean("Torch", false);
hammer.getTagCompound().setBoolean("Modif", true);
}
if (findItem(ic, AddItems.trash) && getItem(ic, AddItems.trash) != null && getItem(ic, AddItems.trash).hasTagCompound() && hammer != null && hammer.hasTagCompound() && Config.MTrash && ((IModifiHammer) hammer.getItem()).getHammerSettings().getMTrash())
if (!hammer.getTagCompound().getBoolean("Trash")) {
hammer.getTagCompound().setBoolean("Trash", true);
hammer.getTagCompound().setTag("Items", getItem(ic, AddItems.trash).getTagCompound().getTagList("Items", Constants.NBT.TAG_COMPOUND));
hammer.getTagCompound().setBoolean("Invert", getItem(ic, AddItems.trash).getTagCompound().getBoolean("Invert"));
hammer.getTagCompound().setBoolean("Modif", true);
} else
hammer.getTagCompound().setBoolean("Trash", false);
if (findItem(ic, AddItems.vacuum) && hammer != null && hammer.hasTagCompound() && Config.MVacuum && ((IModifiHammer) hammer.getItem()).getHammerSettings().getMVacuum())
if (!hammer.getTagCompound().getBoolean("Vacuum")) {
hammer.getTagCompound().setBoolean("Vacuum", true);
hammer.getTagCompound().setBoolean("Modif", true);
} else
hammer.getTagCompound().setBoolean("Vacuum", false);
if (findItem(ic, AddItems.autosmelt) && hammer != null && hammer.hasTagCompound() && Config.MSmelt && ((IModifiHammer) hammer.getItem()).getHammerSettings().getMSmelt())
if (!hammer.getTagCompound().getBoolean("Smelt")) {
hammer.getTagCompound().setBoolean("Smelt", true);
hammer.getTagCompound().setTag("ItemsSmelt", getItem(ic, AddItems.autosmelt).getTagCompound().getTagList("Items", Constants.NBT.TAG_COMPOUND));
hammer.getTagCompound().setBoolean("InvertSmelt", getItem(ic, AddItems.autosmelt).getTagCompound().getBoolean("Invert"));
hammer.getTagCompound().setBoolean("Modif", true);
} else
hammer.getTagCompound().setBoolean("Smelt", false);
if (hammer != null && Config.repair && ((IModifiHammer) hammer.getItem()).getHammerSettings().isRepair())
if (findItem(ic, hammer.getItem()))
hammer.setItemDamage(getDamage(hammer, findItems(ic, ((IModifiHammer) hammer.getItem()))));
if (hammer != null)
for (int i = 0; i < ic.getSizeInventory(); i++)
if (ic.getStackInSlot(i) != null && !(ic.getStackInSlot(i).getItem() instanceof IModifiHammer) && !((IModifiHammer) hammer.getItem()).checkMaterial(ic.getStackInSlot(i))
&& ic.getStackInSlot(i).getItem().doesContainerItemLeaveCraftingGrid(ic.getStackInSlot(i))) {
ItemStack is1 = ic.getStackInSlot(i).copy();
is1.stackSize = 1;
addItemStackToHammer(hammer, is1);
}
return hammer;
}
@Override
public int getRecipeSize() {
return 9;
}
@Override
public ItemStack getRecipeOutput() {
return new ItemStack(Items.iron_pickaxe);
}
int findItems(InventoryCrafting ic, IModifiHammer item) {
int itemsFound = 0;
for (int i = 0; i < ic.getSizeInventory(); i++)
if (ic.getStackInSlot(i) != null && item.checkMaterial(ic.getStackInSlot(i)))
itemsFound++;
return itemsFound;
}
public ItemStack findShovel(InventoryCrafting ic) {
for (int i = 0; i < ic.getSizeInventory(); i++)
if (ic.getStackInSlot(i) != null && ic.getStackInSlot(i).getItem() instanceof ItemSpade)
return ic.getStackInSlot(i);
return null;
}
public ItemStack findAxe(InventoryCrafting ic) {
for (int i = 0; i < ic.getSizeInventory(); i++)
{
if (ic.getStackInSlot(i) != null && ic.getStackInSlot(i).getItem() instanceof ItemAxe)
return ic.getStackInSlot(i);
}
if (Loader.isModLoaded("CoFHCore"))
{
for (int i = 0; i < ic.getSizeInventory(); i++)
{
if (ic.getStackInSlot(i) != null && ic.getStackInSlot(i).getItem() instanceof ItemAxeAdv)
axefromth = true;
return ic.getStackInSlot(i);
}
}
return null;
}
public ItemStack findDye(InventoryCrafting ic) {
for (int i = 0; i < ic.getSizeInventory(); i++)
if (ic.getStackInSlot(i) != null && ic.getStackInSlot(i).getItem() instanceof ItemDye)
return ic.getStackInSlot(i);
return null;
}
public boolean findItem(InventoryCrafting ic, Item item) {
for (int i = 0; i < ic.getSizeInventory(); i++)
if (ic.getStackInSlot(i) != null && ic.getStackInSlot(i).getItem() == item)
return true;
return false;
}
public ItemStack getItem(InventoryCrafting ic, Item item) {
for (int i = 0; i < ic.getSizeInventory(); i++)
if (ic.getStackInSlot(i) != null && ic.getStackInSlot(i).getItem() == item)
return ic.getStackInSlot(i);
return null;
}
int getDamage(ItemStack itemStack, int multi) {
if ((itemStack.getItemDamage() - (itemStack.getMaxDamage() / 10) * multi) > 0)
return (itemStack.getItemDamage() - (itemStack.getMaxDamage() / 10) * multi);
else
return 0;
}
public ItemStack findTorch(InventoryCrafting ic) {
for (int i = 0; i < ic.getSizeInventory(); i++)
if (isTorch(ic.getStackInSlot(i)))
return ic.getStackInSlot(i);
return null;
}
public static boolean isTorch(ItemStack itemStack) {
if (itemStack != null && itemStack.getItem() instanceof ItemBlock && (itemStack.getDisplayName().contains(StatCollector.translateToLocal("tile.torch.name"))
|| (itemStack.getItem() instanceof ItemBlock && (((ItemBlock) itemStack.getItem()).field_150939_a instanceof BlockTorch))))
return true;
return false;
}
public static void addItemStackToHammer(ItemStack is, ItemStack to) {
if (!is.hasTagCompound())
is.setTagCompound(new NBTTagCompound());
NBTTagList tag = is.getTagCompound().getTagList("ItemStacksInHammer", Constants.NBT.TAG_COMPOUND);
if (to == null)
return;
for (int i = 0; i < is.getTagCompound().getTagList("ItemStacksInHammer", Constants.NBT.TAG_COMPOUND).tagCount(); i++) {
NBTTagCompound item = is.getTagCompound().getTagList("ItemStacksInHammer", Constants.NBT.TAG_COMPOUND).getCompoundTagAt(i);
if (item.getShort("id") == Item.getIdFromItem(to.getItem()) && item.getShort("Damage") == to.getItemDamage() &&
(item.getByte("Count") + to.stackSize) <= to.getMaxStackSize()) {
item.setByte("Count", (byte) (item.getByte("Count") + to.stackSize));
is.getTagCompound().setTag("ItemStacksInHammer", tag);
return;
}
}
NBTTagCompound item = new NBTTagCompound();
to.writeToNBT(item);
tag.appendTag(item);
is.getTagCompound().setTag("ItemStacksInHammer", tag);
}
public static void removeItemStackToHammer(ItemStack is, Item to) {
/*
if (!is.hasTagCompound())
is.setTagCompound(new NBTTagCompound());
NBTTagList tag = is.getTagCompound().getTagList("ItemStacksInHammer", Constants.NBT.TAG_COMPOUND);
if (to == null)
return;
NBTTagList tag1 =
for()*/
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment