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

147 lines
5.9 KiB
Java
Raw Normal View History

2015-10-18 19:21:32 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityLaserRelay.java") is part of the Actually Additions mod for Minecraft.
2015-10-18 19:21:32 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-10-18 19:21:32 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-10-18 19:21:32 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
2015-10-18 19:21:32 +02:00
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
2016-08-02 13:08:22 +02:00
import de.ellpeck.actuallyadditions.api.laser.ConnectionPair;
import de.ellpeck.actuallyadditions.api.laser.Network;
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
import de.ellpeck.actuallyadditions.mod.data.PlayerData;
import de.ellpeck.actuallyadditions.mod.items.ItemLaserWrench;
import de.ellpeck.actuallyadditions.mod.items.ItemLaserWrench.WrenchMode;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
2016-06-01 00:39:35 +02:00
import de.ellpeck.actuallyadditions.mod.util.Util;
import io.netty.util.internal.ConcurrentSet;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
2015-10-18 19:21:32 +02:00
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2016-05-08 21:09:58 +02:00
import java.util.Set;
2016-05-08 21:09:58 +02:00
public abstract class TileEntityLaserRelay extends TileEntityBase{
2015-10-18 19:21:32 +02:00
public static final int MAX_DISTANCE = 15;
private static final float[] COLOR = new float[]{1F, 0F, 0F};
2016-05-08 21:09:58 +02:00
private static final float[] COLOR_ITEM = new float[]{139F/255F, 94F/255F, 1F};
2016-05-19 20:05:12 +02:00
public final boolean isItem;
private Set<ConnectionPair> tempConnectionStorage;
private boolean hasCheckedHandlersAround;
2016-05-08 21:09:58 +02:00
public TileEntityLaserRelay(String name, boolean isItem){
super(name);
this.isItem = isItem;
}
2015-10-23 16:54:33 +02:00
@Override
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
super.readSyncableNBT(compound, type);
if(type == NBTType.SYNC){
ActuallyAdditionsAPI.connectionHandler.removeRelayFromNetwork(this.pos, this.worldObj);
NBTTagList list = compound.getTagList("Connections", 10);
if(!list.hasNoTags()){
for(int i = 0; i < list.tagCount(); i++){
ConnectionPair pair = ConnectionPair.readFromNBT(list.getCompoundTagAt(i));
ActuallyAdditionsAPI.connectionHandler.addConnection(pair.positions[0], pair.positions[1], this.worldObj, pair.suppressConnectionRender);
}
}
}
2015-10-23 16:54:33 +02:00
}
2015-10-18 19:21:32 +02:00
@Override
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
super.writeSyncableNBT(compound, type);
if(type == NBTType.SYNC){
NBTTagList list = new NBTTagList();
ConcurrentSet<ConnectionPair> connections = ActuallyAdditionsAPI.connectionHandler.getConnectionsFor(this.pos, this.worldObj);
if(connections != null && !connections.isEmpty()){
for(ConnectionPair pair : connections){
list.appendTag(pair.writeToNBT());
}
2015-10-21 00:22:50 +02:00
}
compound.setTag("Connections", list);
}
2015-10-18 19:21:32 +02:00
}
@Override
2016-02-01 17:49:55 +01:00
public void updateEntity(){
super.updateEntity();
if(this.worldObj.isRemote){
this.renderParticles();
}
else if(!this.hasCheckedHandlersAround){
this.saveAllHandlersAround();
this.hasCheckedHandlersAround = true;
}
}
public void saveAllHandlersAround(){
2016-02-01 17:49:55 +01:00
}
2015-10-21 00:22:50 +02:00
2016-02-01 17:49:55 +01:00
@SideOnly(Side.CLIENT)
public void renderParticles(){
if(Util.RANDOM.nextInt(ConfigBoolValues.LESS_PARTICLES.isEnabled() ? 16 : 8) == 0){
EntityPlayer player = Minecraft.getMinecraft().thePlayer;
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 || (stack != null && stack.getItem() instanceof ItemLaserWrench)){
Network network = ActuallyAdditionsAPI.connectionHandler.getNetworkFor(this.pos, this.worldObj);
if(network != null){
for(ConnectionPair aPair : network.connections){
if(!aPair.suppressConnectionRender && aPair.contains(this.pos) && this.pos.equals(aPair.positions[0])){
AssetUtil.renderParticlesFromAToB(aPair.positions[0].getX(), aPair.positions[0].getY(), aPair.positions[0].getZ(), aPair.positions[1].getX(), aPair.positions[1].getY(), aPair.positions[1].getZ(), ConfigBoolValues.LESS_PARTICLES.isEnabled() ? 1 : Util.RANDOM.nextInt(3)+1, 0.8F, this.isItem ? COLOR_ITEM : COLOR, 1F);
}
}
}
2016-02-01 17:49:55 +01:00
}
}
}
2015-10-21 00:22:50 +02:00
}
2015-10-18 19:21:32 +02:00
}
2015-12-01 19:48:09 +01:00
@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.worldObj);
ActuallyAdditionsAPI.connectionHandler.removeRelayFromNetwork(this.pos, this.worldObj);
2015-12-01 19:48:09 +01:00
}
@Override
public void validate(){
if(this.tempConnectionStorage != null){
for(ConnectionPair pair : this.tempConnectionStorage){
ActuallyAdditionsAPI.connectionHandler.addConnection(pair.positions[0], pair.positions[1], this.worldObj, pair.suppressConnectionRender);
}
this.tempConnectionStorage = null;
}
super.validate();
}
2015-10-18 19:21:32 +02:00
}