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

174 lines
6.6 KiB
Java
Raw Normal View History

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-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;
2017-02-13 19:07:53 +01:00
import de.ellpeck.actuallyadditions.mod.items.InitItems;
import de.ellpeck.actuallyadditions.mod.misc.apiimpl.ConnectionPair;
2017-02-13 19:07:53 +01:00
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
import io.netty.util.internal.ConcurrentSet;
2016-12-05 15:09:37 +01:00
import net.minecraft.entity.player.EntityPlayer;
2017-02-13 19:07:53 +01:00
import net.minecraft.item.ItemStack;
2015-10-18 19:21:32 +02:00
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
2017-02-13 17:36:55 +01:00
import net.minecraft.util.EnumFacing;
import net.minecraft.util.math.AxisAlignedBB;
2016-12-05 15:09:37 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2017-02-13 17:36:55 +01:00
import net.minecraftforge.items.IItemHandler;
2016-05-08 21:09:58 +02:00
2019-05-02 09:10:29 +02:00
public abstract class TileEntityLaserRelay extends TileEntityInventoryBase {
2015-10-18 19:21:32 +02:00
public static final int MAX_DISTANCE = 15;
2017-02-14 20:48:01 +01:00
public static final int MAX_DISTANCE_RANGED = 35;
2016-05-08 21:09:58 +02:00
public final LaserType type;
private Network cachedNetwork;
private int changeAmountAtCaching = -1;
2017-02-13 19:07:53 +01:00
private int lastRange;
2019-05-02 09:10:29 +02:00
public TileEntityLaserRelay(String name, LaserType type) {
2017-02-13 17:36:55 +01:00
super(1, name);
this.type = type;
}
2015-10-23 16:54:33 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void readSyncableNBT(NBTTagCompound compound, NBTType type) {
super.readSyncableNBT(compound, type);
2019-05-02 09:10:29 +02:00
if (type == NBTType.SYNC) {
2016-11-26 21:32:27 +01:00
ActuallyAdditionsAPI.connectionHandler.removeRelayFromNetwork(this.pos, this.world);
NBTTagList list = compound.getTagList("Connections", 10);
2019-05-02 09:10:29 +02:00
if (!list.isEmpty()) {
for (int i = 0; i < list.tagCount(); i++) {
2016-09-12 16:13:39 +02:00
ConnectionPair pair = new ConnectionPair();
pair.readFromNBT(list.getCompoundTagAt(i));
2016-11-26 21:32:27 +01:00
ActuallyAdditionsAPI.connectionHandler.addConnection(pair.getPositions()[0], pair.getPositions()[1], this.type, this.world, pair.doesSuppressRender());
}
}
}
2015-10-23 16:54:33 +02:00
}
2015-10-18 19:21:32 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void writeSyncableNBT(NBTTagCompound compound, NBTType type) {
super.writeSyncableNBT(compound, type);
2019-05-02 09:10:29 +02:00
if (type == NBTType.SYNC) {
NBTTagList list = new NBTTagList();
2016-11-26 21:32:27 +01:00
ConcurrentSet<IConnectionPair> connections = ActuallyAdditionsAPI.connectionHandler.getConnectionsFor(this.pos, this.world);
2019-05-02 09:10:29 +02:00
if (connections != null && !connections.isEmpty()) {
for (IConnectionPair pair : connections) {
2016-09-12 16:13:39 +02:00
NBTTagCompound tag = new NBTTagCompound();
pair.writeToNBT(tag);
list.appendTag(tag);
}
2015-10-21 00:22:50 +02:00
}
compound.setTag("Connections", list);
}
2015-10-18 19:21:32 +02:00
}
2017-02-13 19:07:53 +01:00
@Override
2019-05-02 09:10:29 +02:00
public void updateEntity() {
2017-02-13 19:07:53 +01:00
super.updateEntity();
int range = this.getMaxRange();
2019-05-02 09:10:29 +02:00
if (this.lastRange != range) {
2017-02-13 19:07:53 +01:00
ConcurrentSet<IConnectionPair> connections = ActuallyAdditionsAPI.connectionHandler.getConnectionsFor(this.pos, this.world);
2019-05-02 09:10:29 +02:00
if (connections != null && !connections.isEmpty()) {
for (IConnectionPair pair : connections) {
int distanceSq = (int) pair.getPositions()[0].distanceSq(pair.getPositions()[1]);
if (distanceSq > range * range) {
2017-02-13 19:07:53 +01:00
ActuallyAdditionsAPI.connectionHandler.removeConnection(this.world, pair.getPositions()[0], pair.getPositions()[1]);
}
}
}
this.lastRange = range;
}
}
/*@Override
2016-02-01 17:49:55 +01:00
public void updateEntity(){
super.updateEntity();
2016-11-26 21:32:27 +01:00
if(this.world.isRemote){
2016-02-01 17:49:55 +01:00
this.renderParticles();
}
}
2019-05-02 10:43:27 +02:00
2016-02-01 17:49:55 +01:00
@SideOnly(Side.CLIENT)
public void renderParticles(){
2016-11-26 21:32:27 +01:00
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)){
2016-11-26 21:32:27 +01:00
Network network = ActuallyAdditionsAPI.connectionHandler.getNetworkFor(this.pos, this.world);
if(network != null){
2016-09-12 16:13:39 +02:00
for(IConnectionPair aPair : network.connections){
if(!aPair.doesSuppressRender() && aPair.contains(this.pos) && this.pos.equals(aPair.getPositions()[0])){
2016-11-26 21:32:27 +01:00
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);
}
}
}
2016-02-01 17:49:55 +01:00
}
}
}
2015-10-21 00:22:50 +02:00
}
}*/
2015-10-18 19:21:32 +02:00
2019-05-02 09:10:29 +02:00
public Network getNetwork() {
if (this.cachedNetwork == null || this.cachedNetwork.changeAmount != this.changeAmountAtCaching) {
this.cachedNetwork = ActuallyAdditionsAPI.connectionHandler.getNetworkFor(this.pos, this.world);
2019-05-02 09:10:29 +02:00
if (this.cachedNetwork != null) {
this.changeAmountAtCaching = this.cachedNetwork.changeAmount;
2019-05-02 09:10:29 +02:00
} else {
this.changeAmountAtCaching = -1;
}
}
return this.cachedNetwork;
}
@Override
2017-02-13 17:36:55 +01:00
@SideOnly(Side.CLIENT)
2019-05-02 09:10:29 +02:00
public AxisAlignedBB getRenderBoundingBox() {
return INFINITE_EXTENT_AABB;
}
2016-12-05 15:09:37 +01:00
2017-02-13 17:36:55 +01:00
@Override
2019-05-02 09:10:29 +02:00
public boolean shouldSyncSlots() {
2017-02-13 17:36:55 +01:00
return true;
}
@Override
2019-05-02 09:10:29 +02:00
public IItemHandler getItemHandler(EnumFacing facing) {
2017-02-13 17:36:55 +01:00
return null;
}
2019-05-02 09:10:29 +02:00
public int getMaxRange() {
ItemStack upgrade = this.inv.getStackInSlot(0);
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(upgrade) && upgrade.getItem() == InitItems.itemLaserUpgradeRange) {
2017-02-14 20:48:01 +01:00
return MAX_DISTANCE_RANGED;
2019-05-02 09:10:29 +02:00
} else {
2017-02-13 19:07:53 +01:00
return MAX_DISTANCE;
}
}
2016-12-05 15:09:37 +01:00
@SideOnly(Side.CLIENT)
public abstract String getExtraDisplayString();
@SideOnly(Side.CLIENT)
public abstract String getCompassDisplayString();
public abstract void onCompassAction(EntityPlayer player);
2015-10-18 19:21:32 +02:00
}