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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 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
|
|
|
|
2016-07-30 17:07:32 +02:00
|
|
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
2016-09-12 16:13:39 +02:00
|
|
|
import de.ellpeck.actuallyadditions.api.laser.IConnectionPair;
|
2016-09-01 18:02:03 +02:00
|
|
|
import de.ellpeck.actuallyadditions.api.laser.LaserType;
|
2017-01-18 14:26:56 +01:00
|
|
|
import de.ellpeck.actuallyadditions.api.laser.Network;
|
2021-03-01 21:23:52 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.ActuallyItems;
|
2016-12-04 15:03:01 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.misc.apiimpl.ConnectionPair;
|
2017-02-13 19:07:53 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2015-10-29 17:36:30 +01:00
|
|
|
import io.netty.util.internal.ConcurrentSet;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2017-02-13 19:07:53 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.nbt.CompoundNBT;
|
|
|
|
import net.minecraft.nbt.ListNBT;
|
2021-02-27 16:33:00 +01:00
|
|
|
import net.minecraft.tileentity.TileEntityType;
|
2021-02-27 13:24:45 +01:00
|
|
|
import net.minecraft.util.Direction;
|
2016-11-08 08:53:30 +01:00
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
2021-02-27 16:33:00 +01:00
|
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
|
|
import net.minecraftforge.common.util.LazyOptional;
|
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
|
|
|
|
2015-11-28 19:02:01 +01: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
|
|
|
|
2016-09-01 18:02:03 +02:00
|
|
|
public final LaserType type;
|
2015-11-28 19:02:01 +01:00
|
|
|
|
2017-01-18 14:26:56 +01:00
|
|
|
private Network cachedNetwork;
|
|
|
|
private int changeAmountAtCaching = -1;
|
2017-02-13 19:07:53 +01:00
|
|
|
private int lastRange;
|
2017-01-18 14:26:56 +01:00
|
|
|
|
2021-02-27 16:33:00 +01:00
|
|
|
public TileEntityLaserRelay(TileEntityType<?> tileType, LaserType type) {
|
|
|
|
super(tileType, 1);
|
2016-09-01 18:02:03 +02:00
|
|
|
this.type = type;
|
2016-05-06 23:23:29 +02:00
|
|
|
}
|
|
|
|
|
2015-10-23 16:54:33 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public void readSyncableNBT(CompoundNBT compound, NBTType type) {
|
2016-09-01 17:08:34 +02:00
|
|
|
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);
|
2016-09-01 17:08:34 +02:00
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
ListNBT list = compound.getList("Connections", 10);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!list.isEmpty()) {
|
2021-02-26 22:15:48 +01:00
|
|
|
for (int i = 0; i < list.size(); i++) {
|
2016-09-12 16:13:39 +02:00
|
|
|
ConnectionPair pair = new ConnectionPair();
|
2021-02-26 22:15:48 +01:00
|
|
|
pair.readFromNBT(list.getCompound(i));
|
2016-11-26 21:32:27 +01:00
|
|
|
ActuallyAdditionsAPI.connectionHandler.addConnection(pair.getPositions()[0], pair.getPositions()[1], this.type, this.world, pair.doesSuppressRender());
|
2016-09-01 17:08:34 +02:00
|
|
|
}
|
2015-10-26 22:28:49 +01:00
|
|
|
}
|
|
|
|
}
|
2015-10-23 16:54:33 +02:00
|
|
|
}
|
|
|
|
|
2015-10-18 19:21:32 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public void writeSyncableNBT(CompoundNBT compound, NBTType type) {
|
2016-09-01 17:08:34 +02:00
|
|
|
super.writeSyncableNBT(compound, type);
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (type == NBTType.SYNC) {
|
2021-02-26 22:15:48 +01:00
|
|
|
ListNBT list = new ListNBT();
|
2016-09-01 17:08:34 +02:00
|
|
|
|
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) {
|
2021-02-26 22:15:48 +01:00
|
|
|
CompoundNBT tag = new CompoundNBT();
|
2016-09-12 16:13:39 +02:00
|
|
|
pair.writeToNBT(tag);
|
2021-02-27 16:33:00 +01:00
|
|
|
list.add(tag);
|
2016-09-01 17:08:34 +02:00
|
|
|
}
|
2015-10-21 00:22:50 +02:00
|
|
|
}
|
2016-06-04 00:26:33 +02:00
|
|
|
|
2021-02-27 16:33:00 +01:00
|
|
|
compound.put("Connections", list);
|
2016-09-01 17:08:34 +02:00
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-08 08:53:30 +01:00
|
|
|
/*@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
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2016-02-01 17:49:55 +01:00
|
|
|
public void renderParticles(){
|
2016-11-26 21:32:27 +01:00
|
|
|
if(this.world.rand.nextInt(8) == 0){
|
2021-02-26 22:15:48 +01:00
|
|
|
PlayerEntity player = Minecraft.getInstance().player;
|
2016-06-08 21:09:41 +02:00
|
|
|
if(player != null){
|
2016-06-15 17:42:55 +02:00
|
|
|
PlayerData.PlayerSave data = PlayerData.getDataFromPlayer(player);
|
|
|
|
WrenchMode mode = WrenchMode.values()[data.theCompound.getInteger("LaserWrenchMode")];
|
|
|
|
if(mode != WrenchMode.NO_PARTICLES){
|
|
|
|
ItemStack stack = player.getHeldItemMainhand();
|
2016-11-16 20:31:16 +01:00
|
|
|
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);
|
2016-06-15 17:42:55 +02:00
|
|
|
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-06-15 17:42:55 +02:00
|
|
|
}
|
2016-06-08 21:09:41 +02:00
|
|
|
}
|
|
|
|
}
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
}
|
2015-10-31 14:42:51 +01:00
|
|
|
}
|
2015-10-21 00:22:50 +02:00
|
|
|
}
|
2016-11-08 08:53:30 +01: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) {
|
2017-01-18 14:26:56 +01:00
|
|
|
this.cachedNetwork = ActuallyAdditionsAPI.connectionHandler.getNetworkFor(this.pos, this.world);
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (this.cachedNetwork != null) {
|
2017-01-18 14:26:56 +01:00
|
|
|
this.changeAmountAtCaching = this.cachedNetwork.changeAmount;
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2017-01-18 14:26:56 +01:00
|
|
|
this.changeAmountAtCaching = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.cachedNetwork;
|
|
|
|
}
|
|
|
|
|
2016-11-08 08:53:30 +01:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2019-05-02 09:10:29 +02:00
|
|
|
public AxisAlignedBB getRenderBoundingBox() {
|
2016-11-08 08:53:30 +01:00
|
|
|
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
|
2021-02-27 16:33:00 +01:00
|
|
|
public LazyOptional<IItemHandler> getItemHandler(Direction facing) {
|
|
|
|
return LazyOptional.empty();
|
2017-02-13 17:36:55 +01:00
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public int getMaxRange() {
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack upgrade = this.inv.getStackInSlot(0);
|
2021-05-02 18:10:21 +02:00
|
|
|
if (StackUtil.isValid(upgrade) && upgrade.getItem() == ActuallyItems.LASER_UPGRADE_RANGE.get()) {
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2016-12-05 15:09:37 +01:00
|
|
|
public abstract String getExtraDisplayString();
|
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2016-12-05 15:09:37 +01:00
|
|
|
public abstract String getCompassDisplayString();
|
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
public abstract void onCompassAction(PlayerEntity player);
|
2015-10-18 19:21:32 +02:00
|
|
|
}
|