aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/metatileentity/TileIC2EnergySink.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity/TileIC2EnergySink.java')
-rw-r--r--src/main/java/gregtech/api/metatileentity/TileIC2EnergySink.java51
1 files changed, 27 insertions, 24 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/TileIC2EnergySink.java b/src/main/java/gregtech/api/metatileentity/TileIC2EnergySink.java
index 16af004957..661dad730f 100644
--- a/src/main/java/gregtech/api/metatileentity/TileIC2EnergySink.java
+++ b/src/main/java/gregtech/api/metatileentity/TileIC2EnergySink.java
@@ -44,19 +44,18 @@ public class TileIC2EnergySink extends TileEntity implements IEnergySink {
*/
@Override
public double getDemandedEnergy() {
- if(cableMeta != null) {
- // We don't want everything to join the enet (treating the cable as a conductor) so we join it as a ink. We don't want to traverse all cables
- // connected to this (like we would during distribution) to see if it actually needs any EU... so we just always say we want it all. If there
- // are more than two things attached, and one of them is a GT cable that doesn't have anywhere to send it's energy, the distribution will be a bit
+ if (cableMeta != null) {
+ // We don't want everything to join the enet (treating the cable as a conductor) so we join it as a ink. We
+ // don't want to traverse all cables
+ // connected to this (like we would during distribution) to see if it actually needs any EU... so we just
+ // always say we want it all. If there
+ // are more than two things attached, and one of them is a GT cable that doesn't have anywhere to send it's
+ // energy, the distribution will be a bit
// weird. In that case only use one cable, or use a transformer.
return (cableMeta.mVoltage * cableMeta.mAmperage);
- }
- else
- return myMeta.getEUCapacity() - myMeta.getStoredEU();
+ } else return myMeta.getEUCapacity() - myMeta.getStoredEU();
}
-
-
/**
* Determine the tier of this energy sink.
* 1 = LV, 2 = MV, 3 = HV, 4 = EV etc.
@@ -82,20 +81,26 @@ public class TileIC2EnergySink extends TileEntity implements IEnergySink {
@Override
public double injectEnergy(ForgeDirection directionFrom, double amount, double voltage) {
- final long amps =(long)Math.max(amount / (cableMeta != null ? cableMeta.mVoltage : myMeta.getInputVoltage() * 1.0), 1.0);
- final long euPerAmp = (long)(amount / (amps * 1.0));
+ final long amps = (long)
+ Math.max(amount / (cableMeta != null ? cableMeta.mVoltage : myMeta.getInputVoltage() * 1.0), 1.0);
+ final long euPerAmp = (long) (amount / (amps * 1.0));
final IMetaTileEntity metaTile = myMeta.getMetaTileEntity();
if (metaTile == null) return amount;
final long usedAmps;
- if(cableMeta != null) {
- usedAmps = ((IMetaTileEntityCable) metaTile).transferElectricity((byte) directionFrom.ordinal(), Math.min(euPerAmp, cableMeta.mVoltage), amps, Sets.newHashSet((TileEntity) myMeta));
-
- }
- else
- usedAmps = myMeta.injectEnergyUnits((byte) directionFrom.ordinal(), Math.min(euPerAmp, myMeta.getInputVoltage()), amps);
- return amount - ( usedAmps * euPerAmp);
+ if (cableMeta != null) {
+ usedAmps = ((IMetaTileEntityCable) metaTile)
+ .transferElectricity(
+ (byte) directionFrom.ordinal(),
+ Math.min(euPerAmp, cableMeta.mVoltage),
+ amps,
+ Sets.newHashSet((TileEntity) myMeta));
+
+ } else
+ usedAmps = myMeta.injectEnergyUnits(
+ (byte) directionFrom.ordinal(), Math.min(euPerAmp, myMeta.getInputVoltage()), amps);
+ return amount - (usedAmps * euPerAmp);
// transferElectricity for cables
}
@@ -112,11 +117,9 @@ public class TileIC2EnergySink extends TileEntity implements IEnergySink {
@Override
public boolean acceptsEnergyFrom(TileEntity emitter, ForgeDirection direction) {
final IMetaTileEntity metaTile = myMeta.getMetaTileEntity();
- if(metaTile instanceof IMetaTileEntityCable && (direction == ForgeDirection.UNKNOWN || ((IConnectable)metaTile).isConnectedAtSide(direction.ordinal())))
- return true;
- else
- return myMeta.inputEnergyFrom((byte) direction.ordinal(), false);
-
+ if (metaTile instanceof IMetaTileEntityCable
+ && (direction == ForgeDirection.UNKNOWN
+ || ((IConnectable) metaTile).isConnectedAtSide(direction.ordinal()))) return true;
+ else return myMeta.inputEnergyFrom((byte) direction.ordinal(), false);
}
-
}