Delete SafeSpotPlugin.java
This commit is contained in:
@@ -1,135 +0,0 @@
|
||||
package net.runelite.client.plugins.safespot;
|
||||
|
||||
|
||||
import net.runelite.api.coords.LocalPoint;
|
||||
import net.runelite.api.coords.WorldPoint;
|
||||
import java.util.List;
|
||||
import net.runelite.api.Actor;
|
||||
import net.runelite.api.coords.WorldArea;
|
||||
import net.runelite.api.NPC;
|
||||
import net.runelite.api.Player;
|
||||
import net.runelite.api.events.GameTick;
|
||||
import net.runelite.client.eventbus.Subscribe;
|
||||
import net.runelite.api.events.InteractingChanged;
|
||||
import com.google.inject.Provides;
|
||||
import net.runelite.client.config.ConfigManager;
|
||||
import net.runelite.api.Tile;
|
||||
import java.util.ArrayList;
|
||||
import net.runelite.client.ui.overlay.OverlayManager;
|
||||
import javax.inject.Inject;
|
||||
import net.runelite.api.Client;
|
||||
import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.plugins.Plugin;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "1 Way Safe Spots",
|
||||
description = "Renders tile overlays for one way safe spots",
|
||||
tags = { "safe spot", "pvp", "safespots", "pklite" },
|
||||
type = "PVP",
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
// TODO : filter tiles you cant stand on
|
||||
|
||||
public class SafeSpotPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
private Client client;
|
||||
@Inject
|
||||
OverlayManager overlayManager;
|
||||
@Inject
|
||||
private SafeSpotConfig config;
|
||||
private ArrayList<Tile> safeSpotList;
|
||||
private boolean safeSpotsRenderable;
|
||||
private SafeSpotOverlay safeSpotOverlay;
|
||||
private int tickCount;
|
||||
|
||||
public SafeSpotPlugin() {
|
||||
this.safeSpotsRenderable = false;
|
||||
this.tickCount = 0;
|
||||
}
|
||||
|
||||
@Provides
|
||||
SafeSpotConfig config(ConfigManager configManager) {
|
||||
return configManager.getConfig(SafeSpotConfig.class);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void startUp() throws Exception {
|
||||
this.safeSpotOverlay = new SafeSpotOverlay(this.client, this, this.config);
|
||||
this.overlayManager.add(safeSpotOverlay);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void shutDown() throws Exception {
|
||||
this.overlayManager.remove(safeSpotOverlay);
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
private void onInteractingChanged(InteractingChanged event) {
|
||||
if (event.getSource() != client.getLocalPlayer()) {
|
||||
return;
|
||||
}
|
||||
if (event.getTarget() == null && (config.npcSafeSpots() || config.playerSafeSpots())) {
|
||||
tickCount = 10;
|
||||
}
|
||||
}
|
||||
|
||||
@Subscribe
|
||||
public void onGameTick(GameTick event) {
|
||||
if (client.getLocalPlayer().getInteracting() != null) {
|
||||
if (client.getLocalPlayer().getInteracting() instanceof Player && config.playerSafeSpots()) {
|
||||
safeSpotsRenderable = true;
|
||||
updateSafeSpots();
|
||||
}
|
||||
if (client.getLocalPlayer().getInteracting() instanceof NPC && config.npcSafeSpots()) {
|
||||
safeSpotsRenderable = true;
|
||||
updateSafeSpots();
|
||||
}
|
||||
}
|
||||
else {
|
||||
safeSpotsRenderable = false;
|
||||
}
|
||||
if (tickCount > 0) {
|
||||
--tickCount;
|
||||
safeSpotsRenderable = true;
|
||||
}
|
||||
}
|
||||
|
||||
private void updateSafeSpots()
|
||||
{
|
||||
if (client.getLocalPlayer().getInteracting() != null)
|
||||
{
|
||||
Actor enemy = client.getLocalPlayer().getInteracting();
|
||||
|
||||
WorldArea worldArea = new WorldArea(enemy.getWorldLocation().getX() - 12, enemy.getWorldLocation().getY() - 12, 24, 24, client.getPlane());
|
||||
List<WorldPoint> worldPoints = worldArea.toWorldPointList();
|
||||
safeSpotList = getSafeSpotList(enemy, worldPoints);
|
||||
}
|
||||
}
|
||||
|
||||
private ArrayList<Tile> getSafeSpotList(Actor actor, List<WorldPoint> worldPoints)
|
||||
{
|
||||
ArrayList<Tile> safeSpotList = new ArrayList();
|
||||
Tile[][][] tiles = client.getScene().getTiles();
|
||||
for (WorldPoint w : worldPoints)
|
||||
{
|
||||
LocalPoint toPoint = LocalPoint.fromWorld(client, w);
|
||||
Tile fromTile = tiles[client.getPlane()][actor.getLocalLocation().getSceneX()][actor.getLocalLocation().getSceneY()];
|
||||
Tile toTile = tiles[client.getPlane()][toPoint.getSceneX()][toPoint.getSceneY()];
|
||||
if ((toTile.hasLineOfSightTo(fromTile)) && (!fromTile.hasLineOfSightTo(toTile)))
|
||||
{
|
||||
safeSpotList.add(toTile);
|
||||
}
|
||||
}
|
||||
return safeSpotList;
|
||||
}
|
||||
|
||||
public ArrayList<Tile> getSafeSpotList() {
|
||||
return safeSpotList;
|
||||
}
|
||||
|
||||
public boolean isSafeSpotsRenderable() {
|
||||
return safeSpotsRenderable;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user