971a9d22e8
- Fixed tab order - Introduced focus state for corner buttons - Allowed the player to enter any text, but add validation that only persist it if it is a valid number - Enter will now confirm these dialogs and return to the previous dialog - The text field is automatically focused and its contents are selected
167 lines
6.3 KiB
Java
167 lines
6.3 KiB
Java
/*
|
|
* This file is part of Applied Energistics 2.
|
|
* Copyright (c) 2013 - 2014, 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 <http://www.gnu.org/licenses/lgpl>.
|
|
*/
|
|
|
|
package appeng.container.implementations;
|
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
import net.minecraft.entity.player.PlayerInventory;
|
|
import net.minecraft.inventory.container.ContainerType;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.CompoundNBT;
|
|
import net.minecraft.network.PacketBuffer;
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
import net.minecraftforge.event.entity.player.PlayerDestroyItemEvent;
|
|
import net.minecraftforge.items.IItemHandler;
|
|
|
|
import appeng.container.AEBaseContainer;
|
|
import appeng.container.ContainerLocator;
|
|
import appeng.container.slot.OutputSlot;
|
|
import appeng.container.slot.RestrictedInputSlot;
|
|
import appeng.core.Api;
|
|
import appeng.items.contents.QuartzKnifeObj;
|
|
import appeng.items.materials.MaterialItem;
|
|
import appeng.tile.inventory.AppEngInternalInventory;
|
|
|
|
public class QuartzKnifeContainer extends AEBaseContainer {
|
|
|
|
public static ContainerType<QuartzKnifeContainer> TYPE;
|
|
|
|
private static final ContainerHelper<QuartzKnifeContainer, QuartzKnifeObj> helper = new ContainerHelper<>(
|
|
QuartzKnifeContainer::new, QuartzKnifeObj.class);
|
|
|
|
public static QuartzKnifeContainer fromNetwork(int windowId, PlayerInventory inv, PacketBuffer buf) {
|
|
return helper.fromNetwork(windowId, inv, buf);
|
|
}
|
|
|
|
public static boolean open(PlayerEntity player, ContainerLocator locator) {
|
|
return helper.open(player, locator);
|
|
}
|
|
|
|
private final QuartzKnifeObj toolInv;
|
|
|
|
private final IItemHandler inSlot = new AppEngInternalInventory(null, 1, 1);
|
|
private String myName = "";
|
|
|
|
public QuartzKnifeContainer(int id, final PlayerInventory ip, final QuartzKnifeObj te) {
|
|
super(TYPE, id, ip, null, null);
|
|
this.toolInv = te;
|
|
|
|
this.addSlot(
|
|
new RestrictedInputSlot(RestrictedInputSlot.PlacableItemType.METAL_INGOTS, this.inSlot, 0, 94, 44, ip));
|
|
this.addSlot(new QuartzKniveSlot(this.inSlot, 0, 134, 44, -1));
|
|
|
|
this.lockPlayerInventorySlot(ip.currentItem);
|
|
|
|
this.bindPlayerInventory(ip, 0, 184 - /* height of player inventory */82);
|
|
}
|
|
|
|
public void setName(final String value) {
|
|
this.myName = value;
|
|
}
|
|
|
|
@Override
|
|
public void detectAndSendChanges() {
|
|
final ItemStack currentItem = this.getPlayerInv().getCurrentItem();
|
|
|
|
if (currentItem != this.toolInv.getItemStack()) {
|
|
if (!currentItem.isEmpty()) {
|
|
if (ItemStack.areItemsEqual(this.toolInv.getItemStack(), currentItem)) {
|
|
this.getPlayerInv().setInventorySlotContents(this.getPlayerInv().currentItem,
|
|
this.toolInv.getItemStack());
|
|
} else {
|
|
this.setValidContainer(false);
|
|
}
|
|
} else {
|
|
this.setValidContainer(false);
|
|
}
|
|
}
|
|
|
|
super.detectAndSendChanges();
|
|
}
|
|
|
|
@Override
|
|
public void onContainerClosed(final PlayerEntity par1PlayerEntity) {
|
|
if (this.inSlot.getStackInSlot(0) != null) {
|
|
par1PlayerEntity.dropItem(this.inSlot.getStackInSlot(0), false);
|
|
}
|
|
}
|
|
|
|
private class QuartzKniveSlot extends OutputSlot {
|
|
QuartzKniveSlot(IItemHandler inv, int invSlot, int x, int y, int iconIdx) {
|
|
super(inv, invSlot, x, y, iconIdx);
|
|
}
|
|
|
|
@Override
|
|
public ItemStack getStack() {
|
|
final IItemHandler baseInv = this.getItemHandler();
|
|
final ItemStack input = baseInv.getStackInSlot(0);
|
|
if (input == ItemStack.EMPTY) {
|
|
return ItemStack.EMPTY;
|
|
}
|
|
|
|
if (RestrictedInputSlot.isMetalIngot(input)) {
|
|
if (QuartzKnifeContainer.this.myName.length() > 0) {
|
|
return Api.instance().definitions().materials().namePress().maybeStack(1).map(namePressStack -> {
|
|
final CompoundNBT compound = namePressStack.getOrCreateTag();
|
|
compound.putString(MaterialItem.TAG_INSCRIBE_NAME, QuartzKnifeContainer.this.myName);
|
|
|
|
return namePressStack;
|
|
}).orElse(ItemStack.EMPTY);
|
|
}
|
|
}
|
|
return ItemStack.EMPTY;
|
|
}
|
|
|
|
@Override
|
|
@Nonnull
|
|
public ItemStack decrStackSize(int amount) {
|
|
ItemStack ret = this.getStack();
|
|
if (!ret.isEmpty()) {
|
|
this.makePlate();
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
@Override
|
|
public void putStack(final ItemStack stack) {
|
|
if (stack.isEmpty()) {
|
|
this.makePlate();
|
|
}
|
|
}
|
|
|
|
private void makePlate() {
|
|
if (isServer()) {
|
|
if (!this.getItemHandler().extractItem(0, 1, false).isEmpty()) {
|
|
final ItemStack item = QuartzKnifeContainer.this.toolInv.getItemStack();
|
|
final ItemStack before = item.copy();
|
|
item.damageItem(1, QuartzKnifeContainer.this.getPlayerInv().player, p -> {
|
|
QuartzKnifeContainer.this.getPlayerInv().setInventorySlotContents(
|
|
QuartzKnifeContainer.this.getPlayerInv().currentItem, ItemStack.EMPTY);
|
|
MinecraftForge.EVENT_BUS.post(new PlayerDestroyItemEvent(
|
|
QuartzKnifeContainer.this.getPlayerInv().player, before, null));
|
|
});
|
|
|
|
QuartzKnifeContainer.this.detectAndSendChanges();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|