mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
268 lines
5.2 KiB
Java
268 lines
5.2 KiB
Java
package com.hbm.blocks;
|
|
|
|
import com.hbm.items.ModItems;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.init.Blocks;
|
|
import net.minecraft.init.Items;
|
|
import net.minecraft.inventory.ISidedInventory;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.nbt.NBTTagList;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.AxisAlignedBB;
|
|
|
|
public class TileEntityBombMulti extends TileEntity implements ISidedInventory {
|
|
|
|
public ItemStack slots[];
|
|
private String customName;
|
|
|
|
public TileEntityBombMulti() {
|
|
slots = new ItemStack[6];
|
|
}
|
|
|
|
@Override
|
|
public int getSizeInventory() {
|
|
return slots.length;
|
|
}
|
|
|
|
@Override
|
|
public ItemStack getStackInSlot(int i) {
|
|
return slots[i];
|
|
}
|
|
|
|
@Override
|
|
public ItemStack decrStackSize(int i, int j) {
|
|
if(slots[i] != null)
|
|
{
|
|
if(slots[i].stackSize <= j)
|
|
{
|
|
ItemStack itemStack = slots[i];
|
|
slots[i] = null;
|
|
return itemStack;
|
|
}
|
|
ItemStack itemStack1 = slots[i].splitStack(j);
|
|
if (slots[i].stackSize == 0)
|
|
{
|
|
slots[i] = null;
|
|
}
|
|
|
|
return itemStack1;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public ItemStack getStackInSlotOnClosing(int i) {
|
|
if(slots[i] != null)
|
|
{
|
|
ItemStack itemStack = slots[i];
|
|
slots[i] = null;
|
|
return itemStack;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void setInventorySlotContents(int i, ItemStack itemStack) {
|
|
slots[i] = itemStack;
|
|
if(itemStack != null && itemStack.stackSize > getInventoryStackLimit())
|
|
{
|
|
itemStack.stackSize = getInventoryStackLimit();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getInventoryName() {
|
|
return this.hasCustomInventoryName() ? this.customName : "container.bombMulti";
|
|
}
|
|
|
|
@Override
|
|
public boolean hasCustomInventoryName() {
|
|
return this.customName != null && this.customName.length() > 0;
|
|
}
|
|
|
|
public void setCustomName(String name) {
|
|
this.customName = name;
|
|
}
|
|
|
|
@Override
|
|
public int getInventoryStackLimit() {
|
|
return 1;
|
|
}
|
|
|
|
@Override
|
|
public boolean isUseableByPlayer(EntityPlayer player) {
|
|
if(worldObj.getTileEntity(xCoord, yCoord, zCoord) != this)
|
|
{
|
|
return false;
|
|
}else{
|
|
return player.getDistanceSq((double) xCoord + 0.5D, (double) yCoord + 0.5D, (double) zCoord + 0.5D) <=64;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void openInventory() {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void closeInventory() {
|
|
|
|
}
|
|
|
|
@Override
|
|
public boolean isItemValidForSlot(int p_94041_1_, ItemStack p_94041_2_) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int[] getAccessibleSlotsFromSide(int p_94128_1_) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public boolean canInsertItem(int i, ItemStack itemStack, int j) {
|
|
return this.isItemValidForSlot(i, itemStack);
|
|
}
|
|
|
|
@Override
|
|
public boolean canExtractItem(int i, ItemStack itemStack, int j) {
|
|
return j != 0 || i != 1 || itemStack.getItem() == Items.bucket;
|
|
}
|
|
|
|
public void readFromNBT(NBTTagCompound nbt) {
|
|
super.readFromNBT(nbt);
|
|
NBTTagList list = nbt.getTagList("items", 10);
|
|
slots = new ItemStack[getSizeInventory()];
|
|
|
|
for(int i = 0; i < list.tagCount(); i++)
|
|
{
|
|
NBTTagCompound nbt1 = (NBTTagCompound) list.getCompoundTagAt(i);
|
|
byte b0 = nbt1.getByte("slot");
|
|
if(b0 >= 0 && b0 < slots.length)
|
|
{
|
|
slots[b0] = ItemStack.loadItemStackFromNBT(nbt1);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void writeToNBT(NBTTagCompound nbt) {
|
|
super.writeToNBT(nbt);
|
|
NBTTagList list = new NBTTagList();
|
|
|
|
for(int i = 0; i < slots.length; i++)
|
|
{
|
|
if(slots[i] != null)
|
|
{
|
|
NBTTagCompound nbt1 = new NBTTagCompound();
|
|
nbt1.setByte("slot", (byte)i);
|
|
slots[i].writeToNBT(nbt1);
|
|
list.appendTag(nbt1);
|
|
}
|
|
}
|
|
nbt.setTag("items", list);
|
|
}
|
|
|
|
public boolean isLoaded(){
|
|
|
|
if(slots[0] != null && slots[0].getItem() == Item.getItemFromBlock(Blocks.tnt) &&
|
|
slots[1] != null && slots[1].getItem() == Item.getItemFromBlock(Blocks.tnt) &&
|
|
slots[3] != null && slots[3].getItem() == Item.getItemFromBlock(Blocks.tnt) &&
|
|
slots[4] != null && slots[4].getItem() == Item.getItemFromBlock(Blocks.tnt))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public int return2type() {
|
|
|
|
if(slots[2] != null)
|
|
{
|
|
if(slots[2].getItem() == Items.gunpowder)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
if(slots[2].getItem() == Item.getItemFromBlock(Blocks.tnt))
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
if(slots[2].getItem() == ModItems.pellet_cluster)
|
|
{
|
|
return 3;
|
|
}
|
|
|
|
if(slots[2].getItem() == ModItems.powder_fire)
|
|
{
|
|
return 4;
|
|
}
|
|
|
|
if(slots[2].getItem() == ModItems.powder_poison)
|
|
{
|
|
return 5;
|
|
}
|
|
|
|
if(slots[2].getItem() == ModItems.pellet_gas)
|
|
{
|
|
return 6;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
public int return5type() {
|
|
|
|
if(slots[5] != null)
|
|
{
|
|
if(slots[5].getItem() == Items.gunpowder)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
if(slots[5].getItem() == Item.getItemFromBlock(Blocks.tnt))
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
if(slots[5].getItem() == ModItems.pellet_cluster)
|
|
{
|
|
return 3;
|
|
}
|
|
|
|
if(slots[5].getItem() == ModItems.powder_fire)
|
|
{
|
|
return 4;
|
|
}
|
|
|
|
if(slots[5].getItem() == ModItems.powder_poison)
|
|
{
|
|
return 5;
|
|
}
|
|
|
|
if(slots[5].getItem() == ModItems.pellet_gas)
|
|
{
|
|
return 6;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
public void clearSlots() {
|
|
for(int i = 0; i < slots.length; i++)
|
|
{
|
|
slots[i] = null;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public AxisAlignedBB getRenderBoundingBox() {
|
|
return this.INFINITE_EXTENT_AABB;
|
|
}
|
|
} |