/* * This file is part of Applied Energistics 2. * Copyright (c) 2013 - 2018, AlgorithmX2, All rights reserved. * * Applied Energistics 2 is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Applied Energistics 2 is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Applied Energistics 2. If not, see . */ package appeng.items.storage; import java.util.List; import java.util.Set; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.entity.player.PlayerInventory; import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; import net.minecraft.util.EnumActionResult; import net.minecraft.util.Direction; import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; import net.minecraftforge.items.IItemHandler; import appeng.api.AEApi; import appeng.api.config.FuzzyMode; import appeng.api.exceptions.MissingDefinitionException; import appeng.api.implementations.items.IItemGroup; import appeng.api.implementations.items.IStorageCell; import appeng.api.implementations.items.IUpgradeModule; import appeng.api.storage.IMEInventoryHandler; import appeng.api.storage.data.IAEItemStack; import appeng.api.storage.data.IAEStack; import appeng.api.storage.data.IItemList; import appeng.core.AEConfig; import appeng.core.features.AEFeature; import appeng.core.localization.GuiText; import appeng.items.AEBaseItem; import appeng.items.contents.CellConfig; import appeng.items.contents.CellUpgrades; import appeng.items.materials.MaterialType; import appeng.util.InventoryAdaptor; import appeng.util.Platform; /** * @author DrummerMC * @version rv6 - 2018-01-17 * @since rv6 2018-01-17 */ public abstract class AbstractStorageCell> extends AEBaseItem implements IStorageCell, IItemGroup { protected final MaterialType component; protected final int totalBytes; public AbstractStorageCell( final MaterialType whichCell, final int kilobytes ) { this.setMaxStackSize( 1 ); this.totalBytes = kilobytes * 1024; this.component = whichCell; } @OnlyIn( Dist.CLIENT ) @Override public void addCheckedInformation( final ItemStack stack, final World world, final List lines, final ITooltipFlag advancedTooltips ) { AEApi.instance() .client() .addCellInformation( AEApi.instance().registries().cell().getCellInventory( stack, null, this.getChannel() ), lines ); } @Override public int getBytes( final ItemStack cellItem ) { return this.totalBytes; } @Override public int getTotalTypes( final ItemStack cellItem ) { return 63; } @Override public boolean isBlackListed( final ItemStack cellItem, final T requestedAddition ) { return false; } @Override public boolean storableInStorageCell() { return false; } @Override public boolean isStorageCell( final ItemStack i ) { return true; } @Override public String getUnlocalizedGroupName( final Set others, final ItemStack is ) { return GuiText.StorageCells.getUnlocalized(); } @Override public boolean isEditable( final ItemStack is ) { return true; } @Override public IItemHandler getUpgradesInventory( final ItemStack is ) { return new CellUpgrades( is, 2 ); } @Override public IItemHandler getConfigInventory( final ItemStack is ) { return new CellConfig( is ); } @Override public FuzzyMode getFuzzyMode( final ItemStack is ) { final String fz = Platform.openNbtData( is ).getString( "FuzzyMode" ); try { return FuzzyMode.valueOf( fz ); } catch( final Throwable t ) { return FuzzyMode.IGNORE_ALL; } } @Override public void setFuzzyMode( final ItemStack is, final FuzzyMode fzMode ) { Platform.openNbtData( is ).setString( "FuzzyMode", fzMode.name() ); } @Override public ActionResult onItemRightClick( final World world, final PlayerEntity player, final Hand hand ) { this.disassembleDrive( player.getHeldItem( hand ), world, player ); return new ActionResult<>( EnumActionResult.SUCCESS, player.getHeldItem( hand ) ); } private boolean disassembleDrive( final ItemStack stack, final World world, final PlayerEntity player ) { if( player.isShiftKeyDown() ) { if( Platform.isClient() ) { return false; } final PlayerInventory playerInventory = player.inventory; final IMEInventoryHandler inv = AEApi.instance().registries().cell().getCellInventory( stack, null, this.getChannel() ); if( inv != null && playerInventory.getCurrentItem() == stack ) { final InventoryAdaptor ia = InventoryAdaptor.getAdaptor( player ); final IItemList list = inv.getAvailableItems( this.getChannel().createList() ); if( list.isEmpty() && ia != null ) { playerInventory.setInventorySlotContents( playerInventory.currentItem, ItemStack.EMPTY ); // drop core final ItemStack extraB = ia.addItems( this.component.stack( 1 ) ); if( !extraB.isEmpty() ) { player.dropItem( extraB, false ); } // drop upgrades final IItemHandler upgradesInventory = this.getUpgradesInventory( stack ); for( int upgradeIndex = 0; upgradeIndex < upgradesInventory.getSlots(); upgradeIndex++ ) { final ItemStack upgradeStack = upgradesInventory.getStackInSlot( upgradeIndex ); final ItemStack leftStack = ia.addItems( upgradeStack ); if( !leftStack.isEmpty() && upgradeStack.getItem() instanceof IUpgradeModule ) { player.dropItem( upgradeStack, false ); } } // drop empty storage cell case this.dropEmptyStorageCellCase( ia, player ); if( player.inventoryContainer != null ) { player.inventoryContainer.detectAndSendChanges(); } return true; } } } return false; } protected abstract void dropEmptyStorageCellCase( final InventoryAdaptor ia, final PlayerEntity player ); @Override public EnumActionResult onItemUseFirst( final PlayerEntity player, final World world, final BlockPos pos, final Direction side, final float hitX, final float hitY, final float hitZ, final Hand hand ) { return this.disassembleDrive( player.getHeldItem( hand ), world, player ) ? EnumActionResult.SUCCESS : EnumActionResult.PASS; } @Override public ItemStack getContainerItem( final ItemStack itemStack ) { return AEApi.instance() .definitions() .materials() .emptyStorageCell() .maybeStack( 1 ) .orElseThrow( () -> new MissingDefinitionException( "Tried to use empty storage cells while basic storage cells are defined." ) ); } @Override public boolean hasContainerItem( final ItemStack stack ) { return AEConfig.instance().isFeatureEnabled( AEFeature.ENABLE_DISASSEMBLY_CRAFTING ); } }