70 lines
3.1 KiB
Java
70 lines
3.1 KiB
Java
|
package gregtech.api.items;
|
||
|
|
||
|
import static gregtech.api.enums.GT_Values.D1;
|
||
|
import gregtech.api.GregTech_API;
|
||
|
import gregtech.api.metatileentity.BaseMetaPipeEntity;
|
||
|
import gregtech.api.util.GT_Log;
|
||
|
import gregtech.api.util.GT_ModHandler;
|
||
|
import gregtech.api.util.GT_Utility;
|
||
|
import net.minecraft.block.Block;
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.item.ItemBlock;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.tileentity.TileEntity;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
public class GT_Spray_Hardener_Item extends GT_Tool_Item {
|
||
|
public GT_Spray_Hardener_Item(String aUnlocalized, String aEnglish, int aMaxDamage, int aEntityDamage) {
|
||
|
super(aUnlocalized, aEnglish, "Construction Foam Hardener", aMaxDamage, aEntityDamage, true);/*
|
||
|
setCraftingSound(GregTech_API.sSoundList.get(102));
|
||
|
setBreakingSound(GregTech_API.sSoundList.get(102));
|
||
|
setEntityHitSound(GregTech_API.sSoundList.get(102));
|
||
|
setUsageAmounts(16, 3, 1);*/
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onItemUseFirst(ItemStack aStack, EntityPlayer aPlayer, World aWorld, int aX, int aY, int aZ, int aSide, float hitX, float hitY, float hitZ) {
|
||
|
super.onItemUseFirst(aStack, aPlayer, aWorld, aX, aY, aZ, aSide, hitX, hitY, hitZ);
|
||
|
if (aWorld.isRemote) {
|
||
|
return false;
|
||
|
}
|
||
|
Block aBlock = aWorld.getBlock(aX, aY, aZ);
|
||
|
if (aBlock == null) return false;
|
||
|
// byte aMeta = (byte)aWorld.getBlockMetadata(aX, aY, aZ);
|
||
|
TileEntity aTileEntity = aWorld.getTileEntity(aX, aY, aZ);
|
||
|
|
||
|
try {
|
||
|
if (GT_Utility.getClassName(aTileEntity).startsWith("TileEntityCable")) {
|
||
|
if (GT_Utility.getPublicField(aTileEntity, "foamed").getByte(aTileEntity) == 1) {
|
||
|
if (GT_ModHandler.damageOrDechargeItem(aStack, 1, 1000, aPlayer)) {
|
||
|
GT_Utility.sendSoundToPlayers(aWorld, GregTech_API.sSoundList.get(102), 1.0F, -1, aX, aY, aZ);
|
||
|
GT_Utility.callPublicMethod(aTileEntity, "changeFoam", (byte)2);
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
} catch(Throwable e) {
|
||
|
if (D1) e.printStackTrace(GT_Log.err);
|
||
|
}
|
||
|
|
||
|
ItemStack tStack1 = GT_ModHandler.getIC2Item("constructionFoam", 1), tStack2 = GT_ModHandler.getIC2Item("constructionFoamWall", 1);
|
||
|
if (tStack1 != null && tStack1.isItemEqual(new ItemStack(aBlock)) && tStack2 != null && tStack2.getItem() != null && tStack2.getItem() instanceof ItemBlock) {
|
||
|
if (GT_ModHandler.damageOrDechargeItem(aStack, 1, 1000, aPlayer)) {
|
||
|
GT_Utility.sendSoundToPlayers(aWorld, GregTech_API.sSoundList.get(102), 1.0F, -1, aX, aY, aZ);
|
||
|
aWorld.setBlock(aX, aY, aZ, GT_Utility.getBlockFromStack(tStack2), 7, 3);
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
if (aTileEntity instanceof BaseMetaPipeEntity && (((BaseMetaPipeEntity)aTileEntity).mConnections & -64) == 64) {
|
||
|
if (GT_ModHandler.damageOrDechargeItem(aStack, 1, 1000, aPlayer)) {
|
||
|
GT_Utility.sendSoundToPlayers(aWorld, GregTech_API.sSoundList.get(102), 1.0F, -1, aX, aY, aZ);
|
||
|
((BaseMetaPipeEntity)aTileEntity).mConnections = (byte)((((BaseMetaPipeEntity)aTileEntity).mConnections & ~64) | -128);
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
}
|