Workorder method moved to workorder
This commit is contained in:
@@ -14,7 +14,10 @@ import engine.loot.WorkOrder;
|
||||
import engine.mbEnums;
|
||||
import engine.net.DispatchMessage;
|
||||
import engine.net.client.msg.ItemProductionMsg;
|
||||
import engine.objects.*;
|
||||
import engine.objects.City;
|
||||
import engine.objects.Item;
|
||||
import engine.objects.ItemTemplate;
|
||||
import engine.objects.NPC;
|
||||
import engine.powers.EffectsBase;
|
||||
import org.pmw.tinylog.Logger;
|
||||
|
||||
@@ -143,7 +146,7 @@ public enum ForgeManager implements Runnable {
|
||||
|
||||
// Debit gold and resource costs
|
||||
|
||||
if (!debitWorkOrderCost(workOrder))
|
||||
if (!WorkOrder.debitWorkOrderCost(workOrder))
|
||||
return 58; //58: The formula is beyond the means of this facility
|
||||
|
||||
// Create new batch of virtual items
|
||||
@@ -389,43 +392,4 @@ public enum ForgeManager implements Runnable {
|
||||
return modifier;
|
||||
}
|
||||
|
||||
public static boolean debitWorkOrderCost(WorkOrder workOrder) {
|
||||
|
||||
if (workOrder.vendor.building.getCity() == null)
|
||||
return false;
|
||||
|
||||
int strongbox = workOrder.vendor.building.getStrongboxValue();
|
||||
|
||||
// Strongbox can cover total gold cost;
|
||||
|
||||
if (workOrder.production_cost_total.get(mbEnums.ResourceType.GOLD) <= strongbox) {
|
||||
|
||||
workOrder.vendor.building.setStrongboxValue(strongbox - workOrder.production_cost_total.get(mbEnums.ResourceType.GOLD));
|
||||
workOrder.production_cost_total.put(mbEnums.ResourceType.GOLD, 0);
|
||||
|
||||
// Early exit for the forge covering gold only rolls
|
||||
|
||||
if (workOrder.production_cost_total.size() == 1)
|
||||
return true;
|
||||
|
||||
} else {
|
||||
int remainingAmount = workOrder.production_cost_total.get(mbEnums.ResourceType.GOLD) - strongbox;
|
||||
workOrder.vendor.building.setStrongboxValue(0);
|
||||
workOrder.production_cost_total.put(mbEnums.ResourceType.GOLD, workOrder.production_cost_total.put(mbEnums.ResourceType.GOLD, workOrder.production_cost_total.get(mbEnums.ResourceType.GOLD) - remainingAmount));
|
||||
}
|
||||
|
||||
// There is an overflow at this point and a warehouse is required
|
||||
|
||||
Warehouse warehouse = workOrder.vendor.building.getCity().warehouse;
|
||||
|
||||
if (warehouse == null)
|
||||
return false;
|
||||
|
||||
// Deduct total production cost from warehouse
|
||||
|
||||
workOrder.production_cost_total.forEach((key, value) -> warehouse.resources.put(key, warehouse.resources.get(key) - value));
|
||||
DbManager.WarehouseQueries.UPDATE_WAREHOUSE(warehouse);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user