ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/util/StackUtil.java

94 lines
2.4 KiB
Java
Raw Normal View History

/*
* This file ("StackUtil.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.util;
import net.minecraft.item.ItemStack;
import net.minecraft.util.NonNullList;
public final class StackUtil{
public static ItemStack validateCopy(ItemStack stack){
if(isValid(stack)){
return stack.copy();
}
else{
return getNull();
}
}
public static ItemStack validateCheck(ItemStack stack){
if(isValid(stack)){
return stack;
}
else{
return getNull();
}
}
public static boolean isValid(ItemStack stack){
2016-11-26 21:32:27 +01:00
return stack != null && !stack.isEmpty();
}
public static ItemStack getNull(){
2016-11-26 21:32:27 +01:00
return ItemStack.EMPTY;
}
public static int getStackSize(ItemStack stack){
if(!isValid(stack)){
return 0;
}
else{
2016-11-26 21:32:27 +01:00
return stack.getCount();
}
}
public static ItemStack setStackSize(ItemStack stack, int size){
return setStackSize(stack, size, false);
}
public static ItemStack setStackSize(ItemStack stack, int size, boolean containerOnEmpty){
if(size <= 0){
if(isValid(stack) && containerOnEmpty){
return stack.getItem().getContainerItem(stack);
}
else{
return getNull();
}
}
2016-11-26 21:32:27 +01:00
stack.setCount(size);
return stack;
}
public static ItemStack addStackSize(ItemStack stack, int size){
return addStackSize(stack, size, false);
}
public static ItemStack addStackSize(ItemStack stack, int size, boolean containerOnEmpty){
return setStackSize(stack, getStackSize(stack)+size, containerOnEmpty);
}
2016-11-19 21:11:17 +01:00
public static boolean isIInvEmpty(NonNullList<ItemStack> slots){
2016-11-19 21:11:17 +01:00
for(ItemStack stack : slots){
if(StackUtil.isValid(stack)){
return false;
}
}
return true;
}
public static NonNullList<ItemStack> createSlots(int size){
2016-11-26 21:32:27 +01:00
return NonNullList.withSize(size, getNull());
}
}