baritone/src/main/java/tenor/AquireCraftingItems.java

70 lines
2.5 KiB
Java
Raw Normal View History

2018-10-30 06:15:08 +00:00
/*
* This file is part of Baritone.
*
* Baritone is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Baritone is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
*/
package tenor;
2018-10-30 18:51:49 +00:00
import java.util.List;
2018-10-30 06:15:08 +00:00
2018-10-30 18:51:49 +00:00
public class AquireCraftingItems extends QuantizedTaskNode implements ClaimProvider {
2018-10-30 20:51:19 +00:00
2018-10-30 18:51:49 +00:00
CraftingTask output;
public AquireCraftingItems() {
super(DependencyType.PARALLEL_ALL);
}
@Override
public double priorityAllocatedTo(IQuantizedParentTaskRelationship child, int quantity) {
AquireItemTask resource = (AquireItemTask) child.childTask(); // all our dependents are aquire item tasks
int amount = output.inputSizeFor(resource);
// they could provide us with quantity
int actualQuantity = (int) Math.ceil(quantity * 1.0D / amount);
// so we could do the crafting recipe this many times
2018-10-30 20:51:19 +00:00
// how good would that be?allocatedPriority
2018-10-30 18:51:49 +00:00
return priority().value(actualQuantity);
}
@Override
2018-10-30 20:51:19 +00:00
public IQuantityRelationship priority() {
return ((List<IQuantizedChildTaskRelationship>) (Object) parentTasks()).get(0)::allocatedPriority; // gamer style
2018-10-30 18:51:49 +00:00
}
@Override
2018-10-30 20:51:19 +00:00
public IQuantityRelationship cost() {
2018-10-30 18:51:49 +00:00
return null;
}
@Override
public int quantityCompletedForParent(IQuantizedChildTaskRelationship relationship) {
// our only parent is the crafting task
int minCompletion = Integer.MAX_VALUE;
2018-10-30 20:51:19 +00:00
for (IQuantizedChildTaskRelationship resource : (List<IQuantizedChildTaskRelationship>) (Object) childTasks()) {
2018-10-30 18:51:49 +00:00
int amountForUs = resource.quantityCompleted();
2018-10-30 20:51:19 +00:00
int amountPerCraft = output.inputSizeFor((AquireItemTask) resource.childTask());
2018-10-30 18:51:49 +00:00
int actualQuantity = (int) Math.ceil(amountForUs * 1.0D / amountPerCraft);
if (actualQuantity < minCompletion || minCompletion == Integer.MAX_VALUE) {
minCompletion = actualQuantity; // any missing ingredient and we aren't really done
}
}
return minCompletion;
}
2018-10-30 06:15:08 +00:00
}