Java Code Examples for net.minecraft.util.NonNullList#withSize()

The following examples show how to use net.minecraft.util.NonNullList#withSize() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TileEntitySaltFurnace.java    From TofuCraftReload with MIT License 6 votes vote down vote up
@Override
public void readFromNBT(NBTTagCompound par1NBTTagCompound) {
    super.readFromNBT(par1NBTTagCompound);
    this.furnaceItemStacks = NonNullList.withSize(this.getSizeInventory(), ItemStack.EMPTY);
    ItemStackHelper.loadAllItems(par1NBTTagCompound, this.furnaceItemStacks);

    this.furnaceBurnTime = par1NBTTagCompound.getShort("BurnTime");
    this.cookTime = par1NBTTagCompound.getShort("CookTime");
    this.currentItemBurnTime = par1NBTTagCompound.getShort("ItemBurnTime");
    ;
    this.nigariTank.readFromNBT(par1NBTTagCompound.getCompoundTag("NigariTank"));

    if (par1NBTTagCompound.hasKey("CustomName")) {
        this.customName = par1NBTTagCompound.getString("CustomName");
    }
}
 
Example 2
Source File: ContainerMSU.java    From enderutilities with GNU Lesser General Public License v3.0 5 votes vote down vote up
public ContainerMSU(EntityPlayer player, TileEntityMSU te)
{
    super(player, te.getWrappedInventoryForContainer(player), te);
    this.temsu = te;
    this.inventoryNonWrapped = te.getInventoryMSU();

    int numSlots = this.inventoryNonWrapped.getSlots();
    this.lockedLast = new boolean[numSlots];
    this.templateStacksLast = NonNullList.withSize(numSlots, ItemStack.EMPTY);

    this.addCustomInventorySlots();
    this.addPlayerInventorySlots(8, 57);
}
 
Example 3
Source File: TileEntityCampfirePot.java    From Sakura_mod with MIT License 5 votes vote down vote up
public void readPacketNBT(NBTTagCompound cmp) {
    this.inventory =
            NonNullList.<ItemStack>withSize(this.getSizeInventory(), ItemStack.EMPTY);
    ItemStackHelper.loadAllItems(cmp, this.inventory);
    this.burnTime = cmp.getInteger("BurnTime");
    this.cookTime = cmp.getInteger("CookTime");
    this.tank.readFromNBT(cmp.getCompoundTag("Tank"));
}
 
Example 4
Source File: TileEntityDistillation.java    From Sakura_mod with MIT License 5 votes vote down vote up
public void readPacketNBT(NBTTagCompound cmp) {
	this.inventory = NonNullList.<ItemStack>withSize(this.getSizeInventory(), ItemStack.EMPTY);
	ItemStackHelper.loadAllItems(cmp, this.inventory);

	processTimer = cmp.getInteger(TAG_PROCESS);

	this.tank.readFromNBT(cmp.getCompoundTag("Tank"));
	this.resultTank.readFromNBT(cmp.getCompoundTag("ResultTank"));
}
 
Example 5
Source File: TileEntityMapleCauldron.java    From Sakura_mod with MIT License 5 votes vote down vote up
public void readPacketNBT(NBTTagCompound cmp) {
    this.inventory =
            NonNullList.<ItemStack>withSize(this.getSizeInventory(), ItemStack.EMPTY);
    ItemStackHelper.loadAllItems(cmp, this.inventory);
    this.mapleTime = cmp.getInteger("MapleTime");
    this.cookTime = cmp.getInteger("CookTime");
    this.tank.readFromNBT(cmp.getCompoundTag("Tank"));
}
 
Example 6
Source File: GTTileUUMAssembler.java    From GT-Classic with GNU Lesser General Public License v3.0 5 votes vote down vote up
/** Reads the inventory list from NBT **/
public static void readInventory(NBTTagCompound nbt, TileEntityElecMachine tile) {
	NBTTagList list = nbt.getTagList("Items", 10);
	tile.inventory = NonNullList.withSize(tile.slotCount, ItemStack.EMPTY);
	for (int i = 0; i < list.tagCount(); ++i) {
		NBTTagCompound data = list.getCompoundTagAt(i);
		int slot = data.getInteger("Slot");
		if (slot >= 0 && slot < tile.slotCount) {
			tile.inventory.set(slot, new ItemStack(data));
		}
	}
}
 
Example 7
Source File: Utils.java    From ForgeHax with MIT License 5 votes vote down vote up
public static List<ItemStack> getShulkerContents(ItemStack stack) { // TODO: move somewhere else
  NonNullList<ItemStack> contents = NonNullList.withSize(27, ItemStack.EMPTY);
  NBTTagCompound compound = stack.getTagCompound();
  if (compound != null && compound.hasKey("BlockEntityTag", 10)) {
    NBTTagCompound tags = compound.getCompoundTag("BlockEntityTag");
    if (tags.hasKey("Items", 9)) {
      // load in the items
      ItemStackHelper.loadAllItems(tags, contents);
    }
  }
  return contents;
}
 
Example 8
Source File: TileEntityTFStorage.java    From TofuCraftReload with MIT License 5 votes vote down vote up
public void readPacketNBT(NBTTagCompound cmp) {
    this.inventory =
            NonNullList.withSize(this.getSizeInventory(), ItemStack.EMPTY);
    ItemStackHelper.loadAllItems(cmp, this.inventory);

    this.workload = cmp.getInteger("workload");
    this.current_workload = cmp.getInteger("current");

    this.tank.readFromNBT(cmp.getCompoundTag("Tank"));
}
 
Example 9
Source File: CreateRecipe.java    From EnderStorage with MIT License 5 votes vote down vote up
@Nullable
@Override
public CreateRecipe read(ResourceLocation recipeId, PacketBuffer buffer) {
    String s = buffer.readString(32767);
    NonNullList<Ingredient> ingredients = NonNullList.withSize(3 * 3, Ingredient.EMPTY);

    for (int k = 0; k < ingredients.size(); ++k) {
        ingredients.set(k, Ingredient.read(buffer));
    }

    ItemStack result = buffer.readItemStack();
    return new CreateRecipe(recipeId, s, result, ingredients);
}
 
Example 10
Source File: VanillaFurnaceRecipe.java    From customstuff4 with GNU General Public License v3.0 5 votes vote down vote up
public VanillaFurnaceRecipe(ItemStack input)
{
    this.input = input;
    this.result = FurnaceRecipes.instance().getSmeltingResult(input);
    outputs = NonNullList.withSize(1, new SimpleMachineRecipeOutput(result));
    inputList = Collections.singletonList(new RecipeInputImpl(new WrappedItemStackConstant(input)));
}
 
Example 11
Source File: ItemStackHandlerLockable.java    From enderutilities with GNU Lesser General Public License v3.0 5 votes vote down vote up
public ItemStackHandlerLockable(int inventoryId, int invSize, int stackLimit, boolean allowCustomStackSizes,
        String tagName, TileEntityEnderUtilitiesInventory te)
{
    super(inventoryId, invSize, stackLimit, allowCustomStackSizes, tagName, te);

    this.templateStacks = NonNullList.withSize(invSize, ItemStack.EMPTY);
    this.locked = new BitSet(invSize);
}
 
Example 12
Source File: BlockApricotLeaves.java    From TofuCraftReload with MIT License 4 votes vote down vote up
@Override
public List<ItemStack> onSheared(ItemStack item, IBlockAccess world, BlockPos pos, int fortune) {
    return NonNullList.withSize(1, new ItemStack(this, 1));
}
 
Example 13
Source File: BlockMapleLeaveOrange.java    From Sakura_mod with MIT License 4 votes vote down vote up
@Override
public List<ItemStack> onSheared(ItemStack item, IBlockAccess world, BlockPos pos, int fortune) {
    return NonNullList.withSize(1, new ItemStack(this, 1));
}
 
Example 14
Source File: BlockMapleLeaveYellow.java    From Sakura_mod with MIT License 4 votes vote down vote up
@Override
public List<ItemStack> onSheared(ItemStack item, IBlockAccess world, BlockPos pos, int fortune) {
    return NonNullList.withSize(1, new ItemStack(this, 1));
}
 
Example 15
Source File: ShulkerPreviewModule.java    From seppuku with GNU General Public License v3.0 4 votes vote down vote up
@Listener
public void onRenderTooltip(EventRenderTooltip event) {
    if (event.getItemStack() == null)
        return;

    final Minecraft mc = Minecraft.getMinecraft();

    if (event.getItemStack().getItem() instanceof ItemShulkerBox) {
        ItemStack shulker = event.getItemStack();
        NBTTagCompound tagCompound = shulker.getTagCompound();
        if (tagCompound != null && tagCompound.hasKey("BlockEntityTag", 10)) {
            NBTTagCompound blockEntityTag = tagCompound.getCompoundTag("BlockEntityTag");
            if (blockEntityTag.hasKey("Items", 9)) {
                event.setCanceled(true); // cancel rendering the old tooltip

                NonNullList<ItemStack> nonnulllist = NonNullList.<ItemStack>withSize(27, ItemStack.EMPTY);
                ItemStackHelper.loadAllItems(blockEntityTag, nonnulllist); // load the itemstacks from the tag to the list

                // store mouse/event coords
                int x = event.getX();
                int y = event.getY();

                // translate to mouse x, y
                GlStateManager.translate(x + 10, y - 5, 0);

                GlStateManager.disableLighting();
                GlStateManager.disableDepth();
                // background
                RenderUtil.drawRect(-3, -mc.fontRenderer.FONT_HEIGHT - 4, 9 * 16 + 3, 3 * 16 + 3, 0x99101010);
                RenderUtil.drawRect(-2, -mc.fontRenderer.FONT_HEIGHT - 3, 9 * 16 + 2, 3 * 16 + 2, 0xFF202020);
                RenderUtil.drawRect(0, 0, 9 * 16, 3 * 16, 0xFF101010);

                // text
                mc.fontRenderer.drawStringWithShadow(shulker.getDisplayName(), 0, -mc.fontRenderer.FONT_HEIGHT - 1, 0xFFFFFFFF);

                GlStateManager.enableDepth();
                mc.getRenderItem().zLevel = 150.0F;
                RenderHelper.enableGUIStandardItemLighting();

                // loop through items in shulker inventory
                for (int i = 0; i < nonnulllist.size(); i++) {
                    ItemStack itemStack = nonnulllist.get(i);
                    int offsetX = (i % 9) * 16;
                    int offsetY = (i / 9) * 16;
                    mc.getRenderItem().renderItemAndEffectIntoGUI(itemStack, offsetX, offsetY);
                    mc.getRenderItem().renderItemOverlayIntoGUI(mc.fontRenderer, itemStack, offsetX, offsetY, null);
                }

                RenderHelper.disableStandardItemLighting();
                mc.getRenderItem().zLevel = 0.0F;
                GlStateManager.enableLighting();

                // reverse the translate
                GlStateManager.translate(-(x + 10), -(y - 5), 0);
            }
        }

        if(this.middleClick.getValue()) {
            if (Mouse.isButtonDown(2)) {
                if (!this.clicked) {
                    final BlockShulkerBox shulkerBox = (BlockShulkerBox) Block.getBlockFromItem(shulker.getItem());
                    if (shulkerBox != null) {
                        final NBTTagCompound tag = shulker.getTagCompound();
                        if (tag != null && tag.hasKey("BlockEntityTag", 10)) {
                            final NBTTagCompound entityTag = tag.getCompoundTag("BlockEntityTag");

                            final TileEntityShulkerBox te = new TileEntityShulkerBox();
                            te.setWorld(mc.world);
                            te.readFromNBT(entityTag);
                            mc.displayGuiScreen(new GuiShulkerBox(mc.player.inventory, te));
                        }
                    }
                }
                this.clicked = true;
            } else {
                this.clicked = false;
            }
        }
    }
}
 
Example 16
Source File: BlockUnderVine.java    From TofuCraftReload with MIT License 4 votes vote down vote up
@Override
public NonNullList<ItemStack> onSheared(ItemStack item, IBlockAccess world, BlockPos pos, int fortune) {
    return NonNullList.withSize(1, new ItemStack(this, 1));
}
 
Example 17
Source File: BlockTofuYuba.java    From TofuCraftReload with MIT License 4 votes vote down vote up
@Override
public NonNullList<ItemStack> onSheared(ItemStack item, IBlockAccess world, BlockPos pos, int fortune) {
    return NonNullList.withSize(1, new ItemStack(BlockLoader.yubaGrass, 1));
}
 
Example 18
Source File: TileEntityProcessorBaseInventoried.java    From TofuCraftReload with MIT License 4 votes vote down vote up
@Override
public void readFromNBT(NBTTagCompound compound) {
    this.inventory = NonNullList.withSize(this.getSizeInventory(), ItemStack.EMPTY);
    ItemStackHelper.loadAllItems(compound, this.inventory);
    super.readFromNBT(compound);
}
 
Example 19
Source File: SimpleMachineRecipeOutput.java    From customstuff4 with GNU General Public License v3.0 4 votes vote down vote up
public SimpleMachineRecipeOutput(ItemStack result)
{
    this.result = result;
    resultList = NonNullList.withSize(1, result);
}
 
Example 20
Source File: NovaCraftingRecipe.java    From NOVA-Core with GNU Lesser General Public License v3.0 4 votes vote down vote up
@Override
public NonNullList<ItemStack> getRemainingItems(InventoryCrafting inventory) {
	return NonNullList.withSize(0, ItemStack.EMPTY);
}