public void actionPerformed(final ActionEvent e) { if (!this.isValidEvent(e)) { return; } RequestThread.runInParallel(action); }
@Override public void run(final String cmd, String parameters) { parameters = parameters.trim(); if (parameters.equals("")) { KoLmafia.updateDisplay(MafiaState.ERROR, "What stance do you wish to take?"); return; } String[] split = parameters.split(","); if (split.length < 1 || split.length > 3) { KoLmafia.updateDisplay(MafiaState.ERROR, "Specify from 1 to 3 pool games"); return; } int[] option = new int[split.length]; for (int i = 0; i < split.length; ++i) { String tag = split[i].trim(); option[i] = ClanLoungeRequest.findPoolGame(tag); if (option[i] == 0) { KoLmafia.updateDisplay( MafiaState.ERROR, "I don't understand what a '" + tag + "' pool game is."); return; } } for (int i = 0; i < option.length; ++i) { RequestThread.postRequest(new ClanLoungeRequest(ClanLoungeRequest.POOL_TABLE, option[i])); } }
public static void logout() { if (LogoutManager.isRunning) { return; } LogoutManager.isRunning = true; // If there's no user to worry about, we're done now. String userName = KoLCharacter.getUserName(); if (userName == null || userName.equals("")) { return; } if (!KoLmafia.isSessionEnding()) { LogoutManager.prepare(); } KoLmafia.updateDisplay("Preparing for logout..."); // Shut down chat-related activity BuffBotHome.setBuffBotActive(false); ChatManager.dispose(); // Run on-logout scripts String scriptSetting = Preferences.getString("logoutScript"); if (!scriptSetting.equals("")) { KoLmafia.updateDisplay("Executing logout script..."); KoLmafiaCLI.DEFAULT_SHELL.executeLine(scriptSetting); } if (Preferences.getBoolean("sharePriceData")) { KoLmafia.updateDisplay("Sharing mall price data with other users..."); KoLmafiaCLI.DEFAULT_SHELL.executeLine( "spade prices http://kolmafia.us/scripts/updateprices.php"); } // Clear out user data RequestLogger.closeSessionLog(); RequestLogger.closeMirror(); GenericRequest.reset(); KoLCharacter.reset(""); // Execute the logout request RequestThread.postRequest(new LogoutRequest()); KoLmafia.updateDisplay("Logout completed."); RequestLogger.closeDebugLog(); LogoutManager.isRunning = false; }
@Override public void actionConfirmed() { AdventureResult[] items = this.getDesiredItems("Consume"); if (items == null) { return; } for (int i = 0; i < items.length; ++i) { RequestThread.postRequest(UseItemRequest.getInstance(items[i])); } }
public void keyReleased(final KeyEvent e) { if (e.isConsumed()) { return; } if (e.getKeyCode() != KeyEvent.VK_ENTER) { return; } RequestThread.runInParallel(action); e.consume(); }
private void buff(boolean maxBuff) { UseSkillRequest request = (UseSkillRequest) SkillBuffFrame.this.skillSelect.getSelectedItem(); if (request == null) { return; } String buffName = request.getSkillName(); if (buffName == null) { return; } String[] targets = StaticEntity.getClient() .extractTargets((String) SkillBuffFrame.this.targetSelect.getSelectedItem()); int buffCount = !maxBuff ? InputFieldUtilities.getValue(SkillBuffFrame.this.amountField, 1) : Integer.MAX_VALUE; if (buffCount == 0) { return; } SpecialOutfit.createImplicitCheckpoint(); if (targets.length == 0) { RequestThread.postRequest( UseSkillRequest.getInstance(buffName, KoLCharacter.getUserName(), buffCount)); } else { for (int i = 0; i < targets.length && KoLmafia.permitsContinue(); ++i) { if (targets[i] != null) { RequestThread.postRequest(UseSkillRequest.getInstance(buffName, targets[i], buffCount)); } } } SpecialOutfit.restoreImplicitCheckpoint(); }
@Override public void run(final String cmd, final String parameters) { String[] split = parameters.split(" "); // Cure "HP" or "MP" String typeString = split[0]; String type; if (typeString.equalsIgnoreCase("hp")) { type = GalaktikRequest.HP; } else if (typeString.equalsIgnoreCase("mp")) { type = GalaktikRequest.MP; } else { KoLmafia.updateDisplay(MafiaState.ERROR, "Unknown Doc Galaktik request <" + parameters + ">"); return; } int amount = split.length == 1 ? 0 : StringUtilities.parseInt(split[1]); RequestThread.postRequest(new GalaktikRequest(type, amount)); }
public static void use(final String command, String parameters) { if (parameters.equals("")) { return; } boolean either = parameters.startsWith("either "); if (either) { parameters = parameters.substring(7).trim(); } if (command.equals("eat") || command.equals("eatsilent")) { if (KoLCharacter.inBadMoon() && KitchenCommand.visit(parameters)) { return; } if (KoLCharacter.canadiaAvailable() && RestaurantCommand.makeChezSnooteeRequest(parameters)) { return; } } if (command.equals("drink") || command.equals("overdrink")) { if (KoLCharacter.inBadMoon() && KitchenCommand.visit(parameters)) { return; } if (KoLCharacter.gnomadsAvailable() && RestaurantCommand.makeMicroBreweryRequest(parameters)) { return; } } // Now, handle the instance where the first item is actually // the quantity desired, and the next is the amount to use if (command.equals("eat") || command.equals("eatsilent") || command.equals("ghost")) { ItemFinder.setMatchType(ItemFinder.FOOD_MATCH); } else if (command.equals("drink") || command.equals("overdrink") || command.equals("hobo")) { ItemFinder.setMatchType(ItemFinder.BOOZE_MATCH); } else if (command.equals("slimeling")) { ItemFinder.setMatchType(ItemFinder.EQUIP_MATCH); } else { ItemFinder.setMatchType(ItemFinder.USE_MATCH); } Object[] itemList = ItemFinder.getMatchingItemList(KoLConstants.inventory, parameters); ItemFinder.setMatchType(ItemFinder.ANY_MATCH); for (int level = either ? 0 : 2; level <= 2; ++level) { // level=0: use only items in inventory, exit on first success // level=1: buy/make as needed, exit on first success // level=2: use all items in list, buy/make as needed for (int i = 0; i < itemList.length; ++i) { AdventureResult currentMatch = (AdventureResult) itemList[i]; int consumpt = ItemDatabase.getConsumptionType(currentMatch.getItemId()); if (command.equals("eat") && consumpt == KoLConstants.CONSUME_FOOD_HELPER) { // allowed } else if (command.equals("eat") || command.equals("ghost")) { if (consumpt != KoLConstants.CONSUME_EAT) { KoLmafia.updateDisplay( MafiaState.ERROR, currentMatch.getName() + " cannot be consumed."); return; } } if (command.equals("drink") && consumpt == KoLConstants.CONSUME_DRINK_HELPER) { // allowed } else if (command.equals("drink") || command.equals("hobo")) { if (consumpt != KoLConstants.CONSUME_DRINK) { KoLmafia.updateDisplay( MafiaState.ERROR, currentMatch.getName() + " is not an alcoholic beverage."); return; } } if (command.equals("use")) { switch (consumpt) { case KoLConstants.CONSUME_EAT: case KoLConstants.CONSUME_FOOD_HELPER: KoLmafia.updateDisplay(MafiaState.ERROR, currentMatch.getName() + " must be eaten."); return; case KoLConstants.CONSUME_DRINK: case KoLConstants.CONSUME_DRINK_HELPER: KoLmafia.updateDisplay( MafiaState.ERROR, currentMatch.getName() + " is an alcoholic beverage."); return; } } int have = currentMatch.getCount(KoLConstants.inventory); if (level > 0 || have > 0) { if (level == 0 && have < currentMatch.getCount()) { currentMatch = currentMatch.getInstance(have); } if (KoLmafiaCLI.isExecutingCheckOnlyCommand) { RequestLogger.printLine(currentMatch.toString()); } else { UseItemRequest request = command.equals("hobo") ? UseItemRequest.getInstance(KoLConstants.CONSUME_HOBO, currentMatch) : command.equals("ghost") ? UseItemRequest.getInstance(KoLConstants.CONSUME_GHOST, currentMatch) : command.equals("slimeling") ? UseItemRequest.getInstance(KoLConstants.CONSUME_SLIME, currentMatch) : UseItemRequest.getInstance(currentMatch); RequestThread.postRequest(request); } if (level < 2) { return; } } } } }
/** * Initializes the <code>KoLmafia</code> session. Called after the login has been confirmed to * notify that the login was successful, the user-specific settings should be loaded, and the user * can begin adventuring. */ public static void initialize(final String username) { // Load the JSON string first, so we can use it, if necessary. ActionBarManager.loadJSONString(); // Initialize the variables to their initial states to avoid // null pointers getting thrown all over the place // Do this first to reset per-player item aliases ItemDatabase.reset(); KoLCharacter.reset(username); // Get rid of cached password hashes in KoLAdventures AdventureDatabase.refreshAdventureList(); // Reset all per-player information ChatManager.reset(); MailManager.clearMailboxes(); StoreManager.clearCache(); DisplayCaseManager.clearCache(); ClanManager.clearCache(); CampgroundRequest.reset(); MushroomManager.reset(); HermitRequest.initialize(); SpecialOutfit.forgetCheckpoints(); KoLmafia.updateDisplay("Initializing session for " + username + "..."); Preferences.setString("lastUsername", username); // Perform requests to read current character's data StaticEntity.getClient().refreshSession(); // Reset the session tally and encounter list StaticEntity.getClient().resetSession(); // Open the session log and indicate that we've logged in. RequestLogger.openSessionLog(); if (Preferences.getBoolean("logStatusOnLogin")) { KoLmafiaCLI.DEFAULT_SHELL.executeCommand("log", "snapshot"); } // If the password hash is non-null, then that means you // might be mid-transition. if (GenericRequest.passwordHash.equals("")) { PasswordHashRequest request = new PasswordHashRequest("lchat.php"); RequestThread.postRequest(request); } ContactManager.registerPlayerId(username, String.valueOf(KoLCharacter.getUserId())); if (Preferences.getString("spadingData").length() > 10) { KoLmafia.updateDisplay( "Some data has been collected that may be of interest " + "to others. Please type `spade' to examine and submit or delete this data."); } // Rebuild Scripts menu if needed GenericFrame.compileScripts(); if (StaticEntity.getClient() instanceof KoLmafiaGUI) { KoLmafiaGUI.intializeMainInterfaces(); } else if (Preferences.getString("initialFrames").indexOf("LocalRelayServer") != -1) { KoLmafiaGUI.constructFrame("LocalRelayServer"); } String updateText; String holiday = HolidayDatabase.getHoliday(true); String moonEffect = HolidayDatabase.getMoonEffect(); if (holiday.equals("")) { updateText = moonEffect; } else { updateText = holiday + ", " + moonEffect; } KoLmafia.updateDisplay(updateText); if (MailManager.hasNewMessages()) { KoLmafia.updateDisplay("You have new mail."); } }
public static boolean makeChezSnooteeRequest(final String parameters) { if (!KoLCharacter.canadiaAvailable()) { KoLmafia.updateDisplay( "Since you have no access to Little Canadia, you may not visit the restaurant."); return false; } if (KoLConstants.restaurantItems.isEmpty()) { ChezSnooteeRequest.getMenu(); } if (parameters.equals("")) { RequestLogger.printLine("Today's Special: " + ChezSnooteeRequest.getDailySpecial()); return false; } String[] splitParameters = AbstractCommand.splitCountAndName(parameters); String countString = splitParameters[0]; String nameString = splitParameters[1]; if (nameString.equalsIgnoreCase("daily special")) { nameString = ChezSnooteeRequest.getDailySpecial().getName(); } else if (nameString.startsWith("\u00B6")) { String name = ItemDatabase.getItemName(StringUtilities.parseInt(nameString.substring(1))); if (name != null) { nameString = name; } } nameString = nameString.toLowerCase(); for (int i = 0; i < KoLConstants.restaurantItems.size(); ++i) { String name = (String) KoLConstants.restaurantItems.get(i); if (!StringUtilities.substringMatches(name.toLowerCase(), nameString, false)) { continue; } if (KoLmafiaCLI.isExecutingCheckOnlyCommand) { RequestLogger.printLine(name); return true; } int count = countString == null || countString.length() == 0 ? 1 : StringUtilities.parseInt(countString); if (count == 0) { int fullness = ItemDatabase.getFullness(name); if (fullness > 0) { count = (KoLCharacter.getFullnessLimit() - KoLCharacter.getFullness()) / fullness; } } for (int j = 0; j < count; ++j) { RequestThread.postRequest(new ChezSnooteeRequest(name)); } return true; } return false; }
@Override public void run(final String cmd, final String parameters) { String[] params = parameters.trim().split("\\s+"); if (params.length < 2) return; // Do something better here String command = params[0]; String input = params[1]; String output; if (input.equals("")) { output = command; } if (command.equals("enhance")) { int enhanceLimit = 1; String chips = Preferences.getString("sourceTerminalChips"); String files = Preferences.getString("sourceTerminalEnhanceKnown"); if (chips.contains("CRAM")) enhanceLimit++; if (chips.contains("SCRAM")) enhanceLimit++; if (Preferences.getInteger("_sourceTerminalEnhanceUses") >= enhanceLimit) { KoLmafia.updateDisplay( KoLConstants.MafiaState.ERROR, "Source Terminal enhance limit reached"); return; } if (input.startsWith("item")) { output = "enhance items.enh"; } else if (input.startsWith("init")) { output = "enhance init.enh"; } else if (input.startsWith("meat")) { output = "enhance meat.enh"; } else if (input.startsWith("sub") && files.contains("substats.enh")) { output = "enhance substats.enh"; } else if (input.startsWith("damage") && files.contains("damage.enh")) { output = "enhance damage.enh"; } else if (input.startsWith("crit") && files.contains("critical.enh")) { output = "enhance critical.enh"; } else { KoLmafia.updateDisplay( KoLConstants.MafiaState.ERROR, input + " is not a valid enhance target."); return; } } else if (command.equals("enquiry")) { String files = Preferences.getString("sourceTerminalEnquiryKnown"); if (input.startsWith("fam")) { output = "enquiry familiar.enq"; } else if (input.startsWith("mon")) { output = "enquiry monsters.enq"; } else if (input.startsWith("protect") && files.contains("protect.enq")) { output = "enquiry protect.enq"; } else if (input.startsWith("stat") && files.contains("stats.enq")) { output = "enquiry stats.enq"; } else { KoLmafia.updateDisplay( KoLConstants.MafiaState.ERROR, input + " is not a valid enquiry target."); return; } } else if (command.equals("educate")) { String files = Preferences.getString("sourceTerminalEducateKnown"); if (input.startsWith("compr") && files.contains("compress.edu")) { output = "educate compress.edu"; } else if (input.startsWith("digit")) { output = "educate digitize.edu"; } else if (input.startsWith("dup") && files.contains("duplicate.edu")) { output = "educate duplicate.edu"; } else if (input.startsWith("extr")) { output = "educate extract.edu"; } else if (input.startsWith("port") && files.contains("portscan.edu")) { output = "educate portscan.edu"; } else if (input.startsWith("turbo") && files.contains("turbo.edu")) { output = "educate turbo.edu"; } else { KoLmafia.updateDisplay( KoLConstants.MafiaState.ERROR, input + " is not a valid educate target."); return; } } else if (command.equals("extrude")) { if (Preferences.getInteger("_sourceTerminalExtrudes") >= 3) { KoLmafia.updateDisplay( KoLConstants.MafiaState.ERROR, "Source Terminal extrude limit reached"); return; } String files = Preferences.getString("sourceTerminalExtrudeKnown"); if (input.startsWith("booze") || input.contains("gibson")) { output = "extrude -f booze.ext"; } else if (input.startsWith("food") || input.contains("cookie")) { output = "extrude -f food.ext"; } else if (input.startsWith("fam") && files.contains("familiar.ext")) { output = "extrude -f familiar.ext"; } else if (input.startsWith("goggles")) { output = "extrude -f goggles.ext"; } else if (input.startsWith("cram") && files.contains("cram.ext")) { output = "extrude -f cram.ext"; } else if (input.startsWith("dram") && files.contains("dram.ext")) { output = "extrude -f dram.ext"; } else if (input.startsWith("gram") && files.contains("gram.ext")) { output = "extrude -f gram.ext"; } else if (input.startsWith("pram") && files.contains("pram.ext")) { output = "extrude -f pram.ext"; } else if (input.startsWith("spam") && files.contains("spam.ext")) { output = "extrude -f spam.ext"; } else if (input.startsWith("tram") && files.contains("tram.ext")) { output = "extrude -f tram.ext"; } else { KoLmafia.updateDisplay( KoLConstants.MafiaState.ERROR, input + " is not a valid extrude target."); return; } } else { KoLmafia.updateDisplay( KoLConstants.MafiaState.ERROR, command + " is not a valid terminal command."); return; } RequestThread.postRequest(new TerminalRequest(output)); }
public static void initialize() { if (!StandardRequest.initialized && KoLCharacter.getLimitmode() == null) { RequestThread.postRequest(StandardRequest.INSTANCE); } }
public static void cleanup() { int itemCount; AdventureResult currentItem; Object[] items = KoLConstants.junkList.toArray(); // Before doing anything else, go through the list of items // which are traditionally used and use them. Also, if the item // can be untinkered, it's usually more beneficial to untinker // first. boolean madeUntinkerRequest = false; boolean canUntinker = UntinkerRequest.canUntinker(); ArrayList closetList = new ArrayList(); for (int i = 0; i < items.length; ++i) { if (!KoLConstants.singletonList.contains(items[i]) || KoLConstants.closet.contains(items[i])) { continue; } if (KoLConstants.inventory.contains(items[i])) { closetList.add(((AdventureResult) items[i]).getInstance(1)); } } if (closetList.size() > 0) { RequestThread.postRequest( new ClosetRequest(ClosetRequest.INVENTORY_TO_CLOSET, closetList.toArray())); } do { madeUntinkerRequest = false; for (int i = 0; i < items.length; ++i) { currentItem = (AdventureResult) items[i]; itemCount = currentItem.getCount(KoLConstants.inventory); if (itemCount == 0) { continue; } if (canUntinker && (ConcoctionDatabase.getMixingMethod(currentItem) & KoLConstants.CT_MASK) == KoLConstants.COMBINE) { RequestThread.postRequest(new UntinkerRequest(currentItem.getItemId())); madeUntinkerRequest = true; continue; } switch (currentItem.getItemId()) { case 184: // briefcase case 533: // Gnollish toolbox case 553: // 31337 scroll case 604: // Penultimate fantasy chest case 621: // Warm Subject gift certificate case 831: // small box case 832: // large box case 1768: // Gnomish toolbox case 1917: // old leather wallet case 1918: // old coin purse case 2057: // black pension check case 2058: // black picnic basket case 2511: // Frat Army FGF case 2512: // Hippy Army MPE case 2536: // canopic jar case 2612: // ancient vinyl coin purse RequestThread.postRequest( UseItemRequest.getInstance(currentItem.getInstance(itemCount))); break; } } } while (madeUntinkerRequest); // Now you've got all the items used up, go ahead and prepare to // pulverize strong equipment. int itemPower; if (KoLCharacter.hasSkill("Pulverize")) { boolean hasMalusAccess = KoLCharacter.isMuscleClass() && !KoLCharacter.isAvatarOfBoris(); for (int i = 0; i < items.length; ++i) { currentItem = (AdventureResult) items[i]; if (KoLConstants.mementoList.contains(currentItem)) { continue; } if (currentItem.getName().startsWith("antique")) { continue; } itemCount = currentItem.getCount(KoLConstants.inventory); itemPower = EquipmentDatabase.getPower(currentItem.getItemId()); if (itemCount > 0 && !NPCStoreDatabase.contains(currentItem.getName(), false)) { switch (ItemDatabase.getConsumptionType(currentItem.getItemId())) { case KoLConstants.EQUIP_HAT: case KoLConstants.EQUIP_PANTS: case KoLConstants.EQUIP_SHIRT: case KoLConstants.EQUIP_WEAPON: case KoLConstants.EQUIP_OFFHAND: if (InventoryManager.hasItem(ItemPool.TENDER_HAMMER) && itemPower >= 100 || hasMalusAccess && itemPower > 10) { RequestThread.postRequest(new PulverizeRequest(currentItem.getInstance(itemCount))); } break; case KoLConstants.EQUIP_FAMILIAR: case KoLConstants.EQUIP_ACCESSORY: if (InventoryManager.hasItem(ItemPool.TENDER_HAMMER)) { RequestThread.postRequest(new PulverizeRequest(currentItem.getInstance(itemCount))); } break; default: if (currentItem.getName().endsWith("powder") || currentItem.getName().endsWith("nuggets")) { RequestThread.postRequest(new PulverizeRequest(currentItem.getInstance(itemCount))); } break; } } } } // Now you've got all the items used up, go ahead and prepare to // sell anything that's left. ArrayList sellList = new ArrayList(); for (int i = 0; i < items.length; ++i) { currentItem = (AdventureResult) items[i]; if (KoLConstants.mementoList.contains(currentItem)) { continue; } if (currentItem.getItemId() == ItemPool.MEAT_PASTE) { continue; } itemCount = currentItem.getCount(KoLConstants.inventory); if (itemCount > 0) { sellList.add(currentItem.getInstance(itemCount)); } } if (!sellList.isEmpty()) { RequestThread.postRequest(new AutoSellRequest(sellList.toArray())); sellList.clear(); } if (!KoLCharacter.canInteract()) { for (int i = 0; i < items.length; ++i) { currentItem = (AdventureResult) items[i]; if (KoLConstants.mementoList.contains(currentItem)) { continue; } if (currentItem.getItemId() == ItemPool.MEAT_PASTE) { continue; } itemCount = currentItem.getCount(KoLConstants.inventory) - 1; if (itemCount > 0) { sellList.add(currentItem.getInstance(itemCount)); } } if (!sellList.isEmpty()) { RequestThread.postRequest(new AutoSellRequest(sellList.toArray())); } } }