blob: 81c8e12917475471a7a31d9aa158f8be6c5710b7 [file] [log] [blame] [raw]
package li.cil.oc.common.container
import li.cil.oc.client.gui.Icons
import li.cil.oc.common
import li.cil.oc.common.InventorySlots.InventorySlot
import li.cil.oc.util.SideTracker
import net.minecraft.entity.player.EntityPlayer
import net.minecraft.inventory.IInventory
import net.minecraft.inventory.Slot
class DynamicComponentSlot(val container: Player, inventory: IInventory, index: Int, x: Int, y: Int, val info: DynamicComponentSlot => InventorySlot, val containerTierGetter: () => Int) extends Slot(inventory, index, x, y) with ComponentSlot {
override def tier = {
val mainTier = containerTierGetter()
if (mainTier >= 0) info(this).tier
else mainTier
}
def tierIcon = Icons.get(tier)
def slot = {
val mainTier = containerTierGetter()
if (mainTier >= 0) info(this).slot
else common.Slot.None
}
override def getBackgroundIconIndex = Icons.get(slot)
override def getSlotStackLimit =
slot match {
case common.Slot.Tool | common.Slot.Any => super.getSlotStackLimit
case common.Slot.None => 0
case _ => 1
}
override protected def clearIfInvalid(player: EntityPlayer) {
if (SideTracker.isServer && getHasStack && !isItemValid(getStack)) {
val stack = getStack
putStack(null)
player.inventory.addItemStackToInventory(stack)
player.dropPlayerItemWithRandomChoice(stack, false)
}
}
}