ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityLaserRelayItem.java

168 lines
6.6 KiB
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.mod.tile;
2019-05-02 09:10:29 +02:00
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import org.cyclops.commoncapabilities.capability.itemhandler.SlotlessItemHandlerConfig;
2016-09-12 16:13:39 +02:00
import de.ellpeck.actuallyadditions.api.laser.IConnectionPair;
import de.ellpeck.actuallyadditions.api.laser.LaserType;
import de.ellpeck.actuallyadditions.api.laser.Network;
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityItemViewer.GenericItemHandlerInfo;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
import de.ellpeck.actuallyadditions.mod.util.compat.SlotlessableItemHandlerWrapper;
2016-12-05 15:09:37 +01:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
2016-11-16 18:51:23 +01:00
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.math.BlockPos;
2016-12-05 15:09:37 +01:00
import net.minecraft.util.text.TextFormatting;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import net.minecraftforge.items.CapabilityItemHandler;
import net.minecraftforge.items.IItemHandler;
2019-05-02 09:10:29 +02:00
public class TileEntityLaserRelayItem extends TileEntityLaserRelay {
2019-02-27 19:53:05 +01:00
public final Map<BlockPos, SlotlessableItemHandlerWrapper> handlersAround = new ConcurrentHashMap<>();
public int priority;
2019-05-02 09:10:29 +02:00
public TileEntityLaserRelayItem(String name) {
super(name, LaserType.ITEM);
}
2019-05-02 09:10:29 +02:00
public TileEntityLaserRelayItem() {
this("laserRelayItem");
}
2019-05-02 09:10:29 +02:00
public int getPriority() {
2016-11-16 18:51:23 +01:00
return this.priority;
}
2019-05-02 09:10:29 +02:00
public boolean isWhitelisted(ItemStack stack, boolean output) {
return true;
}
@Override
2019-05-02 09:10:29 +02:00
public boolean shouldSaveDataOnChangeOrWorldStart() {
return true;
}
@Override
2019-05-02 09:10:29 +02:00
public void saveDataOnChangeOrWorldStart() {
2019-02-27 19:53:05 +01:00
Map<BlockPos, SlotlessableItemHandlerWrapper> old = new HashMap<>(this.handlersAround);
boolean change = false;
this.handlersAround.clear();
2019-05-02 09:10:29 +02:00
for (int i = 0; i <= 5; i++) {
EnumFacing side = WorldUtil.getDirectionBySidesInOrder(i);
2016-07-04 20:15:41 +02:00
BlockPos pos = this.getPos().offset(side);
2019-05-02 09:10:29 +02:00
if (this.world.isBlockLoaded(pos)) {
TileEntity tile = this.world.getTileEntity(pos);
2019-05-02 09:10:29 +02:00
if (tile != null && !(tile instanceof TileEntityItemViewer) && !(tile instanceof TileEntityLaserRelay)) {
IItemHandler itemHandler = null;
2019-05-02 09:10:29 +02:00
if (tile.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, side.getOpposite())) {
itemHandler = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, side.getOpposite());
}
Object slotlessHandler = null;
2019-05-02 09:10:29 +02:00
if (ActuallyAdditions.commonCapsLoaded) {
if (tile.hasCapability(SlotlessItemHandlerConfig.CAPABILITY, side.getOpposite())) {
slotlessHandler = tile.getCapability(SlotlessItemHandlerConfig.CAPABILITY, side.getOpposite());
}
}
2019-05-02 09:10:29 +02:00
if (itemHandler != null || slotlessHandler != null) {
SlotlessableItemHandlerWrapper handler = new SlotlessableItemHandlerWrapper(itemHandler, slotlessHandler);
this.handlersAround.put(pos, handler);
SlotlessableItemHandlerWrapper oldHandler = old.get(pos);
2019-05-02 09:10:29 +02:00
if (oldHandler == null || !handler.equals(oldHandler)) {
change = true;
}
}
}
}
}
2019-05-02 09:10:29 +02:00
if (change || old.size() != this.handlersAround.size()) {
Network network = this.getNetwork();
2019-05-02 09:10:29 +02:00
if (network != null) {
network.changeAmount++;
}
}
}
2019-05-02 09:10:29 +02:00
public void getItemHandlersInNetwork(Network network, List<GenericItemHandlerInfo> storeList) {
//Keeps track of all the Laser Relays and Item Handlers that have been checked already to make nothing run multiple times
2019-02-27 19:53:05 +01:00
Set<BlockPos> alreadyChecked = new HashSet<>();
2019-05-02 09:10:29 +02:00
for (IConnectionPair pair : network.connections) {
for (BlockPos relay : pair.getPositions()) {
if (relay != null && this.world.isBlockLoaded(relay) && !alreadyChecked.contains(relay)) {
alreadyChecked.add(relay);
2016-11-26 21:32:27 +01:00
TileEntity aRelayTile = this.world.getTileEntity(relay);
2019-05-02 09:10:29 +02:00
if (aRelayTile instanceof TileEntityLaserRelayItem) {
TileEntityLaserRelayItem relayTile = (TileEntityLaserRelayItem) aRelayTile;
GenericItemHandlerInfo info = new GenericItemHandlerInfo(relayTile);
2019-05-02 09:10:29 +02:00
for (Map.Entry<BlockPos, SlotlessableItemHandlerWrapper> handler : relayTile.handlersAround.entrySet()) {
if (!alreadyChecked.contains(handler.getKey())) {
alreadyChecked.add(handler.getKey());
info.handlers.add(handler.getValue());
}
}
storeList.add(info);
}
}
}
}
}
2016-11-16 18:51:23 +01:00
@Override
2019-05-02 09:10:29 +02:00
public void writeSyncableNBT(NBTTagCompound compound, NBTType type) {
2016-11-16 18:51:23 +01:00
super.writeSyncableNBT(compound, type);
2019-05-02 09:10:29 +02:00
if (type != NBTType.SAVE_BLOCK) {
2016-11-16 18:51:23 +01:00
compound.setInteger("Priority", this.priority);
}
}
2016-12-05 15:09:37 +01:00
@Override
@SideOnly(Side.CLIENT)
2019-05-02 09:10:29 +02:00
public String getExtraDisplayString() {
return StringUtil.localize("info." + ActuallyAdditions.MODID + ".laserRelay.item.extra") + ": " + TextFormatting.DARK_RED + this.getPriority() + TextFormatting.RESET;
2016-12-05 15:09:37 +01:00
}
@Override
@SideOnly(Side.CLIENT)
2019-05-02 09:10:29 +02:00
public String getCompassDisplayString() {
return TextFormatting.GREEN + StringUtil.localize("info." + ActuallyAdditions.MODID + ".laserRelay.item.display.1") + "\n" + StringUtil.localize("info." + ActuallyAdditions.MODID + ".laserRelay.item.display.2");
2016-12-05 15:09:37 +01:00
}
@Override
2019-05-02 09:10:29 +02:00
public void onCompassAction(EntityPlayer player) {
if (player.isSneaking()) {
2016-12-05 15:09:37 +01:00
this.priority--;
2019-05-02 09:10:29 +02:00
} else {
2016-12-05 15:09:37 +01:00
this.priority++;
}
}
2016-11-16 18:51:23 +01:00
@Override
2019-05-02 09:10:29 +02:00
public void readSyncableNBT(NBTTagCompound compound, NBTType type) {
2016-11-16 18:51:23 +01:00
super.readSyncableNBT(compound, type);
2019-05-02 09:10:29 +02:00
if (type != NBTType.SAVE_BLOCK) {
2016-11-16 18:51:23 +01:00
this.priority = compound.getInteger("Priority");
}
}
}