279 lines
8.6 KiB
Java
279 lines
8.6 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.parts.misc;
|
|
|
|
import java.util.EnumSet;
|
|
import java.util.List;
|
|
|
|
import com.google.common.collect.ImmutableSet;
|
|
|
|
import net.minecraft.block.entity.BlockEntity;
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
import net.minecraft.inventory.CraftingInventory;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.CompoundTag;
|
|
import net.minecraft.screen.ScreenHandlerType;
|
|
import net.minecraft.util.Hand;
|
|
import net.minecraft.util.Identifier;
|
|
import net.minecraft.util.math.Direction;
|
|
import net.minecraft.util.math.Vec3d;
|
|
|
|
import alexiil.mc.lib.attributes.AttributeList;
|
|
import alexiil.mc.lib.attributes.item.FixedItemInv;
|
|
|
|
import appeng.api.config.Actionable;
|
|
import appeng.api.config.Upgrades;
|
|
import appeng.api.networking.IGridNode;
|
|
import appeng.api.networking.crafting.ICraftingLink;
|
|
import appeng.api.networking.crafting.ICraftingPatternDetails;
|
|
import appeng.api.networking.crafting.ICraftingProviderHelper;
|
|
import appeng.api.networking.events.MENetworkChannelsChanged;
|
|
import appeng.api.networking.events.MENetworkEventSubscribe;
|
|
import appeng.api.networking.events.MENetworkPowerStatusChange;
|
|
import appeng.api.networking.ticking.IGridTickable;
|
|
import appeng.api.networking.ticking.TickRateModulation;
|
|
import appeng.api.networking.ticking.TickingRequest;
|
|
import appeng.api.parts.IPartCollisionHelper;
|
|
import appeng.api.parts.IPartModel;
|
|
import appeng.api.storage.IMEMonitor;
|
|
import appeng.api.storage.IStorageChannel;
|
|
import appeng.api.storage.IStorageMonitorable;
|
|
import appeng.api.storage.data.IAEItemStack;
|
|
import appeng.api.storage.data.IAEStack;
|
|
import appeng.api.util.AECableType;
|
|
import appeng.api.util.IConfigManager;
|
|
import appeng.container.ContainerLocator;
|
|
import appeng.container.ContainerOpener;
|
|
import appeng.container.implementations.InterfaceContainer;
|
|
import appeng.core.Api;
|
|
import appeng.core.AppEng;
|
|
import appeng.helpers.DualityInterface;
|
|
import appeng.helpers.IInterfaceHost;
|
|
import appeng.helpers.IPriorityHost;
|
|
import appeng.items.parts.PartModels;
|
|
import appeng.parts.BasicStatePart;
|
|
import appeng.parts.PartModel;
|
|
import appeng.util.Platform;
|
|
import appeng.util.inv.IAEAppEngInventory;
|
|
import appeng.util.inv.IInventoryDestination;
|
|
import appeng.util.inv.InvOperation;
|
|
|
|
public class InterfacePart extends BasicStatePart implements IGridTickable, IStorageMonitorable, IInventoryDestination,
|
|
IInterfaceHost, IAEAppEngInventory, IPriorityHost {
|
|
|
|
public static final Identifier MODEL_BASE = new Identifier(AppEng.MOD_ID, "part/interface_base");
|
|
|
|
@PartModels
|
|
public static final PartModel MODELS_OFF = new PartModel(MODEL_BASE,
|
|
new Identifier(AppEng.MOD_ID, "part/interface_off"));
|
|
|
|
@PartModels
|
|
public static final PartModel MODELS_ON = new PartModel(MODEL_BASE,
|
|
new Identifier(AppEng.MOD_ID, "part/interface_on"));
|
|
|
|
@PartModels
|
|
public static final PartModel MODELS_HAS_CHANNEL = new PartModel(MODEL_BASE,
|
|
new Identifier(AppEng.MOD_ID, "part/interface_has_channel"));
|
|
|
|
private final DualityInterface duality = new DualityInterface(this.getProxy(), this);
|
|
|
|
public InterfacePart(final ItemStack is) {
|
|
super(is);
|
|
}
|
|
|
|
@MENetworkEventSubscribe
|
|
public void stateChange(final MENetworkChannelsChanged c) {
|
|
this.duality.notifyNeighbors();
|
|
}
|
|
|
|
@MENetworkEventSubscribe
|
|
public void stateChange(final MENetworkPowerStatusChange c) {
|
|
this.duality.notifyNeighbors();
|
|
}
|
|
|
|
@Override
|
|
public void getBoxes(final IPartCollisionHelper bch) {
|
|
bch.addBox(2, 2, 14, 14, 14, 16);
|
|
bch.addBox(5, 5, 12, 11, 11, 14);
|
|
}
|
|
|
|
@Override
|
|
public int getInstalledUpgrades(final Upgrades u) {
|
|
return this.duality.getInstalledUpgrades(u);
|
|
}
|
|
|
|
@Override
|
|
public void gridChanged() {
|
|
this.duality.gridChanged();
|
|
}
|
|
|
|
@Override
|
|
public void readFromNBT(final CompoundTag data) {
|
|
super.readFromNBT(data);
|
|
this.duality.readFromNBT(data);
|
|
}
|
|
|
|
@Override
|
|
public void writeToNBT(final CompoundTag data) {
|
|
super.writeToNBT(data);
|
|
this.duality.writeToNBT(data);
|
|
}
|
|
|
|
@Override
|
|
public void addToWorld() {
|
|
super.addToWorld();
|
|
this.duality.initialize();
|
|
}
|
|
|
|
@Override
|
|
public void getDrops(final List<ItemStack> drops, final boolean wrenched) {
|
|
this.duality.addDrops(drops);
|
|
}
|
|
|
|
@Override
|
|
public float getCableConnectionLength(AECableType cable) {
|
|
return 4;
|
|
}
|
|
|
|
@Override
|
|
public IConfigManager getConfigManager() {
|
|
return this.duality.getConfigManager();
|
|
}
|
|
|
|
@Override
|
|
public FixedItemInv getInventoryByName(final String name) {
|
|
return this.duality.getInventoryByName(name);
|
|
}
|
|
|
|
@Override
|
|
public boolean onPartActivate(final PlayerEntity p, final Hand hand, final Vec3d pos) {
|
|
if (Platform.isServer()) {
|
|
ContainerOpener.openContainer(InterfaceContainer.TYPE, p, ContainerLocator.forPart(this));
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean canInsert(final ItemStack stack) {
|
|
return this.duality.canInsert(stack);
|
|
}
|
|
|
|
@Override
|
|
public <T extends IAEStack<T>> IMEMonitor<T> getInventory(IStorageChannel<T> channel) {
|
|
return this.duality.getInventory(channel);
|
|
}
|
|
|
|
@Override
|
|
public TickingRequest getTickingRequest(final IGridNode node) {
|
|
return this.duality.getTickingRequest(node);
|
|
}
|
|
|
|
@Override
|
|
public TickRateModulation tickingRequest(final IGridNode node, final int ticksSinceLastCall) {
|
|
return this.duality.tickingRequest(node, ticksSinceLastCall);
|
|
}
|
|
|
|
@Override
|
|
public void onChangeInventory(final FixedItemInv inv, final int slot, final InvOperation mc,
|
|
final ItemStack removedStack, final ItemStack newStack) {
|
|
this.duality.onChangeInventory(inv, slot, mc, removedStack, newStack);
|
|
}
|
|
|
|
@Override
|
|
public DualityInterface getInterfaceDuality() {
|
|
return this.duality;
|
|
}
|
|
|
|
@Override
|
|
public EnumSet<Direction> getTargets() {
|
|
return EnumSet.of(this.getSide().getFacing());
|
|
}
|
|
|
|
@Override
|
|
public BlockEntity getBlockEntity() {
|
|
return super.getHost().getTile();
|
|
}
|
|
|
|
@Override
|
|
public boolean pushPattern(final ICraftingPatternDetails patternDetails, final CraftingInventory table) {
|
|
return this.duality.pushPattern(patternDetails, table);
|
|
}
|
|
|
|
@Override
|
|
public boolean isBusy() {
|
|
return this.duality.isBusy();
|
|
}
|
|
|
|
@Override
|
|
public void provideCrafting(final ICraftingProviderHelper craftingTracker) {
|
|
this.duality.provideCrafting(craftingTracker);
|
|
}
|
|
|
|
@Override
|
|
public ImmutableSet<ICraftingLink> getRequestedJobs() {
|
|
return this.duality.getRequestedJobs();
|
|
}
|
|
|
|
@Override
|
|
public IAEItemStack injectCraftedItems(final ICraftingLink link, final IAEItemStack items, final Actionable mode) {
|
|
return this.duality.injectCraftedItems(link, items, mode);
|
|
}
|
|
|
|
@Override
|
|
public void jobStateChange(final ICraftingLink link) {
|
|
this.duality.jobStateChange(link);
|
|
}
|
|
|
|
@Override
|
|
public int getPriority() {
|
|
return this.duality.getPriority();
|
|
}
|
|
|
|
@Override
|
|
public void setPriority(final int newValue) {
|
|
this.duality.setPriority(newValue);
|
|
}
|
|
|
|
@Override
|
|
public IPartModel getStaticModels() {
|
|
if (this.isActive() && this.isPowered()) {
|
|
return MODELS_HAS_CHANNEL;
|
|
} else if (this.isPowered()) {
|
|
return MODELS_ON;
|
|
} else {
|
|
return MODELS_OFF;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void addAllAttributes(AttributeList<?> to) {
|
|
this.duality.addAllAttributes(to);
|
|
}
|
|
|
|
@Override
|
|
public ItemStack getItemStackRepresentation() {
|
|
return Api.instance().definitions().parts().iface().maybeStack(1).orElse(ItemStack.EMPTY);
|
|
}
|
|
|
|
@Override
|
|
public ScreenHandlerType<?> getContainerType() {
|
|
return InterfaceContainer.TYPE;
|
|
}
|
|
}
|