Fix large turbines.
This commit is contained in:
parent
4f8db15e19
commit
e10d370b21
7 changed files with 178 additions and 69 deletions
|
@ -336,12 +336,13 @@ public abstract class GT_MetaGenerated_Tool extends GT_MetaBase_Item implements
|
|||
if (tStats != null) {
|
||||
String name = aStack.getUnlocalizedName();
|
||||
if (name.equals("gt.metatool.01.170") || name.equals("gt.metatool.01.172") || name.equals("gt.metatool.01.174") || name.equals("gt.metatool.01.176")) {
|
||||
int aOptFlow=GT_Utility.safeInt((long)Math.max(Float.MIN_NORMAL, ((GT_MetaGenerated_Tool) aStack.getItem()).getToolStats(aStack).getSpeedMultiplier() * ((GT_MetaGenerated_Tool) aStack.getItem()).getPrimaryMaterial(aStack).mToolSpeed * 50));
|
||||
aList.add(tOffset + 0, EnumChatFormatting.WHITE + "Durability: " + EnumChatFormatting.GREEN + (tMaxDamage - getToolDamage(aStack)) + " / " + tMaxDamage + EnumChatFormatting.GRAY);
|
||||
aList.add(tOffset + 1, EnumChatFormatting.WHITE + tMaterial.mDefaultLocalName + EnumChatFormatting.YELLOW + " lvl " + getHarvestLevel(aStack, "") + EnumChatFormatting.GRAY);
|
||||
aList.add(tOffset + 2, EnumChatFormatting.WHITE + "Turbine Efficency: " + EnumChatFormatting.BLUE + (50.0F + (10.0F * getToolCombatDamage(aStack))) + EnumChatFormatting.GRAY);
|
||||
aList.add(tOffset + 3, EnumChatFormatting.WHITE + "Optimal Steam flow: " + EnumChatFormatting.LIGHT_PURPLE + Math.max(Float.MIN_NORMAL, tStats.getSpeedMultiplier() * getPrimaryMaterial(aStack).mToolSpeed * 1000) + EnumChatFormatting.GRAY + "L/sec");
|
||||
aList.add(tOffset + 3, EnumChatFormatting.WHITE + "Optimal Gas flow(EU burnvalue per tick): " + EnumChatFormatting.LIGHT_PURPLE + Math.max(Float.MIN_NORMAL, tStats.getSpeedMultiplier() * getPrimaryMaterial(aStack).mToolSpeed * 50) + EnumChatFormatting.GRAY + "EU/t");
|
||||
aList.add(tOffset + 3, EnumChatFormatting.WHITE + "Optimal Plasma flow(Plasma energyvalue per tick): " + EnumChatFormatting.LIGHT_PURPLE + Math.max(Float.MIN_NORMAL, tStats.getSpeedMultiplier() * getPrimaryMaterial(aStack).mToolSpeed * 1000) + EnumChatFormatting.GRAY + "EU/t");
|
||||
aList.add(tOffset + 3, EnumChatFormatting.WHITE + "Optimal Steam flow: " + EnumChatFormatting.GOLD + aOptFlow + EnumChatFormatting.GRAY + " L/t");
|
||||
aList.add(tOffset + 3, EnumChatFormatting.WHITE + "Optimal Gas flow (Burn energy per tick): " + EnumChatFormatting.GOLD + aOptFlow + EnumChatFormatting.GRAY + " EU/t");
|
||||
aList.add(tOffset + 3, EnumChatFormatting.WHITE + "Optimal Plasma flow (Plasma energy per tick): " + EnumChatFormatting.GOLD + aOptFlow*40 + EnumChatFormatting.GRAY + " EU/s");
|
||||
|
||||
} else {
|
||||
aList.add(tOffset + 0, EnumChatFormatting.WHITE + "Durability: " + EnumChatFormatting.GREEN + (tMaxDamage - getToolDamage(aStack)) + " / " + tMaxDamage + EnumChatFormatting.GRAY);
|
||||
|
|
|
@ -75,10 +75,10 @@ public class GT_MetaTileEntity_DieselEngine extends GT_MetaTileEntity_MultiBlock
|
|||
Collection<GT_Recipe> tRecipeList = GT_Recipe.GT_Recipe_Map.sDieselFuels.mRecipeList;
|
||||
|
||||
if(tFluids.size() > 0 && tRecipeList != null) { //Does input hatch have a diesel fuel?
|
||||
for (FluidStack hatchFluid1 : tFluids) { //Loops through hatches
|
||||
for (FluidStack hatchFluid1 : tFluids) { //Loops through fluids in hatches
|
||||
for(GT_Recipe aFuel : tRecipeList) { //Loops through diesel fuel recipes
|
||||
FluidStack tLiquid;
|
||||
if ((tLiquid = GT_Utility.getFluidForFilledItem(aFuel.getRepresentativeInput(0), true)) != null) { //Create fluidstack from current recipe
|
||||
FluidStack tLiquid = GT_Utility.getFluidForFilledItem(aFuel.getRepresentativeInput(0), true); //Create fluidstack from current recipe
|
||||
if (tLiquid != null) {
|
||||
if (hatchFluid1.isFluidEqual(tLiquid)) { //Has a diesel fluid
|
||||
fuelConsumption = tLiquid.amount = boostEu ? (4096 / aFuel.mSpecialValue) : (2048 / aFuel.mSpecialValue); //Calc fuel consumption
|
||||
if(depleteInput(tLiquid)) { //Deplete that amount
|
||||
|
|
|
@ -128,14 +128,16 @@ public abstract class GT_MetaTileEntity_LargeTurbine extends GT_MetaTileEntity_M
|
|||
|
||||
@Override
|
||||
public boolean checkRecipe(ItemStack aStack) {
|
||||
if(aStack==null || !(aStack.getItem() instanceof GT_MetaGenerated_Tool) || aStack.getItemDamage() < 170 || aStack.getItemDamage() >179)return false;
|
||||
if((counter&7)==0 && (aStack==null || !(aStack.getItem() instanceof GT_MetaGenerated_Tool) || aStack.getItemDamage() < 170 || aStack.getItemDamage() >179)) {
|
||||
stopMachine();
|
||||
return false;
|
||||
}
|
||||
ArrayList<FluidStack> tFluids = getStoredFluids();
|
||||
if (tFluids.size() > 0) {
|
||||
if (baseEff == 0 || optFlow == 0 || counter >= 1000 || this.getBaseMetaTileEntity().hasWorkJustBeenEnabled()
|
||||
if (baseEff == 0 || optFlow == 0 || counter >= 512 || this.getBaseMetaTileEntity().hasWorkJustBeenEnabled()
|
||||
|| this.getBaseMetaTileEntity().hasInventoryBeenModified()) {
|
||||
counter = 0;
|
||||
baseEff = GT_Utility.safeInt((long)((50.0F
|
||||
+ (10.0F * ((GT_MetaGenerated_Tool) aStack.getItem()).getToolCombatDamage(aStack))) * 100));
|
||||
baseEff = GT_Utility.safeInt((long)((5F + ((GT_MetaGenerated_Tool) aStack.getItem()).getToolCombatDamage(aStack)) * 1000F));
|
||||
optFlow = GT_Utility.safeInt((long)Math.max(Float.MIN_NORMAL,
|
||||
((GT_MetaGenerated_Tool) aStack.getItem()).getToolStats(aStack).getSpeedMultiplier()
|
||||
* ((GT_MetaGenerated_Tool) aStack.getItem()).getPrimaryMaterial(aStack).mToolSpeed
|
||||
|
@ -145,7 +147,13 @@ public abstract class GT_MetaTileEntity_LargeTurbine extends GT_MetaTileEntity_M
|
|||
}
|
||||
}
|
||||
|
||||
if(optFlow<=0 || baseEff<=0){
|
||||
stopMachine();//in case the turbine got removed
|
||||
return false;
|
||||
}
|
||||
|
||||
int newPower = fluidIntoPower(tFluids, optFlow, baseEff); // How much the turbine should be producing with this flow
|
||||
|
||||
int difference = newPower - this.mEUt; // difference between current output and new output
|
||||
|
||||
// Magic numbers: can always change by at least 10 eu/t, but otherwise by at most 1 percent of the difference in power level (per tick)
|
||||
|
@ -159,17 +167,15 @@ public abstract class GT_MetaTileEntity_LargeTurbine extends GT_MetaTileEntity_M
|
|||
this.mEUt = newPower;
|
||||
|
||||
if (mEUt <= 0) {
|
||||
|
||||
// this.mEfficiencyIncrease = (-10);
|
||||
this.mEfficiency = 0;
|
||||
//stopMachine();
|
||||
stopMachine();
|
||||
return false;
|
||||
} else {
|
||||
this.mMaxProgresstime = 1;
|
||||
this.mEfficiencyIncrease = (10);
|
||||
this.mEfficiencyIncrease = 10;
|
||||
if(this.mDynamoHatches.size()>0){
|
||||
if(this.mDynamoHatches.get(0).getBaseMetaTileEntity().getOutputVoltage() < GT_Utility.safeInt((long)mEUt * (long)mEfficiency / 10000L)){
|
||||
explodeMultiblock();}
|
||||
for(GT_MetaTileEntity_Hatch dynamo:mDynamoHatches)
|
||||
if(isValidMetaTileEntity(dynamo) && dynamo.maxEUOutput() < mEUt)
|
||||
explodeMultiblock();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@ import gregtech.api.util.GT_Utility;
|
|||
import net.minecraft.block.Block;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.fluids.FluidStack;
|
||||
import org.lwjgl.Sys;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
|
@ -81,11 +82,10 @@ public class GT_MetaTileEntity_LargeTurbine_Gas extends GT_MetaTileEntity_LargeT
|
|||
|
||||
@Override
|
||||
int fluidIntoPower(ArrayList<FluidStack> aFluids, int aOptFlow, int aBaseEff) {
|
||||
if (aFluids.size() >= 1) {
|
||||
int tEU = 0;
|
||||
|
||||
int actualOptimalFlow = 0;
|
||||
|
||||
if (aFluids.size() >= 1) {
|
||||
FluidStack firstFuelType = new FluidStack(aFluids.get(0), 0); // Identify a SINGLE type of fluid to process. Doesn't matter which one. Ignore the rest!
|
||||
int fuelValue = getFuelValue(firstFuelType);
|
||||
actualOptimalFlow = GT_Utility.safeInt((long)aOptFlow / fuelValue);
|
||||
|
@ -95,27 +95,27 @@ public class GT_MetaTileEntity_LargeTurbine_Gas extends GT_MetaTileEntity_LargeT
|
|||
int flow = 0;
|
||||
int totalFlow = 0;
|
||||
|
||||
storedFluid=0;
|
||||
int aFluids_sS=aFluids.size();
|
||||
for (int i = 0; i < aFluids_sS; i++) {
|
||||
if (aFluids.get(i).isFluidEqual(firstFuelType)) {
|
||||
flow = aFluids.get(i).amount; // Get all (steam) in hatch
|
||||
flow = Math.min(flow, Math.min(remainingFlow, (int) (actualOptimalFlow * 1.25f))); // try to use up to 125% of optimal flow w/o exceeding remainingFlow
|
||||
flow = Math.min(aFluids.get(i).amount, remainingFlow); // try to use up to 125% of optimal flow w/o exceeding remainingFlow
|
||||
depleteInput(new FluidStack(aFluids.get(i), flow)); // deplete that amount
|
||||
this.storedFluid = aFluids.get(i).amount;
|
||||
this.storedFluid += aFluids.get(i).amount;
|
||||
remainingFlow -= flow; // track amount we're allowed to continue depleting from hatches
|
||||
totalFlow += flow; // track total input used
|
||||
}
|
||||
}
|
||||
|
||||
tEU = GT_Utility.safeInt((long)Math.min((float) actualOptimalFlow, totalFlow) * fuelValue);
|
||||
tEU = GT_Utility.safeInt((long)totalFlow * fuelValue);
|
||||
|
||||
if (totalFlow != actualOptimalFlow) {
|
||||
float efficiency = 1.0f - Math.abs(((totalFlow - (float) actualOptimalFlow) / actualOptimalFlow));
|
||||
if(totalFlow>actualOptimalFlow){efficiency = 1.0f;}
|
||||
if (efficiency < 0)
|
||||
efficiency = 0; // Can happen with really ludicrously poor inefficiency.
|
||||
float efficiency = 1.0f - Math.abs((totalFlow - actualOptimalFlow) / (float)actualOptimalFlow);
|
||||
//if(totalFlow>actualOptimalFlow){efficiency = 1.0f;}
|
||||
//if (efficiency < 0)
|
||||
// efficiency = 0; // Can happen with really ludicrously poor inefficiency.
|
||||
tEU *= efficiency;
|
||||
tEU = Math.max(1, GT_Utility.safeInt((long)tEU * (long)aBaseEff / 10000L));
|
||||
tEU = GT_Utility.safeInt((long)tEU * (long)aBaseEff / 10000L);
|
||||
} else {
|
||||
tEU = GT_Utility.safeInt((long)tEU * (long)aBaseEff / 10000L);
|
||||
}
|
||||
|
@ -123,6 +123,7 @@ public class GT_MetaTileEntity_LargeTurbine_Gas extends GT_MetaTileEntity_LargeT
|
|||
return tEU;
|
||||
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -73,18 +73,18 @@ public class GT_MetaTileEntity_LargeTurbine_HPSteam extends GT_MetaTileEntity_La
|
|||
int tEU = 0;
|
||||
int totalFlow = 0; // Byproducts are based on actual flow
|
||||
int flow = 0;
|
||||
int remainingFlow = GT_Utility.safeInt((long)(aOptFlow * 1.25f)); // Allowed to use up to 125% of optimal flow
|
||||
int remainingFlow = GT_Utility.safeInt((long)(aOptFlow * 1.25f)); // Allowed to use up to 125% of optimal flow. Variable required outside of loop for multi-hatch scenarios.
|
||||
this.realOptFlow = aOptFlow;
|
||||
|
||||
storedFluid=0;
|
||||
for (int i = 0; i < aFluids.size() && remainingFlow > 0; i++) {
|
||||
String fluidName = aFluids.get(i).getFluid().getUnlocalizedName(aFluids.get(i));
|
||||
if (fluidName.equals("ic2.fluidSuperheatedSteam")) {
|
||||
flow = aFluids.get(i).amount; // Get all (steam) in hatch
|
||||
flow = Math.min(flow, Math.min(remainingFlow, GT_Utility.safeInt((long)(aOptFlow * 1.25f)))); // try to use up to 125% of optimal flow w/o exceeding remainingFlow
|
||||
flow = Math.min(aFluids.get(i).amount, remainingFlow); // try to use up w/o exceeding remainingFlow
|
||||
depleteInput(new FluidStack(aFluids.get(i), flow)); // deplete that amount
|
||||
this.storedFluid = aFluids.get(i).amount;
|
||||
remainingFlow -= flow; // track amount we're allowed to keep depleting from hatches
|
||||
totalFlow += flow; // track total used
|
||||
this.storedFluid += aFluids.get(i).amount;
|
||||
remainingFlow -= flow; // track amount we're allowed to continue depleting from hatches
|
||||
totalFlow += flow; // track total input used
|
||||
if (!achievement) {
|
||||
try {
|
||||
GT_Mod.instance.achievements.issueAchievement(this.getBaseMetaTileEntity().getWorld().getPlayerEntityByName(this.getBaseMetaTileEntity().getOwnerName()), "efficientsteam");
|
||||
|
@ -97,11 +97,11 @@ public class GT_MetaTileEntity_LargeTurbine_HPSteam extends GT_MetaTileEntity_La
|
|||
}
|
||||
}
|
||||
|
||||
tEU = GT_Utility.safeInt((long)Math.min((float) aOptFlow, totalFlow));
|
||||
tEU = totalFlow;
|
||||
addOutput(GT_ModHandler.getSteam(totalFlow));
|
||||
if (totalFlow > 0 && totalFlow != aOptFlow) {
|
||||
float efficiency = 1.0f - Math.abs(((totalFlow - (float) aOptFlow) / aOptFlow));
|
||||
if(totalFlow>aOptFlow){efficiency = 1.0f;}
|
||||
float efficiency = 1.0f - Math.abs((totalFlow - aOptFlow) / (float)aOptFlow);
|
||||
//if(totalFlow>aOptFlow){efficiency = 1.0f;}
|
||||
tEU *= efficiency;
|
||||
tEU = Math.max(1, GT_Utility.safeInt((long)tEU * (long)aBaseEff / 10000L));
|
||||
} else {
|
||||
|
|
|
@ -5,12 +5,18 @@ import gregtech.api.enums.Textures;
|
|||
import gregtech.api.interfaces.ITexture;
|
||||
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
|
||||
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
|
||||
import gregtech.api.items.GT_MetaGenerated_Tool;
|
||||
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch;
|
||||
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch_Dynamo;
|
||||
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch_Muffler;
|
||||
import gregtech.api.objects.GT_RenderedTexture;
|
||||
import gregtech.api.util.GT_Recipe;
|
||||
import gregtech.api.util.GT_Recipe.GT_Recipe_Map;
|
||||
import gregtech.api.util.GT_Utility;
|
||||
import gregtech.common.items.GT_MetaGenerated_Tool_01;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.EnumChatFormatting;
|
||||
import net.minecraftforge.fluids.FluidRegistry;
|
||||
import net.minecraftforge.fluids.FluidStack;
|
||||
|
||||
|
@ -48,9 +54,11 @@ public class GT_MetaTileEntity_LargeTurbine_Plasma extends GT_MetaTileEntity_Lar
|
|||
if (aLiquid == null || GT_Recipe_Map.sTurbineFuels == null) return 0;
|
||||
FluidStack tLiquid;
|
||||
Collection<GT_Recipe> tRecipeList = GT_Recipe_Map.sPlasmaFuels.mRecipeList;
|
||||
if (tRecipeList != null) for (GT_Recipe tFuel : tRecipeList)
|
||||
if (tRecipeList != null)
|
||||
for (GT_Recipe tFuel : tRecipeList)
|
||||
if ((tLiquid = GT_Utility.getFluidForFilledItem(tFuel.getRepresentativeInput(0), true)) != null)
|
||||
if (aLiquid.isFluidEqual(tLiquid)) return tFuel.mSpecialValue;
|
||||
if (aLiquid.isFluidEqual(tLiquid))
|
||||
return tFuel.mSpecialValue;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -81,29 +89,28 @@ public class GT_MetaTileEntity_LargeTurbine_Plasma extends GT_MetaTileEntity_Lar
|
|||
|
||||
@Override
|
||||
int fluidIntoPower(ArrayList<FluidStack> aFluids, int aOptFlow, int aBaseEff) {
|
||||
|
||||
aOptFlow *= 40;
|
||||
if (aFluids.size() >= 1) {
|
||||
aOptFlow *= 800;//CHANGED THINGS HERE, check recipe runs once per 20 ticks
|
||||
int tEU = 0;
|
||||
|
||||
int actualOptimalFlow = 0;
|
||||
|
||||
if (aFluids.size() >= 1) {
|
||||
FluidStack firstFuelType = new FluidStack(aFluids.get(0), 0); // Identify a SINGLE type of fluid to process. Doesn't matter which one. Ignore the rest!
|
||||
int fuelValue = getFuelValue(firstFuelType);
|
||||
actualOptimalFlow = GT_Utility.safeInt(((long)aOptFlow + (long)fuelValue - 1) / (long)fuelValue);
|
||||
actualOptimalFlow = GT_Utility.safeInt((long)Math.ceil((double)aOptFlow / (double)fuelValue));
|
||||
this.realOptFlow = actualOptimalFlow; // For scanner info
|
||||
|
||||
int remainingFlow = GT_Utility.safeInt((long)(actualOptimalFlow * 1.25f)); // Allowed to use up to 125% of optimal flow. Variable required outside of loop for multi-hatch scenarios.
|
||||
int flow = 0;
|
||||
int totalFlow = 0;
|
||||
|
||||
storedFluid=0;
|
||||
int aFluids_sS=aFluids.size();
|
||||
for (int i = 0; i < aFluids_sS; i++) {
|
||||
if (aFluids.get(i).isFluidEqual(firstFuelType)) {
|
||||
flow = aFluids.get(i).amount; // Get all (steam) in hatch
|
||||
flow = Math.min(flow, Math.min(remainingFlow, GT_Utility.safeInt((long)(actualOptimalFlow * 1.25f)))); // try to use up to 125% of optimal flow w/o exceeding remainingFlow
|
||||
flow = Math.min(aFluids.get(i).amount, remainingFlow); // try to use up w/o exceeding remainingFlow
|
||||
depleteInput(new FluidStack(aFluids.get(i), flow)); // deplete that amount
|
||||
this.storedFluid = aFluids.get(i).amount;
|
||||
this.storedFluid += aFluids.get(i).amount;
|
||||
remainingFlow -= flow; // track amount we're allowed to continue depleting from hatches
|
||||
totalFlow += flow; // track total input used
|
||||
}
|
||||
|
@ -121,17 +128,19 @@ public class GT_MetaTileEntity_LargeTurbine_Plasma extends GT_MetaTileEntity_Lar
|
|||
}
|
||||
}
|
||||
|
||||
tEU = GT_Utility.safeInt((long)Math.min((float) actualOptimalFlow, totalFlow) * fuelValue);
|
||||
tEU = GT_Utility.safeInt((long)((fuelValue / 20D) * (double)totalFlow));
|
||||
|
||||
System.out.println(totalFlow+" : "+fuelValue+" : "+aOptFlow+" : "+actualOptimalFlow+" : "+tEU);
|
||||
|
||||
if (totalFlow != actualOptimalFlow) {
|
||||
float efficiency = 1.0f - Math.abs(((totalFlow - (float) actualOptimalFlow) / actualOptimalFlow));
|
||||
if(totalFlow>actualOptimalFlow){efficiency = 1.0f;}
|
||||
if (efficiency < 0)
|
||||
efficiency = 0; // Can happen with really ludicrously poor inefficiency.
|
||||
tEU *= efficiency;
|
||||
tEU = Math.max(1, GT_Utility.safeInt((long)tEU * (long)aBaseEff / 10000L));
|
||||
double efficiency = 1.0D - Math.abs((totalFlow - actualOptimalFlow) / (float)actualOptimalFlow);
|
||||
//if(totalFlow>actualOptimalFlow){efficiency = 1.0f;}
|
||||
//if (efficiency < 0)
|
||||
// efficiency = 0; // Can happen with really ludicrously poor inefficiency.
|
||||
tEU = (int)(tEU * efficiency);
|
||||
tEU = GT_Utility.safeInt((long)(aBaseEff/10000D*tEU));
|
||||
} else {
|
||||
tEU = GT_Utility.safeInt((long)tEU * (long)aBaseEff / 10000L);
|
||||
tEU = GT_Utility.safeInt((long)(aBaseEff/10000D*tEU));
|
||||
}
|
||||
|
||||
return tEU;
|
||||
|
@ -140,5 +149,96 @@ public class GT_MetaTileEntity_LargeTurbine_Plasma extends GT_MetaTileEntity_Lar
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean checkRecipe(ItemStack aStack) {
|
||||
if((counter&7)==0 && (aStack==null || !(aStack.getItem() instanceof GT_MetaGenerated_Tool) || aStack.getItemDamage() < 170 || aStack.getItemDamage() >179)) {
|
||||
stopMachine();
|
||||
return false;
|
||||
}
|
||||
ArrayList<FluidStack> tFluids = getStoredFluids();
|
||||
if (tFluids.size() > 0) {
|
||||
if (baseEff == 0 || optFlow == 0 || counter >= 512 || this.getBaseMetaTileEntity().hasWorkJustBeenEnabled()
|
||||
|| this.getBaseMetaTileEntity().hasInventoryBeenModified()) {
|
||||
counter = 0;
|
||||
baseEff = GT_Utility.safeInt((long)((5F + ((GT_MetaGenerated_Tool) aStack.getItem()).getToolCombatDamage(aStack)) * 1000F));
|
||||
optFlow = GT_Utility.safeInt((long)Math.max(Float.MIN_NORMAL,
|
||||
((GT_MetaGenerated_Tool) aStack.getItem()).getToolStats(aStack).getSpeedMultiplier()
|
||||
* ((GT_MetaGenerated_Tool) aStack.getItem()).getPrimaryMaterial(aStack).mToolSpeed
|
||||
* 50));
|
||||
} else {
|
||||
counter++;
|
||||
}
|
||||
}
|
||||
|
||||
if(optFlow<=0 || baseEff<=0){
|
||||
stopMachine();//in case the turbine got removed
|
||||
return false;
|
||||
}
|
||||
|
||||
int newPower = fluidIntoPower(tFluids, optFlow, baseEff); // How much the turbine should be producing with this flow
|
||||
|
||||
int difference = newPower - this.mEUt; // difference between current output and new output
|
||||
|
||||
// Magic numbers: can always change by at least 10 eu/t, but otherwise by at most 1 percent of the difference in power level (per tick)
|
||||
// This is how much the turbine can actually change during this tick
|
||||
int maxChangeAllowed = Math.max(200, GT_Utility.safeInt((long)Math.ceil(Math.abs(difference) * 0.2)));
|
||||
|
||||
if (Math.abs(difference) > maxChangeAllowed) { // If this difference is too big, use the maximum allowed change
|
||||
int change = maxChangeAllowed * (difference > 0 ? 1 : -1); // Make the change positive or negative.
|
||||
this.mEUt += change; // Apply the change
|
||||
} else
|
||||
this.mEUt = newPower;
|
||||
|
||||
if (mEUt <= 0) {
|
||||
stopMachine();
|
||||
return false;
|
||||
} else {
|
||||
this.mMaxProgresstime = 20;
|
||||
this.mEfficiencyIncrease = 200;
|
||||
if(this.mDynamoHatches.size()>0){
|
||||
for(GT_MetaTileEntity_Hatch dynamo:mDynamoHatches)
|
||||
if(isValidMetaTileEntity(dynamo) && dynamo.maxEUOutput() < mEUt)
|
||||
explodeMultiblock();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getInfoData() {
|
||||
String tRunning = mMaxProgresstime>0 ?
|
||||
EnumChatFormatting.GREEN+"Turbine running"+EnumChatFormatting.RESET :
|
||||
EnumChatFormatting.RED+"Turbine stopped"+EnumChatFormatting.RESET;
|
||||
String tMaintainance = getIdealStatus() == getRepairStatus() ?
|
||||
EnumChatFormatting.GREEN+"No Maintainance issues"+EnumChatFormatting.RESET :
|
||||
EnumChatFormatting.RED+"Needs Maintainance"+EnumChatFormatting.RESET ;
|
||||
int tDura = 0;
|
||||
|
||||
if (mInventory[1] != null && mInventory[1].getItem() instanceof GT_MetaGenerated_Tool_01) {
|
||||
tDura = GT_Utility.safeInt((long)(100.0f / GT_MetaGenerated_Tool.getToolMaxDamage(mInventory[1]) * (GT_MetaGenerated_Tool.getToolDamage(mInventory[1]))+1));
|
||||
}
|
||||
|
||||
long storedEnergy=0;
|
||||
long maxEnergy=0;
|
||||
for(GT_MetaTileEntity_Hatch_Dynamo tHatch : mDynamoHatches) {
|
||||
if (isValidMetaTileEntity(tHatch)) {
|
||||
storedEnergy+=tHatch.getBaseMetaTileEntity().getStoredEU();
|
||||
maxEnergy+=tHatch.getBaseMetaTileEntity().getEUCapacity();
|
||||
}
|
||||
}
|
||||
|
||||
return new String[]{
|
||||
EnumChatFormatting.BLUE+"Large Turbine"+EnumChatFormatting.RESET,
|
||||
"Stored Energy:",
|
||||
EnumChatFormatting.GREEN + Long.toString(storedEnergy) + EnumChatFormatting.RESET +" EU / "+
|
||||
EnumChatFormatting.YELLOW + Long.toString(maxEnergy) + EnumChatFormatting.RESET +" EU",
|
||||
tRunning,
|
||||
"Current Output: "+EnumChatFormatting.RED+mEUt+EnumChatFormatting.RESET+" EU/t",
|
||||
"Optimal Flow: "+EnumChatFormatting.YELLOW+GT_Utility.safeInt((long)realOptFlow)+EnumChatFormatting.RESET+" L/s",
|
||||
"Fuel Remaining: "+EnumChatFormatting.GOLD+storedFluid+EnumChatFormatting.RESET+"L",
|
||||
"Current Speed: "+EnumChatFormatting.YELLOW+(mEfficiency/100F)+EnumChatFormatting.RESET+"%",
|
||||
"Turbine Damage: "+EnumChatFormatting.RED+Integer.toString(tDura)+EnumChatFormatting.RESET+"%",
|
||||
tMaintainance,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -73,7 +73,7 @@ public class GT_MetaTileEntity_LargeTurbine_Steam extends GT_MetaTileEntity_Larg
|
|||
private int useWater(float input) {
|
||||
water = water + input;
|
||||
int usage = (int) water;
|
||||
water = water - (int) usage;
|
||||
water = water - usage;
|
||||
return usage;
|
||||
}
|
||||
|
||||
|
@ -83,15 +83,16 @@ public class GT_MetaTileEntity_LargeTurbine_Steam extends GT_MetaTileEntity_Larg
|
|||
int totalFlow = 0; // Byproducts are based on actual flow
|
||||
int flow = 0;
|
||||
int remainingFlow = GT_Utility.safeInt((long)(aOptFlow * 1.25f)); // Allowed to use up to 125% of optimal flow. Variable required outside of loop for multi-hatch scenarios.
|
||||
this.realOptFlow = ((aOptFlow>>1)<<1);//REALLY?
|
||||
this.realOptFlow = aOptFlow;
|
||||
|
||||
storedFluid=0;
|
||||
for (int i = 0; i < aFluids.size() && remainingFlow > 0; i++) { // loop through each hatch; extract inputs and track totals.
|
||||
String fluidName = aFluids.get(i).getFluid().getUnlocalizedName(aFluids.get(i));
|
||||
|
||||
if (fluidName.equals("fluid.steam") || fluidName.equals("ic2.fluidSteam") || fluidName.equals("fluid.mfr.steam.still.name")) {
|
||||
flow = aFluids.get(i).amount; // Get all (steam) in hatch
|
||||
flow = Math.min(flow, Math.min(remainingFlow, GT_Utility.safeInt((long)(aOptFlow * 1.25f)))); // try to use up to 125% of optimal flow w/o exceeding remainingFlow
|
||||
flow = Math.min(aFluids.get(i).amount, remainingFlow); // try to use up w/o exceeding remainingFlow
|
||||
depleteInput(new FluidStack(aFluids.get(i), flow)); // deplete that amount
|
||||
this.storedFluid = aFluids.get(i).amount;
|
||||
this.storedFluid += aFluids.get(i).amount;
|
||||
remainingFlow -= flow; // track amount we're allowed to continue depleting from hatches
|
||||
totalFlow += flow; // track total input used
|
||||
if (!achievement) {
|
||||
|
@ -106,12 +107,12 @@ public class GT_MetaTileEntity_LargeTurbine_Steam extends GT_MetaTileEntity_Larg
|
|||
}
|
||||
}
|
||||
|
||||
tEU = GT_Utility.safeInt((long)(Math.min((float) aOptFlow, totalFlow)));
|
||||
tEU = totalFlow;
|
||||
int waterToOutput = useWater(totalFlow / 160.0f);
|
||||
addOutput(GT_ModHandler.getDistilledWater(waterToOutput));
|
||||
if (totalFlow > 0 && totalFlow != aOptFlow) {
|
||||
float efficiency = 1.0f - Math.abs(((totalFlow - (float) aOptFlow) / aOptFlow));
|
||||
if(totalFlow>aOptFlow){efficiency = 1.0f;}
|
||||
float efficiency = 1.0f - Math.abs((totalFlow - aOptFlow) / (float)aOptFlow);
|
||||
//if(totalFlow>aOptFlow){efficiency = 1.0f;}
|
||||
tEU *= efficiency;
|
||||
tEU = Math.max(1, GT_Utility.safeInt((long)tEU * (long)aBaseEff / 20000L));
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue