You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
3.3 KiB
88 lines
3.3 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
package engine.loot; |
|
|
|
import engine.mbEnums; |
|
import engine.objects.Item; |
|
import engine.objects.NPC; |
|
|
|
import java.time.Duration; |
|
import java.time.Instant; |
|
import java.time.LocalDateTime; |
|
import java.time.ZoneId; |
|
import java.util.HashMap; |
|
import java.util.concurrent.CopyOnWriteArrayList; |
|
import java.util.concurrent.Delayed; |
|
import java.util.concurrent.TimeUnit; |
|
|
|
public class WorkOrder implements Delayed { |
|
|
|
public int workOrderID; |
|
public NPC vendor; |
|
public int slots_used; |
|
public int total_to_produce; |
|
public int total_produced; |
|
public boolean multiple_slot_request; |
|
public HashMap<mbEnums.ResourceType, Integer> production_cost = new HashMap<>(); |
|
public HashMap<mbEnums.ResourceType, Integer> production_cost_total = new HashMap<>(); |
|
public int templateID; |
|
public String item_name_override; |
|
public int prefixToken; |
|
public int suffixToken; |
|
public long rollingDuration; |
|
public long completionTime; |
|
public boolean runCompleted = false; |
|
public boolean runCanceled = false; |
|
public CopyOnWriteArrayList<Item> cooking = new CopyOnWriteArrayList<>(); |
|
|
|
public WorkOrder() { |
|
|
|
} |
|
|
|
public WorkOrder(String json) { |
|
|
|
} |
|
|
|
@Override |
|
public long getDelay(TimeUnit unit) { |
|
|
|
long timeRemaining = completionTime - System.currentTimeMillis(); |
|
return unit.convert(timeRemaining, TimeUnit.MILLISECONDS); |
|
|
|
} |
|
|
|
@Override |
|
public int compareTo(Delayed o) { |
|
return Long.compare(this.completionTime, ((WorkOrder) o).completionTime); |
|
} |
|
|
|
public String toString() { |
|
|
|
LocalDateTime localDateTime = Instant.ofEpochMilli(this.completionTime) |
|
.atZone(ZoneId.systemDefault()).toLocalDateTime(); |
|
Duration duration = Duration.ofMillis(this.rollingDuration); |
|
|
|
String outSTring = "\r\nwordOrderID: " + this.workOrderID + "\r\n" + |
|
"vendor: " + this.vendor.getObjectUUID() + "\r\n" + |
|
"slots_used: " + this.slots_used + "\r\n" + |
|
"total_to_produce: " + this.total_to_produce + "\r\n" + |
|
"total_produced: " + this.total_produced + "\r\n" + |
|
"templateID: " + this.templateID + "\r\n" + |
|
"item_name_override: " + this.item_name_override + "\r\n" + |
|
"prefixToken: " + this.prefixToken + "\r\n" + |
|
"suffixToken: " + this.suffixToken + "\r\n" + |
|
"rollingDuration: " + duration + "\r\n" + |
|
"completionTime: " + localDateTime + "\r\n" + |
|
"runCompleted: " + this.runCompleted + "\r\n" + |
|
"runCanceled: " + this.runCanceled + "\r\n"; |
|
|
|
return outSTring; |
|
} |
|
|
|
}
|
|
|