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

321 lines
12 KiB
Java
Raw Normal View History

2016-05-16 22:52:27 +02:00
/*
* This file ("TileEntityLaserRelayEnergy.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-05-16 22:52:27 +02:00
*/
package de.ellpeck.actuallyadditions.mod.tile;
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;
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;
2023-01-19 16:27:56 +01:00
import de.ellpeck.actuallyadditions.mod.config.CommonConfig;
import it.unimi.dsi.fastutil.objects.ObjectOpenHashSet;
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.util.Mth;
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.entity.BlockEntityType;
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.energy.IEnergyStorage;
2021-02-26 22:15:48 +01:00
import java.util.HashMap;
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-11-26 21:32:27 +01:00
2019-05-02 09:10:29 +02:00
public class TileEntityLaserRelayEnergy extends TileEntityLaserRelay {
2016-07-14 16:44:01 +02:00
public static final int CAP = 1000;
2024-03-02 21:23:08 +01:00
public final ConcurrentHashMap<Direction, BlockEntity> receiversAround = new ConcurrentHashMap<>();
2016-11-26 20:43:50 +01:00
private final IEnergyStorage[] energyStorages = new IEnergyStorage[6];
2016-12-18 17:50:31 +01:00
private Mode mode = Mode.BOTH;
2016-11-26 20:43:50 +01:00
2024-03-02 21:23:08 +01:00
public TileEntityLaserRelayEnergy(BlockEntityType<?> type, BlockPos pos, BlockState state) {
super(type, pos, state, LaserType.ENERGY);
2016-07-14 16:44:01 +02:00
2019-05-02 09:10:29 +02:00
for (int i = 0; i < this.energyStorages.length; i++) {
Direction facing = Direction.values()[i];
2019-05-02 09:10:29 +02:00
this.energyStorages[i] = new IEnergyStorage() {
2016-11-26 20:43:50 +01:00
@Override
2019-05-02 09:10:29 +02:00
public int receiveEnergy(int amount, boolean simulate) {
2016-11-26 20:43:50 +01:00
return TileEntityLaserRelayEnergy.this.transmitEnergy(facing, amount, simulate);
}
2016-11-26 20:43:50 +01:00
@Override
2019-05-02 09:10:29 +02:00
public int extractEnergy(int maxExtract, boolean simulate) {
2016-11-26 20:43:50 +01:00
return 0;
}
@Override
2019-05-02 09:10:29 +02:00
public int getEnergyStored() {
2016-11-26 20:43:50 +01:00
return 0;
}
@Override
2019-05-02 09:10:29 +02:00
public int getMaxEnergyStored() {
2016-11-26 20:43:50 +01:00
return TileEntityLaserRelayEnergy.this.getEnergyCap();
}
@Override
2019-05-02 09:10:29 +02:00
public boolean canExtract() {
2016-11-26 20:43:50 +01:00
return false;
}
@Override
2019-05-02 09:10:29 +02:00
public boolean canReceive() {
2016-11-26 20:43:50 +01:00
return true;
}
};
}
}
2024-03-02 21:23:08 +01:00
public TileEntityLaserRelayEnergy(BlockPos pos, BlockState state) {
this(ActuallyBlocks.LASER_RELAY.getTileEntityType(), pos, state);
}
public static <T extends BlockEntity> void clientTick(Level level, BlockPos pos, BlockState state, T t) {
if (t instanceof TileEntityLaserRelayEnergy tile) {
tile.clientTick();
}
}
public static <T extends BlockEntity> void serverTick(Level level, BlockPos pos, BlockState state, T t) {
if (t instanceof TileEntityLaserRelayEnergy tile) {
tile.serverTick();
}
}
private int transmitEnergy(Direction from, int maxTransmit, boolean simulate) {
int transmitted = 0;
2019-05-02 09:10:29 +02:00
if (maxTransmit > 0 && this.mode != Mode.OUTPUT_ONLY) {
Network network = this.getNetwork();
2019-05-02 09:10:29 +02:00
if (network != null) {
2016-07-14 16:44:01 +02:00
transmitted = this.transferEnergyToReceiverInNeed(from, network, maxTransmit, simulate);
}
}
return transmitted;
}
2021-02-27 16:33:00 +01:00
// TODO: [port] this is super hacky, review and fix up
@Override
2024-03-04 20:21:48 +01:00
public IEnergyStorage getEnergyStorage(Direction facing) {
2024-03-04 21:38:02 +01:00
return this.energyStorages[facing == null
? 0
: facing.ordinal()];
}
@Override
2019-05-02 09:10:29 +02:00
public boolean shouldSaveDataOnChangeOrWorldStart() {
return true;
}
@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.receiversAround);
boolean change = false;
this.receiversAround.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.EnergyStorage.BLOCK, tile.getBlockPos(), side.getOpposite()) != null) {
this.receiversAround.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;
}
}
}
}
}
2019-05-02 09:10:29 +02:00
if (change || old.size() != this.receiversAround.size()) {
Network network = this.getNetwork();
2019-05-02 09:10:29 +02:00
if (network != null) {
network.changeAmount++;
}
}
}
private int transferEnergyToReceiverInNeed(Direction from, Network network, int maxTransfer, boolean simulate) {
int transmitted = 0;
//Keeps track of all the Laser Relays and Energy Acceptors that have been checked already to make nothing run multiple times
Set<BlockPos> alreadyChecked = new ObjectOpenHashSet<>();
Set<TileEntityLaserRelayEnergy> relaysThatWork = new ObjectOpenHashSet<>();
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)) {
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 TileEntityLaserRelayEnergy theRelay) {
if (theRelay.mode != Mode.INPUT_ONLY) {
boolean workedOnce = false;
for (Direction facing : theRelay.receiversAround.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.receiversAround.get(facing);
Direction opp = facing.getOpposite();
2019-05-02 09:10:29 +02:00
if (tile != null) {
2024-03-04 21:38:02 +01:00
Boolean received = Optional.ofNullable(this.level.getCapability(Capabilities.EnergyStorage.BLOCK, tile.getBlockPos(), opp)).map(cap -> cap.receiveEnergy(maxTransfer, true) > 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);
}
}
}
}
}
}
2019-05-02 09:10:29 +02:00
if (totalReceiverAmount > 0 && !relaysThatWork.isEmpty()) {
2021-02-27 16:33:00 +01:00
int amountPer = maxTransfer / totalReceiverAmount <= 0
2023-01-19 16:27:56 +01:00
? maxTransfer
: maxTransfer / totalReceiverAmount;
2019-05-02 09:10:29 +02:00
for (TileEntityLaserRelayEnergy theRelay : relaysThatWork) {
double highestLoss = Math.max(theRelay.getLossPercentage(), this.getLossPercentage());
int lowestCap = Math.min(theRelay.getEnergyCap(), this.getEnergyCap());
2024-03-02 21:23:08 +01:00
for (Map.Entry<Direction, BlockEntity> receiver : theRelay.receiversAround.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.EnergyStorage.BLOCK, tile.getBlockPos(), opp)).map(cap -> {
2021-02-27 16:33:00 +01:00
int trans = 0;
int theoreticalReceived = cap.receiveEnergy(Math.min(amountPer, lowestCap), true);
if (theoreticalReceived > 0) {
int deduct = this.calcDeduction(theoreticalReceived, highestLoss);
if (deduct >= theoreticalReceived) { //Happens with small numbers
deduct = 0;
}
2021-02-27 16:33:00 +01:00
trans += cap.receiveEnergy(theoreticalReceived - deduct, simulate);
trans += deduct;
}
2021-02-27 16:33:00 +01:00
return trans;
}).orElse(0);
//If everything that could be transmitted was transmitted
2021-02-26 22:15:48 +01:00
if (transmitted >= maxTransfer) {
return transmitted;
}
}
}
}
}
}
}
return transmitted;
}
2016-07-14 16:44:01 +02:00
2019-05-02 09:10:29 +02:00
private int calcDeduction(int theoreticalReceived, double highestLoss) {
2023-01-19 16:27:56 +01:00
return CommonConfig.Machines.LASER_RELAY_LOSS.get()
2024-03-02 21:23:08 +01:00
? Mth.ceil(theoreticalReceived * (highestLoss / 100))
2021-02-26 22:15:48 +01:00
: 0;
}
2019-05-02 09:10:29 +02:00
public int getEnergyCap() {
2016-07-14 16:44:01 +02:00
return CAP;
}
2019-05-02 09:10:29 +02:00
public double getLossPercentage() {
2016-07-14 16:44:01 +02:00
return 5;
}
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.energy.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);
}
}
}
2019-05-02 09:10:29 +02:00
public enum Mode {
BOTH("info." + ActuallyAdditions.MODID + ".laserRelay.mode.both"),
OUTPUT_ONLY("info." + ActuallyAdditions.MODID + ".laserRelay.mode.outputOnly"),
INPUT_ONLY("info." + ActuallyAdditions.MODID + ".laserRelay.mode.inputOnly");
2016-12-05 15:09:37 +01:00
public final String name;
2019-05-02 09:10:29 +02:00
Mode(String name) {
2016-12-05 15:09:37 +01:00
this.name = name;
}
2019-05-02 09:10:29 +02:00
public Mode getNext() {
int ordinal = this.ordinal() + 1;
2016-12-05 15:09:37 +01:00
2019-05-02 09:10:29 +02:00
if (ordinal >= values().length) {
2016-12-05 15:09:37 +01:00
ordinal = 0;
}
return values()[ordinal];
}
}
}