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

291 lines
12 KiB
Java
Raw Normal View History

2016-09-01 20:50:44 +02:00
/*
* This file ("TileEntityLaserRelayFluids.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
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2016-09-01 20:50:44 +02:00
*/
package de.ellpeck.actuallyadditions.mod.tile;
2016-09-12 16:13:39 +02:00
import de.ellpeck.actuallyadditions.api.laser.IConnectionPair;
2016-09-01 20:50:44 +02:00
import de.ellpeck.actuallyadditions.api.laser.LaserType;
import de.ellpeck.actuallyadditions.api.laser.Network;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
2021-11-13 18:16:25 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.ActuallyBlocks;
2016-12-05 15:09:37 +01:00
import de.ellpeck.actuallyadditions.mod.tile.TileEntityLaserRelayEnergy.Mode;
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
2024-03-02 21:23:08 +01:00
import net.minecraft.ChatFormatting;
import net.minecraft.client.resources.language.I18n;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.network.chat.Component;
2024-03-02 21:23:08 +01:00
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.level.block.state.BlockState;
2024-03-04 20:21:48 +01:00
import net.neoforged.api.distmarker.Dist;
import net.neoforged.api.distmarker.OnlyIn;
2024-03-04 21:38:02 +01:00
import net.neoforged.neoforge.capabilities.Capabilities;
2024-03-04 20:21:48 +01:00
import net.neoforged.neoforge.fluids.FluidStack;
import net.neoforged.neoforge.fluids.capability.IFluidHandler;
2021-02-26 22:15:48 +01:00
2021-02-27 16:33:00 +01:00
import javax.annotation.Nonnull;
2021-02-26 22:15:48 +01:00
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
2024-03-04 21:38:02 +01:00
import java.util.Optional;
2021-02-26 22:15:48 +01:00
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
2016-09-01 20:50:44 +02:00
2019-05-02 09:10:29 +02:00
public class TileEntityLaserRelayFluids extends TileEntityLaserRelay {
2016-09-01 20:50:44 +02:00
2024-03-02 21:23:08 +01:00
public final ConcurrentHashMap<Direction, BlockEntity> handlersAround = new ConcurrentHashMap<>();
2016-11-19 21:11:17 +01:00
private final IFluidHandler[] fluidHandlers = new IFluidHandler[6];
2016-12-18 17:50:31 +01:00
private Mode mode = Mode.BOTH;
2016-11-19 21:11:17 +01:00
2024-03-02 21:23:08 +01:00
public TileEntityLaserRelayFluids(BlockPos pos, BlockState state) {
super(ActuallyBlocks.LASER_RELAY_FLUIDS.getTileEntityType(), pos, state, LaserType.FLUID);
2016-11-19 21:11:17 +01:00
2019-05-02 09:10:29 +02:00
for (int i = 0; i < this.fluidHandlers.length; i++) {
Direction facing = Direction.values()[i];
2021-02-27 16:33:00 +01:00
// TODO: [port] this might just not work due to the new contract
2019-05-02 09:10:29 +02:00
this.fluidHandlers[i] = new IFluidHandler() {
2016-11-19 21:11:17 +01:00
@Override
2021-02-27 16:33:00 +01:00
public int getTanks() {
return 0;
}
@Nonnull
@Override
public FluidStack getFluidInTank(int tank) {
return FluidStack.EMPTY;
2016-11-19 21:11:17 +01:00
}
@Override
2021-02-27 16:33:00 +01:00
public int getTankCapacity(int tank) {
return 0;
2016-11-19 21:11:17 +01:00
}
@Override
2021-02-27 16:33:00 +01:00
public boolean isFluidValid(int tank, @Nonnull FluidStack stack) {
return false;
2016-11-19 21:11:17 +01:00
}
@Override
2021-02-27 16:33:00 +01:00
public int fill(FluidStack resource, FluidAction action) {
return TileEntityLaserRelayFluids.this.transmitFluid(facing, resource, action);
}
@Nonnull
@Override
public FluidStack drain(FluidStack resource, FluidAction action) {
return FluidStack.EMPTY;
}
@Nonnull
@Override
public FluidStack drain(int maxDrain, FluidAction action) {
return FluidStack.EMPTY;
2016-11-19 21:11:17 +01:00
}
};
}
2016-09-01 20:50:44 +02:00
}
2024-03-02 21:23:08 +01:00
public static <T extends BlockEntity> void clientTick(Level level, BlockPos pos, BlockState state, T t) {
if (t instanceof TileEntityLaserRelayFluids tile) {
tile.clientTick();
}
}
2024-03-02 21:23:08 +01:00
public static <T extends BlockEntity> void serverTick(Level level, BlockPos pos, BlockState state, T t) {
if (t instanceof TileEntityLaserRelayFluids tile) {
tile.serverTick();
}
}
@Override
protected void serverTick() {
super.serverTick();
if (this.mode == Mode.INPUT_ONLY) {
for (Direction side : this.handlersAround.keySet()) {
2024-03-04 21:38:02 +01:00
WorldUtil.doFluidInteraction(this.level, this.handlersAround.get(side).getBlockPos(), this.getBlockPos(), side.getOpposite(), Integer.MAX_VALUE);
}
}
}
@Override
2019-05-02 09:10:29 +02:00
public boolean shouldSaveDataOnChangeOrWorldStart() {
return true;
}
2016-09-01 20:50:44 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void saveDataOnChangeOrWorldStart() {
2024-03-02 21:23:08 +01:00
Map<Direction, BlockEntity> old = new HashMap<>(this.handlersAround);
boolean change = false;
2016-09-01 20:50:44 +02:00
this.handlersAround.clear();
for (Direction side : Direction.values()) {
BlockPos pos = this.getBlockPos().relative(side);
if (this.level.hasChunkAt(pos)) {
2024-03-02 21:23:08 +01:00
BlockEntity tile = this.level.getBlockEntity(pos);
2019-05-02 09:10:29 +02:00
if (tile != null && !(tile instanceof TileEntityLaserRelay)) {
2024-03-04 21:38:02 +01:00
if (this.level.getCapability(Capabilities.FluidHandler.BLOCK, tile.getBlockPos(), side.getOpposite()) != null) {
this.handlersAround.put(side, tile);
2024-03-02 21:23:08 +01:00
BlockEntity oldTile = old.get(side);
2019-05-02 09:10:29 +02:00
if (oldTile == null || !tile.equals(oldTile)) {
change = true;
}
}
2016-09-01 20:50:44 +02:00
}
}
}
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++;
}
}
2016-09-01 20:50:44 +02:00
}
2021-02-27 16:33:00 +01:00
// TODO: [port] super hacky, find better way of handling this.
2016-09-01 20:50:44 +02:00
@Override
2024-03-04 20:21:48 +01:00
public IFluidHandler getFluidHandler(Direction facing) {
2024-03-04 21:38:02 +01:00
return this.fluidHandlers[facing == null
2021-02-26 22:15:48 +01:00
? 0
2024-03-04 21:38:02 +01:00
: facing.ordinal()];
2016-09-01 20:50:44 +02:00
}
2021-02-27 16:33:00 +01:00
private int transmitFluid(Direction from, FluidStack stack, IFluidHandler.FluidAction action) {
2016-09-01 20:50:44 +02:00
int transmitted = 0;
2019-05-02 09:10:29 +02:00
if (stack != null && this.mode != Mode.OUTPUT_ONLY) {
Network network = this.getNetwork();
2019-05-02 09:10:29 +02:00
if (network != null) {
2021-02-27 16:33:00 +01:00
transmitted = this.transferFluidToReceiverInNeed(from, network, stack, action);
2016-09-01 20:50:44 +02:00
}
}
return transmitted;
}
2021-02-27 16:33:00 +01:00
private int transferFluidToReceiverInNeed(Direction from, Network network, FluidStack stack, IFluidHandler.FluidAction action) {
2016-09-01 20:50:44 +02:00
int transmitted = 0;
//Keeps track of all the Laser Relays and Energy Acceptors that have been checked already to make nothing run multiple times
2019-02-27 19:53:05 +01:00
Set<BlockPos> alreadyChecked = new HashSet<>();
2016-09-01 20:50:44 +02:00
2019-02-27 19:53:05 +01:00
Set<TileEntityLaserRelayFluids> relaysThatWork = new HashSet<>();
2016-09-01 20:50:44 +02:00
int totalReceiverAmount = 0;
2019-05-02 09:10:29 +02:00
for (IConnectionPair pair : network.connections) {
for (BlockPos relay : pair.getPositions()) {
if (relay != null && this.level.hasChunkAt(relay) && !alreadyChecked.contains(relay)) {
2016-09-01 20:50:44 +02:00
alreadyChecked.add(relay);
2024-03-02 21:23:08 +01:00
BlockEntity relayTile = this.level.getBlockEntity(relay);
2024-03-03 01:20:53 +01:00
if (relayTile instanceof TileEntityLaserRelayFluids theRelay) {
if (theRelay.mode != Mode.INPUT_ONLY) {
boolean workedOnce = false;
for (Direction facing : theRelay.handlersAround.keySet()) {
2019-05-02 09:10:29 +02:00
if (theRelay != this || facing != from) {
2024-03-02 21:23:08 +01:00
BlockEntity tile = theRelay.handlersAround.get(facing);
Direction opp = facing.getOpposite();
2021-02-27 16:33:00 +01:00
2024-03-04 21:38:02 +01:00
boolean received = Optional.ofNullable(this.level.getCapability(Capabilities.FluidHandler.BLOCK, tile.getBlockPos(), opp))
.map(cap -> cap.fill(stack, IFluidHandler.FluidAction.SIMULATE) > 0).orElse(false);
2021-02-27 16:33:00 +01:00
if (received) {
totalReceiverAmount++;
workedOnce = true;
}
}
2016-12-05 15:09:37 +01:00
}
2019-05-02 09:10:29 +02:00
if (workedOnce) {
2016-12-05 15:09:37 +01:00
relaysThatWork.add(theRelay);
}
2016-09-01 20:50:44 +02:00
}
}
}
}
}
2023-11-26 23:10:19 +01:00
//TODO dont send the entire tank at once, gg
2019-05-02 09:10:29 +02:00
if (totalReceiverAmount > 0 && !relaysThatWork.isEmpty()) {
2021-02-27 16:33:00 +01:00
int amountPer = stack.getAmount() / totalReceiverAmount <= 0
? stack.getAmount() / totalReceiverAmount
: stack.getAmount();
2016-09-01 20:50:44 +02:00
2019-05-02 09:10:29 +02:00
for (TileEntityLaserRelayFluids theRelay : relaysThatWork) {
2024-03-02 21:23:08 +01:00
for (Map.Entry<Direction, BlockEntity> receiver : theRelay.handlersAround.entrySet()) {
2019-05-02 09:10:29 +02:00
if (receiver != null) {
Direction side = receiver.getKey();
Direction opp = side.getOpposite();
2024-03-02 21:23:08 +01:00
BlockEntity tile = receiver.getValue();
if (!alreadyChecked.contains(tile.getBlockPos())) {
alreadyChecked.add(tile.getBlockPos());
2019-05-02 09:10:29 +02:00
if (theRelay != this || side != from) {
2024-03-04 21:38:02 +01:00
transmitted += Optional.ofNullable(this.level.getCapability(Capabilities.FluidHandler.BLOCK, tile.getBlockPos(), opp))
.map(cap -> {
2021-02-27 16:33:00 +01:00
int trans = 0;
FluidStack copy = stack.copy();
copy.setAmount(amountPer);
trans += cap.fill(copy, action);
return trans;
}).orElse(0);
2016-09-01 20:50:44 +02:00
//If everything that could be transmitted was transmitted
2021-02-27 16:33:00 +01:00
if (transmitted >= stack.getAmount()) {
2021-02-26 22:15:48 +01:00
return transmitted;
}
2016-09-01 20:50:44 +02:00
}
}
}
}
}
}
return transmitted;
}
2016-12-05 15:09:37 +01:00
@Override
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
public Component getExtraDisplayString() {
return Component.translatable("info." + ActuallyAdditions.MODID + ".laserRelay.fluid.extra").append(": ").append(Component.translatable(this.mode.name).withStyle(ChatFormatting.DARK_RED));
2016-12-05 15:09:37 +01:00
}
@Override
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
public Component getCompassDisplayString() {
return Component.translatable("info." + ActuallyAdditions.MODID + ".laserRelay.energy.display").withStyle(ChatFormatting.GREEN);
2016-12-05 15:09:37 +01:00
}
@Override
2024-03-02 21:23:08 +01:00
public void onCompassAction(Player player) {
2016-12-05 15:09:37 +01:00
this.mode = this.mode.getNext();
}
@Override
2024-03-02 21:23:08 +01:00
public void writeSyncableNBT(CompoundTag compound, NBTType type) {
2016-12-05 15:09:37 +01:00
super.writeSyncableNBT(compound, type);
2019-05-02 09:10:29 +02:00
if (type != NBTType.SAVE_BLOCK) {
2021-02-27 16:33:00 +01:00
compound.putString("Mode", this.mode.toString());
2016-12-05 15:09:37 +01:00
}
}
@Override
2024-03-02 21:23:08 +01:00
public void readSyncableNBT(CompoundTag compound, NBTType type) {
2016-12-05 15:09:37 +01:00
super.readSyncableNBT(compound, type);
2019-05-02 09:10:29 +02:00
if (type != NBTType.SAVE_BLOCK) {
2016-12-05 15:09:37 +01:00
String modeStrg = compound.getString("Mode");
2019-05-02 09:10:29 +02:00
if (modeStrg != null && !modeStrg.isEmpty()) {
2016-12-05 15:09:37 +01:00
this.mode = Mode.valueOf(modeStrg);
}
}
}
2016-09-01 20:50:44 +02:00
}