mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-06 00:49:09 +01:00
Fix Phantomface crash with IInventories
This commit is contained in:
parent
f00e9d9014
commit
79fce5c879
1 changed files with 9 additions and 91 deletions
|
@ -11,8 +11,6 @@
|
||||||
package de.ellpeck.actuallyadditions.mod.tile;
|
package de.ellpeck.actuallyadditions.mod.tile;
|
||||||
|
|
||||||
import de.ellpeck.actuallyadditions.mod.blocks.BlockPhantom;
|
import de.ellpeck.actuallyadditions.mod.blocks.BlockPhantom;
|
||||||
import net.minecraft.inventory.IInventory;
|
|
||||||
import net.minecraft.inventory.ISidedInventory;
|
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.tileentity.TileEntity;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
|
@ -25,93 +23,14 @@ public class TileEntityPhantomItemface extends TileEntityPhantomface{
|
||||||
this.type = BlockPhantom.Type.FACE;
|
this.type = BlockPhantom.Type.FACE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int[] getSlotsForFace(EnumFacing side){
|
|
||||||
if(this.isBoundThingInRange()){
|
|
||||||
if(this.getSided() != null){
|
|
||||||
return this.getSided().getSlotsForFace(side);
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
int[] theInt = new int[this.getSizeInventory()];
|
|
||||||
for(int i = 0; i < theInt.length; i++){
|
|
||||||
theInt[i] = i;
|
|
||||||
}
|
|
||||||
return theInt;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return new int[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getInventoryStackLimit(){
|
|
||||||
return this.isBoundThingInRange() ? this.getInventory().getInventoryStackLimit() : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void clear(){
|
|
||||||
if(this.isBoundThingInRange()){
|
|
||||||
this.getInventory().clear();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setInventorySlotContents(int i, ItemStack stack){
|
|
||||||
if(this.isBoundThingInRange()){
|
|
||||||
this.getInventory().setInventorySlotContents(i, stack);
|
|
||||||
}
|
|
||||||
this.markDirty();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getSizeInventory(){
|
|
||||||
return this.isBoundThingInRange() ? this.getInventory().getSizeInventory() : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ItemStack getStackInSlot(int i){
|
|
||||||
return this.isBoundThingInRange() ? this.getInventory().getStackInSlot(i) : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ItemStack decrStackSize(int i, int j){
|
|
||||||
return this.isBoundThingInRange() ? this.getInventory().decrStackSize(i, j) : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ItemStack removeStackFromSlot(int index){
|
|
||||||
if(this.isBoundThingInRange()){
|
|
||||||
return this.getInventory().removeStackFromSlot(index);
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ISidedInventory getSided(){
|
|
||||||
return this.getInventory() instanceof ISidedInventory ? (ISidedInventory)this.getInventory() : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public IInventory getInventory(){
|
|
||||||
if(this.boundPosition != null){
|
|
||||||
TileEntity tile = this.worldObj.getTileEntity(this.boundPosition);
|
|
||||||
if(tile instanceof IInventory){
|
|
||||||
return (IInventory)tile;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isItemValidForSlot(int i, ItemStack stack){
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
||||||
return this.isBoundThingInRange() && this.getInventory().isItemValidForSlot(i, stack);
|
return this.isBoundThingInRange();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isBoundThingInRange(){
|
public boolean isBoundThingInRange(){
|
||||||
if(super.isBoundThingInRange()){
|
if(super.isBoundThingInRange()){
|
||||||
if(this.getInventory() != null){
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
TileEntity tile = this.worldObj.getTileEntity(this.getBoundPosition());
|
TileEntity tile = this.worldObj.getTileEntity(this.getBoundPosition());
|
||||||
if(tile != null){
|
if(tile != null){
|
||||||
for(EnumFacing facing : EnumFacing.values()){
|
for(EnumFacing facing : EnumFacing.values()){
|
||||||
|
@ -121,17 +40,16 @@ public class TileEntityPhantomItemface extends TileEntityPhantomface{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
|
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
|
||||||
return this.isBoundThingInRange() && (this.getSided() == null || this.getSided().canInsertItem(slot, stack, side));
|
return this.isItemValidForSlot(slot, stack);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
|
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
|
||||||
return this.isBoundThingInRange() && (this.getSided() == null || this.getSided().canExtractItem(slot, stack, side));
|
return this.isBoundThingInRange();
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue