Merge remote-tracking branch 'runelite/master'
This commit is contained in:
@@ -393,7 +393,7 @@ public class RuneLite
|
||||
if (!isOutdated)
|
||||
{
|
||||
// Add core overlays
|
||||
WidgetOverlay.createOverlays(client).forEach(overlayManager::add);
|
||||
WidgetOverlay.createOverlays(overlayManager, client).forEach(overlayManager::add);
|
||||
overlayManager.add(worldMapOverlay.get());
|
||||
eventBus.register(worldMapOverlay.get());
|
||||
overlayManager.add(tooltipOverlay.get());
|
||||
|
||||
@@ -59,7 +59,7 @@ class InteractHighlightOverlay extends Overlay
|
||||
this.modelOutlineRenderer = modelOutlineRenderer;
|
||||
setPosition(OverlayPosition.DYNAMIC);
|
||||
setLayer(OverlayLayer.ABOVE_SCENE);
|
||||
setPriority(OverlayPriority.LOW);
|
||||
setPriority(OverlayPriority.HIGH);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -55,7 +55,7 @@ public class ItemStatOverlay extends Overlay
|
||||
{
|
||||
// Unarmed attack speed is 4
|
||||
@VisibleForTesting
|
||||
static final ItemStats UNARMED = new ItemStats(false, true, 0, 0,
|
||||
static final ItemStats UNARMED = new ItemStats(true, 0, 0,
|
||||
ItemEquipmentStats.builder()
|
||||
.aspeed(4)
|
||||
.build());
|
||||
|
||||
@@ -147,6 +147,7 @@ public class LootTrackerPlugin extends Plugin
|
||||
|
||||
// Chest loot handling
|
||||
private static final String CHEST_LOOTED_MESSAGE = "You find some treasure in the chest!";
|
||||
private static final Pattern ROGUES_CHEST_PATTERN = Pattern.compile("You find (a|some)([a-z\\s]*) inside.");
|
||||
private static final Pattern LARRAN_LOOTED_PATTERN = Pattern.compile("You have opened Larran's (big|small) chest .*");
|
||||
// Used by Stone Chest, Isle of Souls chest, Dark Chest
|
||||
private static final String OTHER_CHEST_LOOTED_MESSAGE = "You steal some loot from the chest.";
|
||||
@@ -167,6 +168,7 @@ public class LootTrackerPlugin extends Plugin
|
||||
put(7323, "Grubby Chest").
|
||||
put(8593, "Isle of Souls Chest").
|
||||
put(7827, "Dark Chest").
|
||||
put(13117, "Rogues' Chest").
|
||||
build();
|
||||
|
||||
// Shade chest loot handling
|
||||
@@ -646,7 +648,7 @@ public class LootTrackerPlugin extends Plugin
|
||||
|
||||
if (message.equals(CHEST_LOOTED_MESSAGE) || message.equals(OTHER_CHEST_LOOTED_MESSAGE)
|
||||
|| message.equals(DORGESH_KAAN_CHEST_LOOTED_MESSAGE) || message.startsWith(GRUBBY_CHEST_LOOTED_MESSAGE)
|
||||
|| LARRAN_LOOTED_PATTERN.matcher(message).matches())
|
||||
|| LARRAN_LOOTED_PATTERN.matcher(message).matches() || ROGUES_CHEST_PATTERN.matcher(message).matches())
|
||||
{
|
||||
final int regionID = client.getLocalPlayer().getWorldLocation().getRegionID();
|
||||
if (!CHEST_EVENT_TYPES.containsKey(regionID))
|
||||
|
||||
@@ -27,6 +27,7 @@ package net.runelite.client.plugins.npchighlight;
|
||||
|
||||
import com.google.common.annotations.VisibleForTesting;
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
import com.google.inject.Binder;
|
||||
import com.google.inject.Provides;
|
||||
import java.awt.Color;
|
||||
import java.time.Instant;
|
||||
@@ -38,6 +39,7 @@ import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.function.Predicate;
|
||||
import javax.inject.Inject;
|
||||
import lombok.AccessLevel;
|
||||
import lombok.Getter;
|
||||
@@ -77,7 +79,7 @@ import net.runelite.client.util.WildcardMatcher;
|
||||
tags = {"highlight", "minimap", "npcs", "overlay", "respawn", "tags"}
|
||||
)
|
||||
@Slf4j
|
||||
public class NpcIndicatorsPlugin extends Plugin
|
||||
public class NpcIndicatorsPlugin extends Plugin implements NpcIndicatorsService
|
||||
{
|
||||
private static final int MAX_ACTOR_VIEW_RANGE = 15;
|
||||
|
||||
@@ -173,12 +175,20 @@ public class NpcIndicatorsPlugin extends Plugin
|
||||
*/
|
||||
private boolean skipNextSpawnCheck = false;
|
||||
|
||||
private final List<Predicate<NPC>> higlightPredicates = new ArrayList<>();
|
||||
|
||||
@Provides
|
||||
NpcIndicatorsConfig provideConfig(ConfigManager configManager)
|
||||
{
|
||||
return configManager.getConfig(NpcIndicatorsConfig.class);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void configure(Binder binder)
|
||||
{
|
||||
binder.bind(NpcIndicatorsService.class).toInstance(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void startUp() throws Exception
|
||||
{
|
||||
@@ -187,7 +197,7 @@ public class NpcIndicatorsPlugin extends Plugin
|
||||
clientThread.invoke(() ->
|
||||
{
|
||||
skipNextSpawnCheck = true;
|
||||
rebuildAllNpcs();
|
||||
rebuild();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -230,7 +240,7 @@ public class NpcIndicatorsPlugin extends Plugin
|
||||
return;
|
||||
}
|
||||
|
||||
clientThread.invoke(this::rebuildAllNpcs);
|
||||
clientThread.invoke(this::rebuild);
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
@@ -394,7 +404,23 @@ public class NpcIndicatorsPlugin extends Plugin
|
||||
memorizeNpc(npc);
|
||||
spawnedNpcsThisTick.add(npc);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
for (Predicate<NPC> predicate : higlightPredicates)
|
||||
{
|
||||
if (predicate.test(npc))
|
||||
{
|
||||
highlightedNpcs.add(npc);
|
||||
if (!client.isInInstancedRegion())
|
||||
{
|
||||
memorizeNpc(npc);
|
||||
spawnedNpcsThisTick.add(npc);
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
@@ -534,8 +560,8 @@ public class NpcIndicatorsPlugin extends Plugin
|
||||
return Text.fromCSV(configNpcs);
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
void rebuildAllNpcs()
|
||||
@Override
|
||||
public void rebuild()
|
||||
{
|
||||
highlights = getHighlights();
|
||||
highlightedNpcs.clear();
|
||||
@@ -548,6 +574,7 @@ public class NpcIndicatorsPlugin extends Plugin
|
||||
return;
|
||||
}
|
||||
|
||||
outer:
|
||||
for (NPC npc : client.getNpcs())
|
||||
{
|
||||
final String npcName = npc.getName();
|
||||
@@ -573,6 +600,19 @@ public class NpcIndicatorsPlugin extends Plugin
|
||||
continue;
|
||||
}
|
||||
|
||||
for (Predicate<NPC> predicate : higlightPredicates)
|
||||
{
|
||||
if (predicate.test(npc))
|
||||
{
|
||||
if (!client.isInInstancedRegion())
|
||||
{
|
||||
memorizeNpc(npc);
|
||||
}
|
||||
highlightedNpcs.add(npc);
|
||||
continue outer;
|
||||
}
|
||||
}
|
||||
|
||||
// NPC is not highlighted
|
||||
memorizedNpcs.remove(npc.getIndex());
|
||||
}
|
||||
@@ -680,4 +720,16 @@ public class NpcIndicatorsPlugin extends Plugin
|
||||
despawnedNpcsThisTick.clear();
|
||||
teleportGraphicsObjectSpawnedThisTick.clear();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void registerHighlighter(Predicate<NPC> p)
|
||||
{
|
||||
higlightPredicates.add(p);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void unregisterHighlighter(Predicate<NPC> p)
|
||||
{
|
||||
higlightPredicates.remove(p);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Copyright (c) 2021, Adam <Adam@sigterm.info>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
package net.runelite.client.plugins.npchighlight;
|
||||
|
||||
import java.util.function.Predicate;
|
||||
import net.runelite.api.NPC;
|
||||
|
||||
public interface NpcIndicatorsService
|
||||
{
|
||||
void registerHighlighter(Predicate<NPC> p);
|
||||
void unregisterHighlighter(Predicate<NPC> p);
|
||||
void rebuild();
|
||||
}
|
||||
@@ -25,8 +25,6 @@
|
||||
*/
|
||||
package net.runelite.client.plugins.slayer;
|
||||
|
||||
import java.awt.Color;
|
||||
import net.runelite.client.config.Alpha;
|
||||
import net.runelite.client.config.Config;
|
||||
import net.runelite.client.config.ConfigGroup;
|
||||
import net.runelite.client.config.ConfigItem;
|
||||
@@ -101,18 +99,6 @@ public interface SlayerConfig extends Config
|
||||
return false;
|
||||
}
|
||||
|
||||
@Alpha
|
||||
@ConfigItem(
|
||||
position = 6,
|
||||
keyName = "targetColor",
|
||||
name = "Target Color",
|
||||
description = "Color of the highlighted targets"
|
||||
)
|
||||
default Color getTargetColor()
|
||||
{
|
||||
return Color.RED;
|
||||
}
|
||||
|
||||
@ConfigItem(
|
||||
position = 7,
|
||||
keyName = "weaknessPrompt",
|
||||
|
||||
@@ -39,9 +39,11 @@ import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.ScheduledExecutorService;
|
||||
import java.util.function.Predicate;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import javax.inject.Inject;
|
||||
import javax.inject.Named;
|
||||
import joptsimple.internal.Strings;
|
||||
import lombok.AccessLevel;
|
||||
import lombok.Getter;
|
||||
@@ -60,6 +62,7 @@ import static net.runelite.api.Skill.SLAYER;
|
||||
import net.runelite.api.coords.WorldPoint;
|
||||
import net.runelite.api.events.ActorDeath;
|
||||
import net.runelite.api.events.ChatMessage;
|
||||
import net.runelite.api.events.CommandExecuted;
|
||||
import net.runelite.api.events.GameStateChanged;
|
||||
import net.runelite.api.events.GameTick;
|
||||
import net.runelite.api.events.HitsplatApplied;
|
||||
@@ -81,18 +84,23 @@ import net.runelite.client.events.ChatInput;
|
||||
import net.runelite.client.events.ConfigChanged;
|
||||
import net.runelite.client.game.ItemManager;
|
||||
import net.runelite.client.plugins.Plugin;
|
||||
import net.runelite.client.plugins.PluginDependency;
|
||||
import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.plugins.npchighlight.NpcIndicatorsPlugin;
|
||||
import net.runelite.client.plugins.npchighlight.NpcIndicatorsService;
|
||||
import net.runelite.client.ui.overlay.OverlayManager;
|
||||
import net.runelite.client.ui.overlay.infobox.InfoBoxManager;
|
||||
import net.runelite.client.util.ColorUtil;
|
||||
import net.runelite.client.util.Text;
|
||||
import net.runelite.http.api.chat.ChatClient;
|
||||
import org.apache.commons.lang3.ArrayUtils;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Slayer",
|
||||
description = "Show additional slayer task related information",
|
||||
tags = {"combat", "notifications", "overlay", "tasks"}
|
||||
)
|
||||
@PluginDependency(NpcIndicatorsPlugin.class)
|
||||
@Slf4j
|
||||
public class SlayerPlugin extends Plugin
|
||||
{
|
||||
@@ -151,15 +159,9 @@ public class SlayerPlugin extends Plugin
|
||||
@Inject
|
||||
private ClientThread clientThread;
|
||||
|
||||
@Inject
|
||||
private TargetClickboxOverlay targetClickboxOverlay;
|
||||
|
||||
@Inject
|
||||
private TargetWeaknessOverlay targetWeaknessOverlay;
|
||||
|
||||
@Inject
|
||||
private TargetMinimapOverlay targetMinimapOverlay;
|
||||
|
||||
@Inject
|
||||
private ChatMessageManager chatMessageManager;
|
||||
|
||||
@@ -172,8 +174,15 @@ public class SlayerPlugin extends Plugin
|
||||
@Inject
|
||||
private ChatClient chatClient;
|
||||
|
||||
@Inject
|
||||
private NpcIndicatorsService npcIndicatorsService;
|
||||
|
||||
@Getter(AccessLevel.PACKAGE)
|
||||
private List<NPC> highlightedTargets = new ArrayList<>();
|
||||
private final List<NPC> targets = new ArrayList<>();
|
||||
|
||||
@Inject
|
||||
@Named("developerMode")
|
||||
boolean developerMode;
|
||||
|
||||
private final Set<NPC> taggedNpcs = new HashSet<>();
|
||||
private int taggedNpcsDiedPrevTick;
|
||||
@@ -201,13 +210,16 @@ public class SlayerPlugin extends Plugin
|
||||
private boolean loginFlag;
|
||||
private final List<String> targetNames = new ArrayList<>();
|
||||
|
||||
public final Predicate<NPC> isTarget = (n) -> config.highlightTargets() && targets.contains(n);
|
||||
|
||||
@Override
|
||||
protected void startUp() throws Exception
|
||||
{
|
||||
chatCommandManager.registerCommandAsync(TASK_COMMAND_STRING, this::taskLookup, this::taskSubmit);
|
||||
npcIndicatorsService.registerHighlighter(isTarget);
|
||||
|
||||
overlayManager.add(overlay);
|
||||
overlayManager.add(targetClickboxOverlay);
|
||||
overlayManager.add(targetWeaknessOverlay);
|
||||
overlayManager.add(targetMinimapOverlay);
|
||||
|
||||
if (client.getGameState() == GameState.LOGGED_IN)
|
||||
{
|
||||
@@ -224,23 +236,21 @@ public class SlayerPlugin extends Plugin
|
||||
getStringProfileConfig(SlayerConfig.TASK_LOC_KEY), false));
|
||||
}
|
||||
}
|
||||
|
||||
chatCommandManager.registerCommandAsync(TASK_COMMAND_STRING, this::taskLookup, this::taskSubmit);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void shutDown() throws Exception
|
||||
{
|
||||
chatCommandManager.unregisterCommand(TASK_COMMAND_STRING);
|
||||
npcIndicatorsService.unregisterHighlighter(isTarget);
|
||||
npcIndicatorsService.rebuild();
|
||||
|
||||
overlayManager.remove(overlay);
|
||||
overlayManager.remove(targetClickboxOverlay);
|
||||
overlayManager.remove(targetWeaknessOverlay);
|
||||
overlayManager.remove(targetMinimapOverlay);
|
||||
removeCounter();
|
||||
highlightedTargets.clear();
|
||||
targets.clear();
|
||||
taggedNpcs.clear();
|
||||
cachedXp = -1;
|
||||
|
||||
chatCommandManager.unregisterCommand(TASK_COMMAND_STRING);
|
||||
}
|
||||
|
||||
@Provides
|
||||
@@ -260,7 +270,7 @@ public class SlayerPlugin extends Plugin
|
||||
taskName = "";
|
||||
amount = 0;
|
||||
loginFlag = true;
|
||||
highlightedTargets.clear();
|
||||
targets.clear();
|
||||
taggedNpcs.clear();
|
||||
break;
|
||||
case LOGGED_IN:
|
||||
@@ -279,6 +289,16 @@ public class SlayerPlugin extends Plugin
|
||||
}
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
public void onCommandExecuted(CommandExecuted commandExecuted)
|
||||
{
|
||||
if (developerMode && commandExecuted.getCommand().equals("task"))
|
||||
{
|
||||
setTask(commandExecuted.getArguments()[0], 42, 42);
|
||||
log.debug("Set task to {}", commandExecuted.getArguments()[0]);
|
||||
}
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
int getIntProfileConfig(String key)
|
||||
{
|
||||
@@ -313,13 +333,16 @@ public class SlayerPlugin extends Plugin
|
||||
setProfileConfig(SlayerConfig.TASK_LOC_KEY, taskLocation);
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
@Subscribe(
|
||||
// Run prior to npc indicators plugin so targets is populated before the isTarget predicate is checked
|
||||
priority = 1
|
||||
)
|
||||
public void onNpcSpawned(NpcSpawned npcSpawned)
|
||||
{
|
||||
NPC npc = npcSpawned.getNpc();
|
||||
if (isTarget(npc))
|
||||
{
|
||||
highlightedTargets.add(npc);
|
||||
targets.add(npc);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -328,7 +351,7 @@ public class SlayerPlugin extends Plugin
|
||||
{
|
||||
NPC npc = npcDespawned.getNpc();
|
||||
taggedNpcs.remove(npc);
|
||||
highlightedTargets.remove(npc);
|
||||
targets.remove(npc);
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
@@ -541,7 +564,7 @@ public class SlayerPlugin extends Plugin
|
||||
{
|
||||
Actor actor = hitsplatApplied.getActor();
|
||||
Hitsplat hitsplat = hitsplatApplied.getHitsplat();
|
||||
if (hitsplat.getHitsplatType() == Hitsplat.HitsplatType.DAMAGE_ME && highlightedTargets.contains(actor))
|
||||
if (hitsplat.getHitsplatType() == Hitsplat.HitsplatType.DAMAGE_ME && targets.contains(actor))
|
||||
{
|
||||
// If the actor is in highlightedTargets it must be an NPC and also a task assignment
|
||||
taggedNpcs.add((NPC) actor);
|
||||
@@ -562,18 +585,25 @@ public class SlayerPlugin extends Plugin
|
||||
@Subscribe
|
||||
private void onConfigChanged(ConfigChanged event)
|
||||
{
|
||||
if (!event.getGroup().equals(SlayerConfig.GROUP_NAME) || !event.getKey().equals("infobox"))
|
||||
if (!event.getGroup().equals(SlayerConfig.GROUP_NAME))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (config.showInfobox())
|
||||
if (event.getKey().equals("infobox"))
|
||||
{
|
||||
clientThread.invoke(this::addCounter);
|
||||
if (config.showInfobox())
|
||||
{
|
||||
clientThread.invoke(this::addCounter);
|
||||
}
|
||||
else
|
||||
{
|
||||
removeCounter();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
removeCounter();
|
||||
npcIndicatorsService.rebuild();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -619,27 +649,25 @@ public class SlayerPlugin extends Plugin
|
||||
return false;
|
||||
}
|
||||
|
||||
String name = npc.getName();
|
||||
if (name == null)
|
||||
final NPCComposition composition = npc.getTransformedComposition();
|
||||
if (composition == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
name = name.toLowerCase();
|
||||
final String name = composition.getName()
|
||||
.replace('\u00A0', ' ')
|
||||
.toLowerCase();
|
||||
|
||||
for (String target : targetNames)
|
||||
{
|
||||
if (name.contains(target))
|
||||
{
|
||||
NPCComposition composition = npc.getTransformedComposition();
|
||||
|
||||
if (composition != null)
|
||||
if (ArrayUtils.contains(composition.getActions(), "Attack")
|
||||
// Pick action is for zygomite-fungi
|
||||
|| ArrayUtils.contains(composition.getActions(), "Pick"))
|
||||
{
|
||||
List<String> actions = Arrays.asList(composition.getActions());
|
||||
if (actions.contains("Attack") || actions.contains("Pick")) //Pick action is for zygomite-fungi
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -662,13 +690,13 @@ public class SlayerPlugin extends Plugin
|
||||
|
||||
private void rebuildTargetList()
|
||||
{
|
||||
highlightedTargets.clear();
|
||||
targets.clear();
|
||||
|
||||
for (NPC npc : client.getNpcs())
|
||||
{
|
||||
if (isTarget(npc))
|
||||
{
|
||||
highlightedTargets.add(npc);
|
||||
targets.add(npc);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -701,6 +729,7 @@ public class SlayerPlugin extends Plugin
|
||||
Task task = Task.getTask(name);
|
||||
rebuildTargetNames(task);
|
||||
rebuildTargetList();
|
||||
npcIndicatorsService.rebuild();
|
||||
}
|
||||
|
||||
private void addCounter()
|
||||
|
||||
@@ -1,85 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2018, James Swindle <wilingua@gmail.com>
|
||||
* Copyright (c) 2018, Adam <Adam@sigterm.info>
|
||||
* Copyright (c) 2018, Shaun Dreclin <shaundreclin@gmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
package net.runelite.client.plugins.slayer;
|
||||
|
||||
import java.awt.BasicStroke;
|
||||
import java.awt.Color;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.Shape;
|
||||
import java.util.List;
|
||||
import javax.inject.Inject;
|
||||
import net.runelite.api.NPC;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.ui.overlay.OverlayLayer;
|
||||
import net.runelite.client.ui.overlay.OverlayPosition;
|
||||
import net.runelite.client.util.ColorUtil;
|
||||
|
||||
public class TargetClickboxOverlay extends Overlay
|
||||
{
|
||||
private final SlayerConfig config;
|
||||
private final SlayerPlugin plugin;
|
||||
|
||||
@Inject
|
||||
TargetClickboxOverlay(SlayerConfig config, SlayerPlugin plugin)
|
||||
{
|
||||
this.config = config;
|
||||
this.plugin = plugin;
|
||||
setPosition(OverlayPosition.DYNAMIC);
|
||||
setLayer(OverlayLayer.ABOVE_SCENE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Dimension render(Graphics2D graphics)
|
||||
{
|
||||
if (!config.highlightTargets())
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
List<NPC> targets = plugin.getHighlightedTargets();
|
||||
for (NPC target : targets)
|
||||
{
|
||||
renderTargetOverlay(graphics, target, config.getTargetColor());
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private void renderTargetOverlay(Graphics2D graphics, NPC actor, Color color)
|
||||
{
|
||||
Shape objectClickbox = actor.getConvexHull();
|
||||
if (objectClickbox != null)
|
||||
{
|
||||
graphics.setColor(color);
|
||||
graphics.setStroke(new BasicStroke(2));
|
||||
graphics.draw(objectClickbox);
|
||||
graphics.setColor(ColorUtil.colorWithAlpha(color, color.getAlpha() / 12));
|
||||
graphics.fill(objectClickbox);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,80 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2018, James Swindle <wilingua@gmail.com>
|
||||
* Copyright (c) 2018, Adam <Adam@sigterm.info>
|
||||
* Copyright (c) 2018, Shaun Dreclin <shaundreclin@gmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
package net.runelite.client.plugins.slayer;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Graphics2D;
|
||||
import java.util.List;
|
||||
import javax.inject.Inject;
|
||||
import net.runelite.api.NPC;
|
||||
import net.runelite.api.Point;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.ui.overlay.OverlayLayer;
|
||||
import net.runelite.client.ui.overlay.OverlayPosition;
|
||||
import net.runelite.client.ui.overlay.OverlayUtil;
|
||||
|
||||
public class TargetMinimapOverlay extends Overlay
|
||||
{
|
||||
private final SlayerConfig config;
|
||||
private final SlayerPlugin plugin;
|
||||
|
||||
@Inject
|
||||
TargetMinimapOverlay(SlayerConfig config, SlayerPlugin plugin)
|
||||
{
|
||||
this.config = config;
|
||||
this.plugin = plugin;
|
||||
setPosition(OverlayPosition.DYNAMIC);
|
||||
setLayer(OverlayLayer.ABOVE_WIDGETS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Dimension render(Graphics2D graphics)
|
||||
{
|
||||
if (!config.highlightTargets())
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
List<NPC> targets = plugin.getHighlightedTargets();
|
||||
for (NPC target : targets)
|
||||
{
|
||||
renderTargetOverlay(graphics, target, config.getTargetColor());
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private void renderTargetOverlay(Graphics2D graphics, NPC actor, Color color)
|
||||
{
|
||||
Point minimapLocation = actor.getMinimapLocation();
|
||||
if (minimapLocation != null)
|
||||
{
|
||||
OverlayUtil.renderMinimapLocation(graphics, minimapLocation, color);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -64,7 +64,7 @@ class TargetWeaknessOverlay extends Overlay
|
||||
@Override
|
||||
public Dimension render(Graphics2D graphics)
|
||||
{
|
||||
final List<NPC> targets = plugin.getHighlightedTargets();
|
||||
final List<NPC> targets = plugin.getTargets();
|
||||
|
||||
if (targets.isEmpty() || !config.weaknessPrompt())
|
||||
{
|
||||
|
||||
@@ -128,4 +128,11 @@ public abstract class Overlay implements LayoutableRenderableEntity
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public void reset()
|
||||
{
|
||||
setPreferredPosition(null);
|
||||
setPreferredSize(null);
|
||||
setPreferredLocation(null);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -289,9 +289,7 @@ public class OverlayManager
|
||||
*/
|
||||
public synchronized void resetOverlay(final Overlay overlay)
|
||||
{
|
||||
overlay.setPreferredPosition(null);
|
||||
overlay.setPreferredSize(null);
|
||||
overlay.setPreferredLocation(null);
|
||||
overlay.reset();
|
||||
saveOverlay(overlay);
|
||||
}
|
||||
|
||||
|
||||
@@ -30,20 +30,23 @@ import java.awt.Rectangle;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Objects;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import net.runelite.api.Client;
|
||||
import net.runelite.api.Varbits;
|
||||
import net.runelite.api.widgets.Widget;
|
||||
import net.runelite.api.widgets.WidgetInfo;
|
||||
|
||||
@Slf4j
|
||||
public class WidgetOverlay extends Overlay
|
||||
{
|
||||
public static Collection<WidgetOverlay> createOverlays(final Client client)
|
||||
public static Collection<WidgetOverlay> createOverlays(final OverlayManager overlayManager, final Client client)
|
||||
{
|
||||
return Arrays.asList(
|
||||
new WidgetOverlay(client, WidgetInfo.RESIZABLE_MINIMAP_WIDGET, OverlayPosition.CANVAS_TOP_RIGHT),
|
||||
new WidgetOverlay(client, WidgetInfo.RESIZABLE_MINIMAP_STONES_WIDGET, OverlayPosition.CANVAS_TOP_RIGHT),
|
||||
new WidgetOverlay(client, WidgetInfo.FOSSIL_ISLAND_OXYGENBAR, OverlayPosition.TOP_CENTER),
|
||||
new XpTrackerWidgetOverlay(client, WidgetInfo.EXPERIENCE_TRACKER_WIDGET, OverlayPosition.TOP_RIGHT),
|
||||
// The client forces the oxygen bar below the xp tracker, so set its priority lower
|
||||
new WidgetOverlay(client, WidgetInfo.FOSSIL_ISLAND_OXYGENBAR, OverlayPosition.TOP_CENTER, OverlayPriority.HIGH),
|
||||
new XpTrackerWidgetOverlay(overlayManager, client, WidgetInfo.EXPERIENCE_TRACKER_WIDGET, OverlayPosition.TOP_RIGHT),
|
||||
new WidgetOverlay(client, WidgetInfo.RAIDS_POINTS_INFOBOX, OverlayPosition.TOP_RIGHT),
|
||||
new WidgetOverlay(client, WidgetInfo.TOB_PARTY_INTERFACE, OverlayPosition.TOP_LEFT),
|
||||
new WidgetOverlay(client, WidgetInfo.TOB_PARTY_STATS, OverlayPosition.TOP_LEFT),
|
||||
@@ -61,7 +64,8 @@ public class WidgetOverlay extends Overlay
|
||||
new WidgetOverlay(client, WidgetInfo.LMS_KDA, OverlayPosition.TOP_RIGHT),
|
||||
new WidgetOverlay(client, WidgetInfo.GAUNTLET_TIMER_CONTAINER, OverlayPosition.TOP_LEFT),
|
||||
new WidgetOverlay(client, WidgetInfo.HALLOWED_SEPULCHRE_TIMER_CONTAINER, OverlayPosition.TOP_LEFT),
|
||||
new WidgetOverlay(client, WidgetInfo.HEALTH_OVERLAY_BAR, OverlayPosition.TOP_CENTER),
|
||||
// The client forces the health overlay bar below the xp tracker, so set its priority lower
|
||||
new WidgetOverlay(client, WidgetInfo.HEALTH_OVERLAY_BAR, OverlayPosition.TOP_CENTER, OverlayPriority.HIGH),
|
||||
new WidgetOverlay(client, WidgetInfo.TOB_HEALTH_BAR, OverlayPosition.TOP_CENTER),
|
||||
new WidgetOverlay(client, WidgetInfo.NIGHTMARE_PILLAR_HEALTH, OverlayPosition.TOP_LEFT),
|
||||
new WidgetOverlay(client, WidgetInfo.VOLCANIC_MINE_VENTS_INFOBOX_GROUP, OverlayPosition.BOTTOM_RIGHT),
|
||||
@@ -71,19 +75,26 @@ public class WidgetOverlay extends Overlay
|
||||
new WidgetOverlay(client, WidgetInfo.MULTICOMBAT_RESIZEABLE_CLASSIC, OverlayPosition.CANVAS_TOP_RIGHT),
|
||||
new WidgetOverlay(client, WidgetInfo.TEMPOROSS_STATUS_INDICATOR, OverlayPosition.TOP_LEFT),
|
||||
new WidgetOverlay(client, WidgetInfo.BA_HEAL_TEAMMATES, OverlayPosition.BOTTOM_LEFT),
|
||||
new WidgetOverlay(client, WidgetInfo.BA_TEAM, OverlayPosition.TOP_RIGHT)
|
||||
new WidgetOverlay(client, WidgetInfo.BA_TEAM, OverlayPosition.TOP_RIGHT),
|
||||
new WidgetOverlay(client, WidgetInfo.PVP_WILDERNESS_SKULL_CONTAINER, OverlayPosition.DETACHED)
|
||||
);
|
||||
}
|
||||
|
||||
protected final Client client;
|
||||
private final WidgetInfo widgetInfo;
|
||||
private final Rectangle parentBounds = new Rectangle();
|
||||
private boolean revalidate;
|
||||
|
||||
private WidgetOverlay(final Client client, final WidgetInfo widgetInfo, final OverlayPosition overlayPosition)
|
||||
{
|
||||
this(client, widgetInfo, overlayPosition, OverlayPriority.HIGHEST);
|
||||
}
|
||||
|
||||
private WidgetOverlay(final Client client, final WidgetInfo widgetInfo, final OverlayPosition overlayPosition, final OverlayPriority overlayPriority)
|
||||
{
|
||||
this.client = client;
|
||||
this.widgetInfo = widgetInfo;
|
||||
setPriority(OverlayPriority.HIGHEST);
|
||||
setPriority(overlayPriority);
|
||||
setLayer(OverlayLayer.UNDER_WIDGETS);
|
||||
setPosition(overlayPosition);
|
||||
// It's almost possible to drawAfterInterface(widgetInfo.getGroupId()) here, but that fires
|
||||
@@ -107,10 +118,34 @@ public class WidgetOverlay extends Overlay
|
||||
return null;
|
||||
}
|
||||
|
||||
assert widget != null;
|
||||
|
||||
final Rectangle bounds = getBounds();
|
||||
// The widget relative pos is relative to the parent
|
||||
widget.setRelativeX(bounds.x - parent.x);
|
||||
widget.setRelativeY(bounds.y - parent.y);
|
||||
// OverlayRenderer sets the overlay bounds to the preferred location if one is set prior to calling render()
|
||||
// for detached overlays.
|
||||
if (getPosition() != OverlayPosition.DETACHED || getPreferredLocation() != null)
|
||||
{
|
||||
// The widget relative pos is relative to the parent
|
||||
widget.setRelativeX(bounds.x - parent.x);
|
||||
widget.setRelativeY(bounds.y - parent.y);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (revalidate)
|
||||
{
|
||||
revalidate = false;
|
||||
log.debug("Revalidating {}", widgetInfo);
|
||||
// Revalidate the widget to reposition it back to its normal location after an overlay reset
|
||||
widget.revalidate();
|
||||
}
|
||||
|
||||
// Update the overlay bounds to the widget bounds so the drag overlay renders correctly.
|
||||
// Note OverlayManager uses original bounds reference to render managing mode and for
|
||||
// onMouseOver, so update the existing bounds vs. replacing the reference.
|
||||
Rectangle widgetBounds = widget.getBounds();
|
||||
bounds.setBounds(widgetBounds.x, widgetBounds.y, widgetBounds.width, widgetBounds.height);
|
||||
}
|
||||
|
||||
return new Dimension(widget.getWidth(), widget.getHeight());
|
||||
}
|
||||
|
||||
@@ -152,11 +187,22 @@ public class WidgetOverlay extends Overlay
|
||||
return getParentBounds(widget);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void reset()
|
||||
{
|
||||
super.reset();
|
||||
// Revalidate must be called on the client thread, so defer til next frame
|
||||
revalidate = true;
|
||||
}
|
||||
|
||||
private static class XpTrackerWidgetOverlay extends WidgetOverlay
|
||||
{
|
||||
private XpTrackerWidgetOverlay(Client client, WidgetInfo widgetInfo, OverlayPosition overlayPosition)
|
||||
private final OverlayManager overlayManager;
|
||||
|
||||
private XpTrackerWidgetOverlay(OverlayManager overlayManager, Client client, WidgetInfo widgetInfo, OverlayPosition overlayPosition)
|
||||
{
|
||||
super(client, widgetInfo, overlayPosition);
|
||||
this.overlayManager = overlayManager;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -188,7 +234,13 @@ public class WidgetOverlay extends Overlay
|
||||
position = OverlayPosition.TOP_LEFT;
|
||||
break;
|
||||
}
|
||||
setPosition(position);
|
||||
|
||||
if (position != super.getPosition())
|
||||
{
|
||||
log.debug("Xp tracker moved position");
|
||||
setPosition(position);
|
||||
overlayManager.rebuildOverlayLayers();
|
||||
}
|
||||
return position;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user