本文整理汇总了Java中com.enderio.core.client.gui.widget.GhostSlot.getStackSizeLimit方法的典型用法代码示例。如果您正苦于以下问题:Java GhostSlot.getStackSizeLimit方法的具体用法?Java GhostSlot.getStackSizeLimit怎么用?Java GhostSlot.getStackSizeLimit使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.enderio.core.client.gui.widget.GhostSlot
的用法示例。
在下文中一共展示了GhostSlot.getStackSizeLimit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ghostSlotClickedPrimaryMouseButton
import com.enderio.core.client.gui.widget.GhostSlot; //导入方法依赖的package包/类
protected void ghostSlotClickedPrimaryMouseButton(GhostSlot slot, ItemStack handStack, ItemStack existingStack) {
if (handStack == null || handStack.getItem() == null || handStack.stackSize == 0) { // empty hand
slot.putStack(null);
} else { // item in hand
if (existingStack == null || existingStack.getItem() == null || existingStack.stackSize == 0) { // empty slot
replaceSlot(slot, handStack);
} else { // filled slot
if (ItemUtil.areStackMergable(existingStack, handStack)) { // same item
if (existingStack.stackSize < existingStack.getMaxStackSize() && existingStack.stackSize < slot.getStackSizeLimit()) {
increaseSlot(slot, existingStack);
} else {
// NOP
}
} else { // different item
replaceSlot(slot, handStack);
}
}
}
}
示例2: replaceSlot
import com.enderio.core.client.gui.widget.GhostSlot; //导入方法依赖的package包/类
protected void replaceSlot(GhostSlot slot, ItemStack handStack) {
if (handStack.stackSize <= slot.getStackSizeLimit()) {
slot.putStack(handStack);
} else {
ItemStack tmp = handStack.copy();
tmp.stackSize = slot.getStackSizeLimit();
slot.putStack(tmp);
}
}
示例3: ghostSlotClickedMouseWheelUp
import com.enderio.core.client.gui.widget.GhostSlot; //导入方法依赖的package包/类
protected void ghostSlotClickedMouseWheelUp(GhostSlot slot, ItemStack handStack, ItemStack existingStack) {
if (existingStack != null && existingStack.getItem() != null && existingStack.stackSize > 0 && existingStack.stackSize < existingStack.getMaxStackSize()
&& existingStack.stackSize < slot.getStackSizeLimit()) {
increaseSlot(slot, existingStack);
}
}