cleaned up format and var names as requested by @CovertJaguar at #872

This commit is contained in:
Flow86 2013-05-22 08:11:05 +02:00
parent bece4fb77f
commit a237829c3a

View file

@ -9,7 +9,8 @@
package buildcraft.core.triggers;
import net.minecraft.inventory.*;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.ISidedInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.ForgeDirection;
@ -60,30 +61,27 @@ public class TriggerInventory extends BCTrigger {
if (parameter != null) {
searchedStack = parameter.getItem();
}
if (tile instanceof ISpecialInventory)
{
ISpecialInventory special = (ISpecialInventory) tile;
ItemStack[] arr;
int n;
switch (state)
{
case Contains:
arr = special.extractItem(false, side, 1);
return arr != null && arr.length > 0 && arr[0] != null && arr[0].stackSize > 0
&& (searchedStack == null || arr[0].isItemEqual(searchedStack));
case Empty:
arr = special.extractItem(false, side, 1);
return arr == null || arr.length == 0 || arr[0] == null || arr[0].stackSize == 0;
case Full:
if (tile instanceof ISpecialInventory) {
ISpecialInventory specialInventory = (ISpecialInventory) tile;
ItemStack[] itemStacks;
switch (state) {
case Contains:
itemStacks = specialInventory.extractItem(false, side, 1);
return itemStacks != null && itemStacks.length > 0 && itemStacks[0] != null && itemStacks[0].stackSize > 0 && (searchedStack == null || itemStacks[0].isItemEqual(searchedStack));
case Empty:
itemStacks = specialInventory.extractItem(false, side, 1);
return itemStacks == null || itemStacks.length == 0 || itemStacks[0] == null || itemStacks[0].stackSize == 0;
case Full:
break;
case Space:
if (searchedStack == null)
break;
case Space:
if (searchedStack == null) break;
n = special.addItem(searchedStack, false, side);
return n > 0;
int added = specialInventory.addItem(searchedStack, false, side);
return added > 0;
}
}
if (tile instanceof IInventory) {
ISidedInventory inv = InventoryWrapper.getWrappedInventory(tile);
int invSize = inv.getSizeInventory();