/* * This file ("TileEntityLaserRelay.java") is part of the Actually Additions mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://ellpeck.de/actaddlicense * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2015-2017 Ellpeck */ package de.ellpeck.actuallyadditions.mod.tile; import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI; 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.misc.apiimpl.ConnectionPair; import io.netty.util.internal.ConcurrentSet; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagList; import net.minecraft.util.math.AxisAlignedBB; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import java.util.Set; public abstract class TileEntityLaserRelay extends TileEntityBase{ public static final int MAX_DISTANCE = 15; public final LaserType type; private Network cachedNetwork; private int changeAmountAtCaching = -1; private Set tempConnectionStorage; public TileEntityLaserRelay(String name, LaserType type){ super(name); this.type = type; } @Override public void readSyncableNBT(NBTTagCompound compound, NBTType type){ super.readSyncableNBT(compound, type); if(type == NBTType.SYNC){ ActuallyAdditionsAPI.connectionHandler.removeRelayFromNetwork(this.pos, this.world); NBTTagList list = compound.getTagList("Connections", 10); if(!list.hasNoTags()){ for(int i = 0; i < list.tagCount(); i++){ ConnectionPair pair = new ConnectionPair(); pair.readFromNBT(list.getCompoundTagAt(i)); ActuallyAdditionsAPI.connectionHandler.addConnection(pair.getPositions()[0], pair.getPositions()[1], this.type, this.world, pair.doesSuppressRender()); } } } } @Override public void writeSyncableNBT(NBTTagCompound compound, NBTType type){ super.writeSyncableNBT(compound, type); if(type == NBTType.SYNC){ NBTTagList list = new NBTTagList(); ConcurrentSet connections = ActuallyAdditionsAPI.connectionHandler.getConnectionsFor(this.pos, this.world); if(connections != null && !connections.isEmpty()){ for(IConnectionPair pair : connections){ NBTTagCompound tag = new NBTTagCompound(); pair.writeToNBT(tag); list.appendTag(tag); } } compound.setTag("Connections", list); } } /*@Override public void updateEntity(){ super.updateEntity(); if(this.world.isRemote){ this.renderParticles(); } } @SideOnly(Side.CLIENT) public void renderParticles(){ if(this.world.rand.nextInt(8) == 0){ EntityPlayer player = Minecraft.getMinecraft().player; if(player != null){ PlayerData.PlayerSave data = PlayerData.getDataFromPlayer(player); WrenchMode mode = WrenchMode.values()[data.theCompound.getInteger("LaserWrenchMode")]; if(mode != WrenchMode.NO_PARTICLES){ ItemStack stack = player.getHeldItemMainhand(); if(mode == WrenchMode.ALWAYS_PARTICLES || (StackUtil.isValid(stack) && stack.getItem() instanceof ItemLaserWrench)){ Network network = ActuallyAdditionsAPI.connectionHandler.getNetworkFor(this.pos, this.world); if(network != null){ for(IConnectionPair aPair : network.connections){ if(!aPair.doesSuppressRender() && aPair.contains(this.pos) && this.pos.equals(aPair.getPositions()[0])){ AssetUtil.renderParticlesFromAToB(aPair.getPositions()[0].getX(), aPair.getPositions()[0].getY(), aPair.getPositions()[0].getZ(), aPair.getPositions()[1].getX(), aPair.getPositions()[1].getY(), aPair.getPositions()[1].getZ(), this.world.rand.nextInt(3)+1, 0.8F, this.type == LaserType.ITEM ? COLOR_ITEM : (this.type == LaserType.FLUID ? COLOR_FLUIDS : COLOR), 1F); } } } } } } } }*/ public Network getNetwork(){ if(this.cachedNetwork == null || this.cachedNetwork.changeAmount != this.changeAmountAtCaching){ this.cachedNetwork = ActuallyAdditionsAPI.connectionHandler.getNetworkFor(this.pos, this.world); if(this.cachedNetwork != null){ this.changeAmountAtCaching = this.cachedNetwork.changeAmount; } else{ this.changeAmountAtCaching = -1; } } return this.cachedNetwork; } @Override public void invalidate(){ super.invalidate(); //This is because Minecraft randomly invalidates tiles on world join and then validates them again //We need to compensate for this so that connections don't get broken randomly this.tempConnectionStorage = ActuallyAdditionsAPI.connectionHandler.getConnectionsFor(this.pos, this.world); ActuallyAdditionsAPI.connectionHandler.removeRelayFromNetwork(this.pos, this.world); } @Override public void validate(){ if(this.tempConnectionStorage != null){ for(IConnectionPair pair : this.tempConnectionStorage){ ActuallyAdditionsAPI.connectionHandler.addConnection(pair.getPositions()[0], pair.getPositions()[1], pair.getType(), this.world, pair.doesSuppressRender()); } this.tempConnectionStorage = null; } super.validate(); } @Override public AxisAlignedBB getRenderBoundingBox(){ return INFINITE_EXTENT_AABB; } @SideOnly(Side.CLIENT) public abstract String getExtraDisplayString(); @SideOnly(Side.CLIENT) public abstract String getCompassDisplayString(); public abstract void onCompassAction(EntityPlayer player); }