package engine.devcmd.cmds; import engine.Enum; import engine.devcmd.AbstractDevCmd; import engine.gameManager.*; import engine.objects.*; import java.util.ArrayList; import java.util.concurrent.ThreadLocalRandom; import static engine.loot.LootManager.getGenTableItem; public class simulateBootyCmd extends AbstractDevCmd { public simulateBootyCmd() { super("simulatebooty"); } @Override protected void _doCmd(PlayerCharacter pc, String[] words, AbstractGameObject target) { // Arg Count Check if (words.length != 1) { this.sendUsage(pc); return; } if (pc == null) { return; } int iterations = 100; String newline = "\r\n "; if(words[1].length() > 0){ try{ iterations = Integer.parseInt(words[1]); }catch(Exception ex){ iterations = 100; } } boolean isZone = false; if(words[2].length() > 0 && words[2].toLowerCase().equals("zone")){ isZone = true; } try { int targetID = Integer.parseInt(words[0]); Building b = BuildingManager.getBuilding(targetID); if (b == null) throwbackError(pc, "Building with ID " + targetID + " not found"); else target = b; } catch (Exception e) { } if (target == null) { throwbackError(pc, "Target is unknown or of an invalid type." + newline + "Type ID: 0x" + pc.getLastTargetType().toString() + " Table ID: " + pc.getLastTargetID()); return; } Enum.GameObjectType objType = target.getObjectType(); String output; output = "Booty Simulation:" + newline; switch (objType) { case Building: break; case PlayerCharacter: break; case NPC: break; case Mob: Mob mob = (Mob) target; ArrayList GlassItems = new ArrayList(); ArrayList Resources = new ArrayList(); ArrayList Runes = new ArrayList(); ArrayList Contracts = new ArrayList(); ArrayList Offerings = new ArrayList(); ArrayList OtherDrops = new ArrayList(); int failures = 0; //for(int i = 0; i < iterations; ++i) { ArrayList simulatedBooty = new ArrayList<>(); if(isZone == false){ //simulate individual mob booty simulatedBooty = simulateMobBooty(mob, iterations); } else { simulatedBooty = simulateZoneBooty(mob.getParentZone(), iterations); } try { for (Item lootItem : simulatedBooty) { switch (lootItem.getItemBase().getType()) { case CONTRACT: //CONTRACT Contracts.add(lootItem); break; case OFFERING: //OFFERING Offerings.add(lootItem); break; case RESOURCE: //RESOURCE Resources.add(lootItem); break; case RUNE: //RUNE Runes.add(lootItem); break; case WEAPON: //WEAPON if (lootItem.getItemBase().isGlass()) { GlassItems.add(lootItem); } else { OtherDrops.add(lootItem); } break; default: OtherDrops.add(lootItem); break; } } } catch (Exception ex) { failures++; } //} output += "GLASS ITEMS DROPPED: " + GlassItems.size() + newline; output += "RESOURCE STACKS DROPPED: " + Resources.size() + newline; output += "RUNES DROPPED: " + Runes.size() + newline; output += "CONTRACTS DROPPED: " + Contracts.size() + newline; output += "OFFERINGS DROPPED: " + Offerings.size() + newline; output += "OTHER ITEMS DROPPED: " + OtherDrops.size() + newline; output += "FAILED ROLLS: " + failures + newline; output += "Glass Drops:" + newline; for(Item glassItem : GlassItems){ output += glassItem.getName() + newline; } output += "Rune Drops:" + newline; for(Item runeItem : Runes){ output += runeItem.getName() + newline; } output += "Contract Drops:" + newline; for(Item contractItem : Contracts){ output += contractItem.getName() + newline; } output += "Resource Drops:" + newline; for(Item resourceItem : Contracts){ output += resourceItem.getName() + newline; } break; } throwbackInfo(pc, output); } @Override protected String _getHelpString() { return "simulates mob loot X amount of times for mob or zone"; } @Override protected String _getUsageString() { return "' ./simluatebooty "; } public static ArrayList simulateMobBooty(Mob mob, int iterations){ ArrayList producedBooty = new ArrayList<>(); for(int i = 0; i < iterations; ++i) { mob.loadInventory(); for (Item lootItem : mob.getCharItemManager().getInventory()) { producedBooty.add(lootItem); } } return producedBooty; } public static ArrayList simulateZoneBooty(Zone zone, int iterations){ ArrayList producedBooty = new ArrayList<>(); for(Mob mob : zone.zoneMobSet) { for (int i = 0; i < iterations; ++i) { mob.loadInventory(); for (Item lootItem : mob.getCharItemManager().getInventory()) { producedBooty.add(lootItem); } } } return producedBooty; } }