Reduce the batch size if fluid amount is exceeding
This commit is contained in:
parent
da2e748e8a
commit
000740ff66
1 changed files with 25 additions and 0 deletions
|
@ -562,6 +562,31 @@ public class GT_RecipeAdder
|
|||
if ((aDuration = GregTech_API.sRecipeFile.get("distillery", aOutput.getFluid().getUnlocalizedName(), aDuration)) <= 0) {
|
||||
return false;
|
||||
}
|
||||
//reduce the batch size if fluid amount is exceeding
|
||||
int tScale = (Math.max(aInput.amount, aOutput.amount) + 999) / 1000;
|
||||
if (tScale <= 0) tScale = 1;
|
||||
if (tScale > 1){
|
||||
//trying to find whether there is a better factor
|
||||
for (int i = tScale; i <= 10; i++) {
|
||||
if (aInput.amount % i == 0 && aDuration % i == 0) {
|
||||
tScale = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
for (int i = tScale; i <= 10; i++) {
|
||||
if (aInput.amount % i == 0 && aDuration % i == 0 && aOutput.amount % i == 0) {
|
||||
tScale = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
aInput = new FluidStack(aInput.getFluid(), (aInput.amount + tScale - 1) / tScale);
|
||||
aOutput = new FluidStack(aOutput.getFluid(), aOutput.amount / tScale);
|
||||
if (aSolidOutput != null) {
|
||||
if (aSolidOutput.stackSize / tScale == 0) aSolidOutput = GT_Values.NI;
|
||||
else aSolidOutput = new ItemStack(aSolidOutput.getItem(), aSolidOutput.stackSize / tScale);
|
||||
}
|
||||
aDuration = (aDuration + tScale - 1) / tScale;
|
||||
}
|
||||
GT_Recipe tRecipe = GT_Recipe.GT_Recipe_Map.sDistilleryRecipes.addRecipe(true, new ItemStack[]{aCircuit}, new ItemStack[]{aSolidOutput}, null, new FluidStack[]{aInput}, new FluidStack[]{aOutput}, aDuration, aEUt, 0);
|
||||
if ((aHidden) && (tRecipe != null)) {
|
||||
tRecipe.mHidden = true;
|
||||
|
|
Loading…
Reference in a new issue