Added nylo helper to Maiden, and various tob code style fixes.

This commit is contained in:
Ganom
2019-07-01 00:51:59 -04:00
parent 8cf1262414
commit 5f45442278
18 changed files with 792 additions and 635 deletions

View File

@@ -1,17 +1,23 @@
package net.runelite.client.plugins.theatre;
import net.runelite.api.*;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Polygon;
import java.util.Iterator;
import java.util.Map;
import net.runelite.api.Client;
import net.runelite.api.NPC;
import net.runelite.api.NPCDefinition;
import net.runelite.api.Perspective;
import net.runelite.api.Point;
import net.runelite.api.Projectile;
import net.runelite.api.coords.LocalPoint;
import net.runelite.api.coords.WorldArea;
import net.runelite.api.coords.WorldPoint;
import net.runelite.client.ui.overlay.OverlayUtil;
import java.awt.*;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
public abstract class RoomHandler
public abstract class RoomHandler
{
protected final Client client;
@@ -29,7 +35,7 @@ public abstract class RoomHandler
public abstract void onStop();
protected void drawTile2(Graphics2D graphics, WorldPoint point, Color color, int strokeWidth, int outlineAlpha, int fillAlpha)
protected void drawTile2(Graphics2D graphics, WorldPoint point, Color color, int strokeWidth, int outlineAlpha, int fillAlpha)
{
WorldPoint playerLocation = client.getLocalPlayer().getWorldLocation();
if (point.distanceTo(playerLocation) >= 32)
@@ -71,14 +77,14 @@ public abstract class RoomHandler
Point textLocation = Perspective.getCanvasTextLocation(client, graphics, projectilePoint, text, 0);
if (textLocation != null)
{
if (projectileId == 1607)
if (projectileId == 1607)
{ // range
renderTextLocation(graphics, text, 17, Font.BOLD, new Color(57, 255, 20, 255), textLocation);
}
}
else if (projectileId == 1606)
{ //mage
renderTextLocation(graphics, text, 17, Font.BOLD, new Color(64, 224, 208, 255), textLocation);
}
}
else
{ //Orb of death? i hope
renderTextLocation(graphics, text, 20, Font.BOLD, Color.WHITE, textLocation);
@@ -87,20 +93,26 @@ public abstract class RoomHandler
}
}
protected void drawTile(Graphics2D graphics, WorldPoint point, Color color, int strokeWidth, int outlineAlpha, int fillAlpha)
protected void drawTile(Graphics2D graphics, WorldPoint point, Color color, int strokeWidth, int outlineAlpha, int fillAlpha)
{
WorldPoint playerLocation = client.getLocalPlayer().getWorldLocation();
if (point.distanceTo(playerLocation) >= 32)
{
return;
}
LocalPoint lp = LocalPoint.fromWorld(client, point);
if (lp == null)
{
return;
}
Polygon poly = Perspective.getCanvasTilePoly(client, lp);
if (poly == null)
{
return;
}
graphics.setColor(new Color(color.getRed(), color.getGreen(), color.getBlue(), outlineAlpha));
graphics.setStroke(new BasicStroke(strokeWidth));
@@ -109,13 +121,15 @@ public abstract class RoomHandler
graphics.fill(poly);
}
protected void renderNpcOverlay(Graphics2D graphics, NPC actor, Color color, int outlineWidth, int outlineAlpha, int fillAlpha)
protected void renderNpcOverlay(Graphics2D graphics, NPC actor, Color color, int outlineWidth, int outlineAlpha, int fillAlpha)
{
int size = 1;
NPCDefinition composition = actor.getTransformedDefinition();
if (composition != null)
{
size = composition.getSize();
}
LocalPoint lp = actor.getLocalLocation();
Polygon tilePoly = Perspective.getCanvasTileAreaPoly(client, lp, size);
@@ -143,26 +157,6 @@ public abstract class RoomHandler
}
}
protected List<WorldPoint> getHitSquares(WorldPoint npcLoc, int npcSize, int thickness, boolean includeUnder)
{
List<WorldPoint> little = new WorldArea(npcLoc, npcSize, npcSize).toWorldPointList();
List<WorldPoint> big = new WorldArea(npcLoc.getX() - thickness, npcLoc.getY() - thickness, npcSize + (thickness * 2), npcSize + (thickness * 2), npcLoc.getPlane()).toWorldPointList();
if (!includeUnder)
{
for (Iterator<WorldPoint> it = big.iterator(); it.hasNext(); )
{
WorldPoint p = it.next();
if (little.contains(p))
{
it.remove();
}
}
}
return big;
}
protected String twoDigitString(long number)
{

View File

@@ -8,30 +8,15 @@
package net.runelite.client.plugins.theatre;
import java.awt.Color;
import net.runelite.client.config.Config;
import net.runelite.client.config.ConfigGroup;
import net.runelite.client.config.ConfigItem;
import java.awt.*;
@ConfigGroup("Theatre")
public interface TheatreConfig extends Config
{
enum NYLOCAS
{
NONE,
MAGE,
MELEE,
RANGER
}
enum NYLOOPTION
{
NONE,
TILE,
TIMER
}
@ConfigItem(
position = 0,
keyName = "showMaidenBloodToss",
@@ -39,7 +24,7 @@ public interface TheatreConfig extends Config
description = "Displays the tile location where tossed blood will land.",
group = "Maiden"
)
default boolean showMaidenBloodToss()
default boolean showMaidenBloodToss()
{
return true;
}
@@ -51,7 +36,19 @@ public interface TheatreConfig extends Config
description = "Show the tiles that blood spawns will travel to.",
group = "Maiden"
)
default boolean showMaidenBloodSpawns()
default boolean showMaidenBloodSpawns()
{
return true;
}
@ConfigItem(
position = 2,
keyName = "showNyloFreezeHighlights",
name = "Show Nylo Freeze Highlights",
description = "Show when to freeze Nylos at maiden. Say n1,n2,s1,s2 in chat for it to register.",
group = "Maiden"
)
default boolean showNyloFreezeHighlights()
{
return true;
}
@@ -63,7 +60,7 @@ public interface TheatreConfig extends Config
description = "Displays Bloat's status (asleep, wake, and enrage) using color code.",
group = "Bloat"
)
default boolean showBloatIndicator()
default boolean showBloatIndicator()
{
return true;
}
@@ -75,7 +72,7 @@ public interface TheatreConfig extends Config
description = "Highlights the falling hands inside Bloat.",
group = "Bloat"
)
default boolean showBloatHands()
default boolean showBloatHands()
{
return true;
}
@@ -87,8 +84,8 @@ public interface TheatreConfig extends Config
description = "",
group = "Bloat"
)
default boolean BloatFeetIndicatorRaveEdition()
{
default boolean BloatFeetIndicatorRaveEdition()
{
return false;
}
@@ -135,45 +132,40 @@ public interface TheatreConfig extends Config
description = "An overlay will appear that counts the amount of Nylocas in the room.",
group = "Nylocas"
)
default boolean showNylocasAmount()
default boolean showNylocasAmount()
{
return true;
}
/**
@ConfigItem(
position = 8,
keyName = "showNylocasSpawns",
name = "Show Nylocas Pre-spawns",
description = "Know the contents of the next upcoming wave."
)
default boolean showNylocasSpawns()
{
return true;
}
@ConfigItem(
position = 9,
keyName = "highlightNyloRoles",
name = "Highlight Nylo Prespawns",
description = "Highlights the next upcoming wave based on role. FOR BEGINNERS"
)
default NYLOCAS highlightNyloRoles()
{
return NYLOCAS.NONE;
}
@ConfigItem(
position = 10,
keyName = "highlightNyloParents",
name = "Show Nylo Parents (Un-used)",
description = "Highlight the Nylocas that spawn outside the center."
)
default boolean highlightNyloParents()
{
return true;
}
**/
* @ConfigItem( position = 8,
* keyName = "showNylocasSpawns",
* name = "Show Nylocas Pre-spawns",
* description = "Know the contents of the next upcoming wave."
* )
* default boolean showNylocasSpawns()
* {
* return true;
* }
* @ConfigItem( position = 9,
* keyName = "highlightNyloRoles",
* name = "Highlight Nylo Prespawns",
* description = "Highlights the next upcoming wave based on role. FOR BEGINNERS"
* )
* default NYLOCAS highlightNyloRoles()
* {
* return NYLOCAS.NONE;
* }
* @ConfigItem( position = 10,
* keyName = "highlightNyloParents",
* name = "Show Nylo Parents (Un-used)",
* description = "Highlight the Nylocas that spawn outside the center."
* )
* default boolean highlightNyloParents()
* {
* return true;
* }
**/
@ConfigItem(
position = 11,
@@ -218,7 +210,7 @@ public interface TheatreConfig extends Config
description = "Marks the tiles of Sotetseg's maze while in the underworld.",
group = "Sotetseg"
)
default boolean showSotetsegSolo()
default boolean showSotetsegSolo()
{
return true;
}
@@ -234,6 +226,7 @@ public interface TheatreConfig extends Config
{
return Color.WHITE;
}
@ConfigItem(
position = 15,
keyName = "showXarpusHeals",
@@ -302,10 +295,10 @@ public interface TheatreConfig extends Config
group = "Verzik"
)
default boolean VerzikTankTile()
{
{
return false;
}
@ConfigItem(
position = 22,
keyName = "verzikrangeattacks",
@@ -314,10 +307,10 @@ public interface TheatreConfig extends Config
group = "Verzik"
)
default boolean verzikRangeAttacks()
{
return true;
{
return true;
}
@ConfigItem(
position = 23,
keyName = "extratimers",
@@ -329,7 +322,7 @@ public interface TheatreConfig extends Config
{
return false;
}
@ConfigItem(
position = 24,
keyName = "p1attacks",
@@ -341,7 +334,7 @@ public interface TheatreConfig extends Config
{
return true;
}
@ConfigItem(
position = 25,
keyName = "p2attacks",
@@ -353,7 +346,7 @@ public interface TheatreConfig extends Config
{
return true;
}
@ConfigItem(
position = 26,
keyName = "p3attacks",
@@ -365,4 +358,19 @@ public interface TheatreConfig extends Config
{
return true;
}
enum NYLOCAS
{
NONE,
MAGE,
MELEE,
RANGER
}
enum NYLOOPTION
{
NONE,
TILE,
TIMER
}
}

View File

@@ -1,6 +1,6 @@
package net.runelite.client.plugins.theatre;
public class TheatreConstant
public class TheatreConstant
{
public static final int MAIDEN_BLOOD_THROW = 1579;

View File

@@ -8,28 +8,30 @@
package net.runelite.client.plugins.theatre;
import java.awt.*;
import java.util.*;
import java.awt.Dimension;
import java.awt.Graphics2D;
import javax.inject.Inject;
import net.runelite.api.*;
import net.runelite.api.Client;
import net.runelite.client.graphics.ModelOutlineRenderer;
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.OverlayPriority;
public class TheatreOverlay extends Overlay
public class TheatreOverlay extends Overlay
{
private final Client client;
private final TheatrePlugin plugin;
private final TheatreConfig config;
private final ModelOutlineRenderer modelOutline;
@Inject
private TheatreOverlay(Client client, TheatrePlugin plugin, TheatreConfig config)
private TheatreOverlay(Client client, TheatrePlugin plugin, TheatreConfig config, ModelOutlineRenderer modelOutline)
{
this.client = client;
this.plugin = plugin;
this.config = config;
this.modelOutline = modelOutline;
setPosition(OverlayPosition.DYNAMIC);
setPriority(OverlayPriority.HIGH);

View File

@@ -9,32 +9,43 @@
package net.runelite.client.plugins.theatre;
import com.google.inject.Provides;
import java.awt.Color;
import java.util.LinkedList;
import java.util.List;
import javax.inject.Inject;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import net.runelite.api.Client;
import java.util.LinkedList;
import java.util.List;
import net.runelite.api.events.*;
import net.runelite.client.config.ConfigManager;
import net.runelite.client.eventbus.Subscribe;
import net.runelite.client.plugins.Plugin;
import net.runelite.api.events.AnimationChanged;
import net.runelite.api.events.ChatMessage;
import net.runelite.api.events.ConfigChanged;
import net.runelite.api.events.GameTick;
import net.runelite.api.events.GroundObjectSpawned;
import net.runelite.api.events.NpcDespawned;
import net.runelite.api.events.NpcSpawned;
import net.runelite.api.events.ProjectileMoved;
import net.runelite.api.events.SpotAnimationChanged;
import net.runelite.api.events.VarbitChanged;
import net.runelite.api.events.WidgetLoaded;
import net.runelite.api.widgets.Widget;
import net.runelite.api.widgets.WidgetID;
import net.runelite.api.widgets.WidgetInfo;
import net.runelite.client.config.ConfigManager;
import net.runelite.client.eventbus.Subscribe;
import net.runelite.client.graphics.ModelOutlineRenderer;
import net.runelite.client.plugins.Plugin;
import net.runelite.client.plugins.PluginDescriptor;
import net.runelite.client.plugins.PluginType;
import net.runelite.client.plugins.theatre.rooms.BloatHandler;
import net.runelite.client.plugins.theatre.rooms.MaidenHandler;
import net.runelite.client.plugins.theatre.rooms.SotetsegHandler;
import net.runelite.client.plugins.theatre.rooms.VerzikHandler;
import net.runelite.client.plugins.theatre.rooms.xarpus.XarpusHandler;
import net.runelite.client.plugins.theatre.rooms.nylocas.NyloHandler;
import net.runelite.client.plugins.theatre.rooms.xarpus.XarpusHandler;
import net.runelite.client.ui.overlay.OverlayManager;
import javax.inject.Inject;
import java.awt.*;
@PluginDescriptor(
name = "Theatre of Blood",
description = "All-in-one plugin for Theatre of Blood.",
@@ -43,9 +54,9 @@ import java.awt.*;
enabledByDefault = false
)
public class TheatrePlugin extends Plugin
@Slf4j
public class TheatrePlugin extends Plugin
{
@Getter(AccessLevel.PUBLIC)
@Setter(AccessLevel.PUBLIC)
private TheatreRoom room;
@@ -83,6 +94,9 @@ public class TheatrePlugin extends Plugin
@Inject
private TheatreConfig config;
@Inject
private ModelOutlineRenderer modelOutline;
@Provides
TheatreConfig getConfig(ConfigManager configManager)
{
@@ -94,7 +108,7 @@ public class TheatrePlugin extends Plugin
{
room = TheatreRoom.UNKNOWN;
maidenHandler = new MaidenHandler(client, this, config);
maidenHandler = new MaidenHandler(client, this, config, modelOutline);
bloatHandler = new BloatHandler(client, this, config);
nyloHandler = new NyloHandler(client, this, config);
sotetsegHandler = new SotetsegHandler(client, this, config);
@@ -131,26 +145,47 @@ public class TheatrePlugin extends Plugin
overlayManager.remove(overlay);
}
@Subscribe
public void onSpotAnimationChanged(SpotAnimationChanged event)
{
if (maidenHandler != null)
{
maidenHandler.onSpotAnimationChanged(event);
}
}
@Subscribe
public void onNpcSpawned(NpcSpawned event)
{
if (maidenHandler != null)
{
maidenHandler.onNpcSpawned(event);
}
if (bloatHandler != null)
{
bloatHandler.onNpcSpawned(event);
}
if (nyloHandler != null)
{
nyloHandler.onNpcSpawned(event);
}
if (sotetsegHandler != null)
{
sotetsegHandler.onNpcSpawned(event);
}
if (xarpusHandler != null)
{
xarpusHandler.onNpcSpawned(event);
}
if (verzikHandler != null)
{
verzikHandler.onNpcSpawned(event);
}
}
@@ -158,19 +193,29 @@ public class TheatrePlugin extends Plugin
public void onNpcDespawned(NpcDespawned event)
{
if (maidenHandler != null)
{
maidenHandler.onNpcDespawned(event);
}
if (bloatHandler != null)
{
bloatHandler.onNpcDespawned(event);
}
if (nyloHandler != null)
{
nyloHandler.onNpcDespawned(event);
}
if (sotetsegHandler != null)
{
sotetsegHandler.onNpcDespawned(event);
}
if (xarpusHandler != null)
{
xarpusHandler.onNpcDespawned(event);
}
}
@@ -178,7 +223,18 @@ public class TheatrePlugin extends Plugin
public void onAnimationChanged(AnimationChanged event)
{
if (verzikHandler != null)
{
verzikHandler.onAnimationChanged(event);
}
}
@Subscribe
public void onChatMessage(ChatMessage event)
{
if (maidenHandler != null)
{
maidenHandler.onChatMessage(event);
}
}
@Subscribe
@@ -204,22 +260,34 @@ public class TheatrePlugin extends Plugin
public void onGameTick(GameTick event)
{
if (maidenHandler != null)
{
maidenHandler.onGameTick();
}
if (bloatHandler != null)
{
bloatHandler.onGameTick();
}
if (nyloHandler != null)
{
nyloHandler.onGameTick();
}
if (sotetsegHandler != null)
{
sotetsegHandler.onGameTick();
}
if (xarpusHandler != null)
{
xarpusHandler.onGameTick();
}
if (verzikHandler != null)
{
verzikHandler.onGameTick();
}
if (widget == null)
{
@@ -315,27 +383,37 @@ public class TheatrePlugin extends Plugin
public void onGroundObjectSpawned(GroundObjectSpawned event)
{
if (sotetsegHandler != null)
{
sotetsegHandler.onGroundObjectSpawned(event);
}
if (xarpusHandler != null)
{
xarpusHandler.onGroundObjectSpawned(event);
}
}
@Subscribe
public void onConfigChanged(ConfigChanged event)
{
if (nyloHandler != null)
{
nyloHandler.onConfigChanged();
}
}
@Subscribe
public void onVarbitChanged(VarbitChanged event)
{
if (bloatHandler != null)
{
bloatHandler.onVarbitChanged(event);
}
if (xarpusHandler != null)
{
xarpusHandler.onVarbitChanged(event);
}
}
@Subscribe

View File

@@ -1,6 +1,6 @@
package net.runelite.client.plugins.theatre;
public enum TheatreRoom
public enum TheatreRoom
{
MAIDEN,
BLOAT,
@@ -8,5 +8,5 @@ public enum TheatreRoom
SOTETSEG,
XARPUS,
VERSIK,
UNKNOWN;
UNKNOWN
}

View File

@@ -1,42 +1,36 @@
package net.runelite.client.plugins.theatre.rooms;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.util.Random;
import lombok.AccessLevel;
import lombok.Getter;
import net.runelite.api.*;
import net.runelite.api.Client;
import net.runelite.api.GraphicsObject;
import net.runelite.api.NPC;
import net.runelite.api.NpcID;
import net.runelite.api.Point;
import net.runelite.api.Varbits;
import net.runelite.api.coords.WorldPoint;
import net.runelite.api.events.NpcDespawned;
import net.runelite.api.events.NpcSpawned;
import net.runelite.api.events.VarbitChanged;
import net.runelite.client.eventbus.Subscribe;
import net.runelite.client.plugins.theatre.RoomHandler;
import net.runelite.client.plugins.theatre.TheatreConfig;
import net.runelite.client.plugins.theatre.TheatrePlugin;
import net.runelite.client.plugins.theatre.TheatreRoom;
import net.runelite.client.plugins.theatre.RoomHandler;
import java.awt.*;
import java.util.Random;
public class BloatHandler extends RoomHandler
{
public static enum BloatState
{
DOWN,
UP,
WARN;
}
private int bloatTimer;
@Getter(AccessLevel.PUBLIC)
private NPC bloat;
private int counter;
//My variables
private boolean bloatFlag;
int bloatTimer;
private Color color;
@Getter(AccessLevel.PUBLIC)
private BloatState bloatState;
@@ -49,7 +43,9 @@ public class BloatHandler extends RoomHandler
public void onStart()
{
if (this.plugin.getRoom() == TheatreRoom.BLOAT)
{
return;
}
this.reset();
this.plugin.setRoom(TheatreRoom.BLOAT);
@@ -106,8 +102,8 @@ public class BloatHandler extends RoomHandler
WorldPoint point = WorldPoint.fromLocal(client, object.getLocation());
if (!config.BloatFeetIndicatorRaveEdition())
{
drawTile(graphics, point, new Color(36, 248, 229), 2, 255, 10);
}
drawTile(graphics, point, new Color(36, 248, 229), 2, 255, 10);
}
else
{
drawTile(graphics, point, color, 2, 255, 10);
@@ -120,15 +116,15 @@ public class BloatHandler extends RoomHandler
if (config.showBloatTimer())
{
final String tickCounter = String.valueOf(bloatTimer);
int secondConversion = (int)(bloatTimer * .6);
int secondConversion = (int) (bloatTimer * .6);
if (bloat != null)
{
Point canvasPoint = bloat.getCanvasTextLocation(graphics, tickCounter, 60);
if (bloatTimer <= 37)
if (bloatTimer <= 37)
{
renderTextLocation(graphics, tickCounter + "( " + secondConversion + " )", 15, Font.BOLD, Color.WHITE, canvasPoint);
}
else
}
else
{
renderTextLocation(graphics, tickCounter + "( " + secondConversion + " )", 15, Font.BOLD, Color.RED, canvasPoint);
}
@@ -139,9 +135,9 @@ public class BloatHandler extends RoomHandler
@Subscribe
public void onVarbitChanged(VarbitChanged event)
{
if (client.getVar(Varbits.BLOAT_DOOR) == 1)
if (client.getVar(Varbits.BLOAT_DOOR) == 1)
{
if (!bloatFlag)
if (!bloatFlag)
{
bloatTimer = 0;
bloatFlag = true;
@@ -149,12 +145,12 @@ public class BloatHandler extends RoomHandler
}
}
public void onNpcSpawned(NpcSpawned event)
public void onNpcSpawned(NpcSpawned event)
{
NPC npc = event.getNpc();
int id = npc.getId();
if (id == NpcID.PESTILENT_BLOAT)
if (id == NpcID.PESTILENT_BLOAT)
{
this.onStart();
bloatTimer = 0;
@@ -162,12 +158,12 @@ public class BloatHandler extends RoomHandler
}
}
public void onNpcDespawned(NpcDespawned event)
public void onNpcDespawned(NpcDespawned event)
{
NPC npc = event.getNpc();
int id = npc.getId();
if (id == NpcID.PESTILENT_BLOAT)
if (id == NpcID.PESTILENT_BLOAT)
{
this.onStop();
bloatTimer = 0;
@@ -175,9 +171,9 @@ public class BloatHandler extends RoomHandler
}
}
public void onGameTick()
public void onGameTick()
{
if (plugin.getRoom() != TheatreRoom.BLOAT)
if (plugin.getRoom() != TheatreRoom.BLOAT)
{
return;
}
@@ -196,39 +192,46 @@ public class BloatHandler extends RoomHandler
counter++;
if (bloat.getAnimation() == -1)
if (bloat.getAnimation() == -1)
{
bloatTimer++;
counter = 0;
if (bloat.getHealth() == 0)
{
bloatState = BloatState.DOWN;
}
else
}
else
{
bloatState = BloatState.UP;
}
}
else
}
else
{
if (25 < counter && counter < 35)
if (25 < counter && counter < 35)
{
bloatState = BloatState.WARN;
}
else if (counter < 26)
}
else if (counter < 26)
{
bloatTimer = 0;
bloatState = BloatState.DOWN;
}
else if (bloat.getModelHeight() == 568)
}
else if (bloat.getModelHeight() == 568)
{
bloatTimer = 0;
bloatState = BloatState.DOWN;
}
else
}
else
{
bloatState = BloatState.UP;
}
}
}
public enum BloatState
{
DOWN,
UP,
WARN
}
}

View File

@@ -1,162 +1,298 @@
package net.runelite.client.plugins.theatre.rooms;
import lombok.AccessLevel;
import lombok.Getter;
import com.google.common.collect.ImmutableSet;
import java.awt.Color;
import java.awt.Graphics2D;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import lombok.extern.slf4j.Slf4j;
import net.runelite.api.ChatMessageType;
import net.runelite.api.Client;
import net.runelite.api.GraphicsObject;
import net.runelite.api.NPC;
import net.runelite.api.NpcID;
import net.runelite.api.coords.WorldPoint;
import net.runelite.api.events.ChatMessage;
import net.runelite.api.events.NpcDespawned;
import net.runelite.api.events.NpcSpawned;
import net.runelite.api.events.SpotAnimationChanged;
import net.runelite.client.graphics.ModelOutlineRenderer;
import net.runelite.client.plugins.theatre.RoomHandler;
import net.runelite.client.plugins.theatre.TheatreConfig;
import net.runelite.client.plugins.theatre.TheatreConstant;
import net.runelite.client.plugins.theatre.TheatrePlugin;
import net.runelite.client.plugins.theatre.TheatreRoom;
import net.runelite.client.util.Text;
import java.awt.*;
import java.util.ArrayList;
import java.util.List;
public class MaidenHandler extends RoomHandler
@Slf4j
public class MaidenHandler extends RoomHandler
{
@Getter(AccessLevel.PACKAGE)
private static final ImmutableSet<WorldPoint> N1 = ImmutableSet.of(
new WorldPoint(3182, 4457, 0),
new WorldPoint(3174, 4457, 0)
);
private static final ImmutableSet<WorldPoint> N2 = ImmutableSet.of(
new WorldPoint(3178, 4457, 0),
new WorldPoint(3186, 4455, 0),
new WorldPoint(3186, 4457, 0)
);
private static final ImmutableSet<WorldPoint> S1 = ImmutableSet.of(
new WorldPoint(3174, 4437, 0),
new WorldPoint(3182, 4437, 0)
);
private static final ImmutableSet<WorldPoint> S2 = ImmutableSet.of(
new WorldPoint(3186, 4439, 0),
new WorldPoint(3186, 4437, 0),
new WorldPoint(3178, 4437, 0)
);
private static final ImmutableSet<Integer> FREEZEANIMS = ImmutableSet.of(
361,
363,
367,
369
);
private static final Color TRANSPARENT = new Color(0, 0, 0, 0);
private static final Color FREEZE = new Color(0, 226, 255, 255);
private List<WorldPoint> bloodThrows = new ArrayList<>();
@Getter(AccessLevel.PACKAGE)
private List<NPC> bloodSpawns = new ArrayList<>();
@Getter(AccessLevel.PACKAGE)
private List<WorldPoint> bloodSpawnLocation = new ArrayList<>();
@Getter(AccessLevel.PACKAGE)
private List<WorldPoint> bloodSpawnTarget = new ArrayList<>();
private NPC maiden;
private String nyloCall = "n1";
private Set<Nylos> nylos = new HashSet<>();
private List<NPC> healers = new ArrayList<>();
private int healerCount = 0;
private int wave = 1;
private long startTime = 0;
private ModelOutlineRenderer modelOutline;
public MaidenHandler(Client client, TheatrePlugin plugin, TheatreConfig config)
public MaidenHandler(Client client, TheatrePlugin plugin, TheatreConfig config, ModelOutlineRenderer modelOutline)
{
super(client, plugin, config);
this.modelOutline = modelOutline;
}
@Override
public void onStart()
public void onStart()
{
if (this.plugin.getRoom() == TheatreRoom.MAIDEN)
{
return;
}
this.reset();
this.plugin.setRoom(TheatreRoom.MAIDEN);
this.startTime = System.currentTimeMillis();
System.out.println("Starting Maiden Room");
log.debug("Starting Maiden Room");
}
@Override
public void onStop()
public void onStop()
{
this.reset();
this.plugin.setRoom(TheatreRoom.UNKNOWN);
System.out.println("Stopping Maiden Room");
log.debug("Stopping Maiden Room");
}
public void reset()
public void reset()
{
this.bloodThrows.clear();
this.bloodSpawns.clear();
this.bloodSpawnLocation.clear();
this.bloodSpawnTarget.clear();
this.healers.clear();
this.healerCount = 0;
this.startTime = -1;
this.wave = 1;
}
public void render(Graphics2D graphics)
public void render(Graphics2D graphics)
{
if (config.showMaidenBloodToss())
for (Nylos nylo : nylos)
{
for (WorldPoint point : bloodThrows)
if (nylo.getNpc() == null || nylo.getNpc().getId() == -1)
{
continue;
}
final String location = nylo.getSpawnLocation().getName();
if (location.equals(nyloCall))
{
Color color = Color.WHITE;
int width = 4;
if (nylo.getNpc().getWorldArea().distanceTo(maiden.getWorldArea()) <= 3)
{
color = FREEZE;
width = 8;
}
modelOutline.drawOutline(nylo.getNpc(), width, color, TRANSPARENT);
}
}
if (config.showMaidenBloodToss())
{
for (WorldPoint point : bloodThrows)
{
drawTile(graphics, point, new Color(36, 248, 229), 2, 150, 10);
}
}
if (config.showMaidenBloodSpawns())
if (config.showMaidenBloodSpawns())
{
for (WorldPoint point : bloodSpawnLocation)
for (WorldPoint point : bloodSpawnLocation)
{
drawTile(graphics, point, new Color(36, 248, 229), 2, 180, 20);
}
for (WorldPoint point : bloodSpawnTarget)
for (WorldPoint point : bloodSpawnTarget)
{
drawTile(graphics, point, new Color(36, 248, 229), 1, 120, 10);
}
}
}
public void onNpcSpawned(NpcSpawned event)
public void onSpotAnimationChanged(SpotAnimationChanged event)
{
NPC npc = event.getNpc();
String name = npc.getName();
int id = npc.getId();
if (event.getActor() instanceof NPC)
{
NPC npc = (NPC) event.getActor();
if (npc.getName() != null && name.equals("The Maiden of Sugadinti"))
{
this.onStart();
}
else if (plugin.getRoom() == TheatreRoom.MAIDEN)
{
if (id == NpcID.BLOOD_SPAWN)
if (npc.getId() != 8366)
{
if (!bloodSpawns.contains(npc))
bloodSpawns.add(npc);
}
else if (name != null && name.equalsIgnoreCase("Nylocas Matomenos"))
return;
}
int anim = npc.getSpotAnimation();
if (FREEZEANIMS.contains(anim))
{
this.healers.add(npc);
nylos.removeIf(c -> c.getNpc() == npc);
}
}
}
public void onNpcDespawned(NpcDespawned event)
public void onNpcSpawned(NpcSpawned event)
{
NPC npc = event.getNpc();
String name = npc.getName();
int id = npc.getId();
if (npc.getName() != null && name.equals("The Maiden of Sugadinti"))
{
this.onStop();
}
else if (plugin.getRoom() == TheatreRoom.MAIDEN)
{
if (id == NpcID.BLOOD_SPAWN)
{
bloodSpawns.remove(npc);
}
}
}
public void onGameTick()
{
if (plugin.getRoom() != TheatreRoom.MAIDEN)
if (npc.getName() == null)
{
return;
}
bloodThrows.clear();
for (GraphicsObject o : client.getGraphicsObjects())
switch (npc.getName())
{
if (o.getId() == TheatreConstant.MAIDEN_BLOOD_THROW)
case "The Maiden of Sugadinti":
this.onStart();
maiden = npc;
break;
case "Nylocas Matomenos":
if (!config.showNyloFreezeHighlights())
{
return;
}
this.healers.add(npc);
WorldPoint wp = WorldPoint.fromLocalInstance(client, npc.getLocalLocation());
if (N1.contains(wp))
{
addNylo(npc, Nylos.SpawnLocation.N1);
}
if (N2.contains(wp))
{
addNylo(npc, Nylos.SpawnLocation.N2);
}
if (S1.contains(wp))
{
addNylo(npc, Nylos.SpawnLocation.S1);
}
if (S2.contains(wp))
{
addNylo(npc, Nylos.SpawnLocation.S2);
}
if (!N1.contains(wp) && !N2.contains(wp) && !S1.contains(wp) && !S2.contains(wp))
{
log.debug("------------------------");
log.debug("No World Points Matched");
log.debug("Dumping Location");
log.debug("Instance Loc: " + wp);
log.debug("------------------------");
}
break;
case "Blood spawn":
if (!bloodSpawns.contains(npc))
{
bloodSpawns.add(npc);
}
break;
}
}
public void onChatMessage(ChatMessage event)
{
if (event.getSender() != null && !event.getSender().equals(client.getLocalPlayer().getName()))
{
return;
}
String msg = Text.standardize(event.getMessageNode().getValue());
switch (msg)
{
case "n1":
case "n2":
case "s1":
case "s2":
nyloCall = msg;
break;
}
}
public void onNpcDespawned(NpcDespawned event)
{
NPC npc = event.getNpc();
if (npc.getName() == null)
{
return;
}
switch (npc.getName())
{
case "The Maiden of Sugadinti":
this.onStop();
break;
case "Blood Spawn":
bloodSpawns.remove(npc);
break;
}
}
public void onGameTick()
{
if (plugin.getRoom() != TheatreRoom.MAIDEN)
{
return;
}
if (!nylos.isEmpty())
{
for (Nylos nylo : nylos)
{
nylos.removeIf(c -> c.getNpc().getId() == -1);
}
}
bloodThrows.clear();
for (GraphicsObject o : client.getGraphicsObjects())
{
if (o.getId() == TheatreConstant.MAIDEN_BLOOD_THROW)
{
bloodThrows.add(WorldPoint.fromLocal(client, o.getLocation()));
}
@@ -164,12 +300,13 @@ public class MaidenHandler extends RoomHandler
bloodSpawnLocation = new ArrayList<>(bloodSpawnTarget);
bloodSpawnTarget.clear();
for (NPC spawn : bloodSpawns)
for (NPC spawn : bloodSpawns)
{
bloodSpawnTarget.add(spawn.getWorldLocation());
}
if (this.healerCount != this.healers.size())
if (this.healerCount != this.healers.size())
{
this.healerCount = this.healers.size();
@@ -181,7 +318,15 @@ public class MaidenHandler extends RoomHandler
int percentage = 70 - (20 * ((wave++) - 1));
if (config.extraTimers())
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'The Maiden of Sugadinti - " + percentage + "%' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
{
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'The Maiden of Sugadinti - " + percentage + "%' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
}
}
}
private void addNylo(NPC npc, Nylos.SpawnLocation spawnLocation)
{
nylos.add(new Nylos(npc, spawnLocation));
}
}

View File

@@ -0,0 +1,36 @@
package net.runelite.client.plugins.theatre.rooms;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;
import net.runelite.api.NPC;
class Nylos
{
@Getter
private NPC npc;
@Getter
private int npcIndex;
@Getter
@Setter
private SpawnLocation spawnLocation;
Nylos(NPC npc, SpawnLocation spawnLocation)
{
this.npc = npc;
this.npcIndex = npc.getIndex();
this.spawnLocation = spawnLocation;
}
@Getter
@AllArgsConstructor
enum SpawnLocation
{
N1("n1"),
N2("n2"),
S1("s1"),
S2("s2");
private String name;
}
}

View File

@@ -1,9 +1,23 @@
package net.runelite.client.plugins.theatre.rooms;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.Polygon;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import lombok.AccessLevel;
import lombok.Getter;
import net.runelite.api.*;
import net.runelite.api.Client;
import net.runelite.api.GroundObject;
import net.runelite.api.NPC;
import net.runelite.api.NpcID;
import net.runelite.api.Point;
import net.runelite.api.Projectile;
import net.runelite.api.Tile;
import net.runelite.api.coords.WorldPoint;
import net.runelite.api.events.GroundObjectSpawned;
import net.runelite.api.events.NpcDespawned;
@@ -16,33 +30,24 @@ import net.runelite.client.plugins.theatre.TheatrePlugin;
import net.runelite.client.plugins.theatre.TheatreRoom;
import net.runelite.client.ui.overlay.OverlayUtil;
import java.awt.*;
import java.util.*;
import java.util.List;
public class SotetsegHandler extends RoomHandler
{
@Getter(AccessLevel.PUBLIC)
private final Map<GroundObject, Tile> redTiles = new LinkedHashMap<>();
//My variables
private int playerX;
private int playerY;
@Getter(AccessLevel.PUBLIC)
private List<WorldPoint> redOverworld = new ArrayList<>();
private List<WorldPoint> blackOverworld = new ArrayList<>();
private List<WorldPoint> blackUnderworld = new ArrayList<>();
private List<WorldPoint> redUnderworld = new ArrayList<>();
private List<Point> gridPath = new ArrayList<>();
//My variables
int playerX;
int playerY;
private Map<Projectile, WorldPoint> soteyProjectiles = new HashMap<>();
private NPC npc;
private long startTime = 0;
public SotetsegHandler(Client client, TheatrePlugin plugin, TheatreConfig config)
{
super(client, plugin, config);
@@ -52,7 +57,9 @@ public class SotetsegHandler extends RoomHandler
public void onStart()
{
if (this.plugin.getRoom() == TheatreRoom.SOTETSEG)
{
return;
}
this.reset();
this.plugin.setRoom(TheatreRoom.SOTETSEG);
@@ -125,68 +132,16 @@ public class SotetsegHandler extends RoomHandler
String countdownStr;
if (id == 1607)
{
countdownStr = "R " + String.valueOf(ticksRemaining);
countdownStr = "R " + ticksRemaining;
}
else
{
countdownStr = "M " + String.valueOf(ticksRemaining);
countdownStr = "M " + ticksRemaining;
}
projectileMap.put(p, countdownStr);
}
renderProjectiles(graphics, projectileMap);
//Legacy code from yuri, works great but shows all projectiles not just ones targetting local player
/**
for (Projectile projectile : client.getProjectiles())
{
int id = projectile.getId();
String name = null;
Color color = null;
double millis = projectile.getRemainingCycles();
double ticks = millis / 60; // 10 millis per cycle, 0.6 ticks per second, 10/0.6 = 60
double round = Math.round(ticks * 10d) / 10d;
if (id == TheatreConstant.SOTETSEG_BOMB)
{
name = "" + round;
color = Color.WHITE;
}
else if (id == TheatreConstant.SOTETSEG_MAGE)
{
name = "" + round;
color = new Color(64, 224, 208, 255);
}
else if (id == TheatreConstant.SOTETSEG_RANGE)
{
name = "" + round;
color = new Color(57, 255, 20, 255);
}
if (name != null)
{
int x = (int) projectile.getX();
int y = (int) projectile.getY();
LocalPoint point = new LocalPoint(x, y);
Point loc = Perspective.getCanvasTextLocation(client, graphics, point, name, 0);
if (loc != null)
{
if (id == TheatreConstant.SOTETSEG_BOMB)
{
graphics.setFont(new Font("Arial", Font.BOLD, 20));
}
else
{
graphics.setFont(new Font("Arial", Font.BOLD, 17));
}
OverlayUtil.renderTextLocation(graphics, loc, name, color);
}
}
}**/
}
}
@@ -242,12 +197,16 @@ public class SotetsegHandler extends RoomHandler
if (t.getPlane() == 0)
{
if (!blackOverworld.contains(p))
{
blackOverworld.add(p);
}
}
else
{
if (!blackUnderworld.contains(p))
{
blackUnderworld.add(p);
}
}
}
@@ -265,7 +224,9 @@ public class SotetsegHandler extends RoomHandler
else
{
if (!redUnderworld.contains(p))
{
redUnderworld.add(p);
}
}
}
}
@@ -282,19 +243,10 @@ public class SotetsegHandler extends RoomHandler
playerY = client.getLocalPlayer().getLocalLocation().getY();
//Remove projectiles that are about to die
if (!soteyProjectiles.isEmpty())
{
for (Iterator<Projectile> it = soteyProjectiles.keySet().iterator(); it.hasNext(); )
{
Projectile projectile = it.next();
if (projectile.getRemainingCycles() < 1)
{
it.remove();
}
}
soteyProjectiles.keySet().removeIf(p -> p.getRemainingCycles() < 1);
}
boolean sotetsegFighting = false;
@@ -338,7 +290,7 @@ public class SotetsegHandler extends RoomHandler
WorldPoint pW = new WorldPoint(p.getX() - 1, p.getY(), p.getPlane());
if (!((redUnderworld.contains(pN) && redUnderworld.contains(pS)) ||
(redUnderworld.contains(pE) && redUnderworld.contains(pW))))
(redUnderworld.contains(pE) && redUnderworld.contains(pW))))
{
gridPath.add(new Point(p.getX() - minX, p.getY() - minY));
if (!messageSent)

View File

@@ -1,5 +1,12 @@
package net.runelite.client.plugins.theatre.rooms;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import lombok.AccessLevel;
import lombok.Getter;
import net.runelite.api.Actor;
@@ -22,38 +29,26 @@ import net.runelite.client.plugins.theatre.TheatreConfig;
import net.runelite.client.plugins.theatre.TheatreConstant;
import net.runelite.client.plugins.theatre.TheatrePlugin;
import net.runelite.client.plugins.theatre.TheatreRoom;
import java.awt.*;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class VerzikHandler extends RoomHandler
{
@Getter(AccessLevel.PACKAGE)
private final Map<Projectile, WorldPoint> Verzik_RangeProjectiles = new HashMap<>();
//My variables
private int redCrabsTimer;
@Getter(AccessLevel.PUBLIC)
private int versikCounter = 0;
private int attacksLeft = 0;
@Getter(AccessLevel.PUBLIC)
private NPC npc;
private int lastId = -1;
private int autosSinceYellows;
private int yellows;
private boolean tornados;
private int attackTick = -1;
private long startTime = 0;
//My variables
int redCrabsTimer;
public VerzikHandler(Client client, TheatrePlugin plugin, TheatreConfig config)
{
super(client, plugin, config);
@@ -63,7 +58,9 @@ public class VerzikHandler extends RoomHandler
public void onStart()
{
if (this.plugin.getRoom() == TheatreRoom.VERSIK)
{
return;
}
this.reset();
this.plugin.setRoom(TheatreRoom.VERSIK);
@@ -117,10 +114,10 @@ public class VerzikHandler extends RoomHandler
if (this.versikCounter >= 0)
{
String str = Integer.toString(versikCounter);
LocalPoint lp = npc.getLocalLocation();
Point point = Perspective.getCanvasTextLocation(client, graphics, lp, str, 0);
renderTextLocation(graphics, str, 20, Font.BOLD, Color.CYAN, point);
}
}
@@ -141,19 +138,6 @@ public class VerzikHandler extends RoomHandler
}
}
/*
if (npc.getAnimation() == 8117){
if (this.redCrabsTimer > 0){
String str = Integer.toString(redCrabsTimer);
LocalPoint lp = npc.getLocalLocation();
Point point = Perspective.getCanvasTextLocation(client, graphics, lp, str, 60);
renderTextLocation(graphics, str, 15, Font.BOLD, Color.WHITE, point);
}
}*/
else if (id == TheatreConstant.VERZIK_ID_P3)
{
if (config.p3attacks())
@@ -162,10 +146,10 @@ public class VerzikHandler extends RoomHandler
if (versikCounter > 0 && versikCounter < 8)
{
String str = Math.max(versikCounter, 0) + "";// + " | " + model.getModelHeight();// + " | " + model.getRadius();
LocalPoint lp = npc.getLocalLocation();
Point point = Perspective.getCanvasTextLocation(client, graphics, lp, str, 0);
renderTextLocation(graphics, str, 15, Font.BOLD, Color.WHITE, point);
}
}
@@ -210,16 +194,22 @@ public class VerzikHandler extends RoomHandler
for (NPC npc : client.getNpcs())
{
if (npc.getName() == null)
{
continue;
}
Pattern p = Pattern.compile("Nylocas (Hagios|Toxobolos|Ischyros)");
Matcher m = p.matcher(npc.getName());
if (!m.matches())
{
continue;
}
Actor target = npc.getInteracting();
if (target == null || target.getName() == null)
{
continue;
}
LocalPoint lp = npc.getLocalLocation();
Color color = local.getName().equals(target.getName()) ? Color.RED : Color.GREEN;
@@ -231,15 +221,17 @@ public class VerzikHandler extends RoomHandler
}
}
public void onProjectileMoved(ProjectileMoved event)
{
Projectile projectile = event.getProjectile();
if (projectile.getId() == 1583)
public void onProjectileMoved(ProjectileMoved event)
{
WorldPoint p = WorldPoint.fromLocal(client, event.getPosition());
Verzik_RangeProjectiles.put(projectile, p);
Projectile projectile = event.getProjectile();
if (projectile.getId() == 1583)
{
WorldPoint p = WorldPoint.fromLocal(client, event.getPosition());
Verzik_RangeProjectiles.put(projectile, p);
}
}
}
public void onNpcSpawned(NpcSpawned event)
{
NPC npc = event.getNpc();
@@ -282,7 +274,9 @@ public void onProjectileMoved(ProjectileMoved event)
Actor actor = event.getActor();
if (!(actor instanceof NPC))
{
return;
}
NPC npc = (NPC) actor;
int id = npc.getId();
@@ -325,29 +319,22 @@ public void onProjectileMoved(ProjectileMoved event)
}
if (!Verzik_RangeProjectiles.isEmpty())
{
for (Iterator<Projectile> it = Verzik_RangeProjectiles.keySet().iterator(); it.hasNext();)
{
Projectile projectile = it.next();
if (projectile.getRemainingCycles() < 1)
{
it.remove();
}
}
Verzik_RangeProjectiles.keySet().removeIf(p -> p.getRemainingCycles() < 1);
}
if (this.yellows == 0)
{
//if (this.autosSinceYellows > 0){
for (GraphicsObject object : client.getGraphicsObjects())
for (GraphicsObject object : client.getGraphicsObjects())
{
if (object.getId() == TheatreConstant.GRAPHIC_ID_YELLOWS)
{
if (object.getId() == TheatreConstant.GRAPHIC_ID_YELLOWS)
{
this.yellows = 14;
this.yellows = 14;
// this.versikCounter = 22;
this.autosSinceYellows = 0;
System.out.println("Yellows have spawned.");
break;
}
this.autosSinceYellows = 0;
System.out.println("Yellows have spawned.");
break;
}
}
//}
}
else
@@ -380,7 +367,9 @@ public void onProjectileMoved(ProjectileMoved event)
}
if (foundTornado && foundVerzik)
{
break;
}
}
if (!foundVerzik)
@@ -390,7 +379,9 @@ public void onProjectileMoved(ProjectileMoved event)
}
if (npc == null)
{
return;
}
int id = npc.getId();
@@ -410,7 +401,9 @@ public void onProjectileMoved(ProjectileMoved event)
long minutes = seconds / 60L;
seconds = seconds % 60;
if (config.extraTimers())
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'The Final Challenge - Part 1' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
{
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'The Final Challenge - Part 1' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
}
}
else if (id == TheatreConstant.VERZIK_ID_P2_TRANSFORM && this.startTime != 0)
{
@@ -424,7 +417,9 @@ public void onProjectileMoved(ProjectileMoved event)
this.versikCounter = -1;
this.attacksLeft = 9;
if (config.extraTimers())
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'The Final Challenge - Part 2' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
{
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'The Final Challenge - Part 2' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
}
}
}
@@ -443,7 +438,9 @@ public void onProjectileMoved(ProjectileMoved event)
{
versikCounter--;
if (versikCounter < 0)
{
versikCounter = 0;
}
}
else if (id == TheatreConstant.VERZIK_ID_P3)
{

View File

@@ -1,5 +1,17 @@
package net.runelite.client.plugins.theatre.rooms.nylocas;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Polygon;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;
@@ -18,41 +30,26 @@ import net.runelite.client.plugins.theatre.TheatreConstant;
import net.runelite.client.plugins.theatre.TheatrePlugin;
import net.runelite.client.plugins.theatre.TheatreRoom;
import java.awt.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class NyloHandler extends RoomHandler
public class NyloHandler extends RoomHandler
{
public long startTime = 0L;
int startTick = 0;
ArrayList<NPC> waveSpawns = new ArrayList<NPC>();
ArrayList<NPC> waveAgros = new ArrayList<NPC>();
@Getter(AccessLevel.PUBLIC)
private Map<NPC, Integer> pillars = new HashMap<>();
@Getter(AccessLevel.PUBLIC)
private Map<NPC, Integer> spiders = new HashMap<>();
@Getter
@Setter
private int wave = 0;
private NyloOverlay overlay = null;
private NyloPredictor predictor = null;
private Point south = new Point(64, 41);
private Point west = new Point(49, 56);
private Point east = new Point(78, 56);
public long startTime = 0L;
public int startTick = 0;
public ArrayList<NPC> waveSpawns = new ArrayList<NPC>();
public ArrayList<NPC> waveAgros = new ArrayList<NPC>();
public NyloHandler(Client client, TheatrePlugin plugin, TheatreConfig config)
{
super(client, plugin, config);
@@ -62,7 +59,9 @@ public class NyloHandler extends RoomHandler
public void onStart()
{
if (this.plugin.getRoom() == TheatreRoom.NYLOCAS)
{
return;
}
this.reset();
@@ -102,7 +101,9 @@ public class NyloHandler extends RoomHandler
if (this.startTime != 0)
{
if (config.extraTimers())
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'The Nylocas - Waves' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
{
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'The Nylocas - Waves' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
}
}
System.out.println("Stopping Nylocas Room");
}
@@ -159,7 +160,7 @@ public class NyloHandler extends RoomHandler
for (NPC npc : pillars.keySet())
{
final int health = pillars.get(npc);
final String healthStr = String.valueOf(health) + "%";
final String healthStr = health + "%";
WorldPoint p = npc.getWorldLocation();
LocalPoint lp = LocalPoint.fromWorld(client, p.getX() + 1, p.getY() + 1);
@@ -203,45 +204,21 @@ public class NyloHandler extends RoomHandler
Set<NPC> toHighlight = new HashSet<NPC>();
/**
if (config.highlightNyloParents())
{
for (NPC npc : new ArrayList<NPC>(this.waveSpawns))
{
try
{
if (npc.getHealthRatio() == 0 || npc.isDead())
{
this.waveSpawns.remove(npc);
continue;
}
if (!toHighlight.contains(npc))
toHighlight.add(npc);
}
catch (Exception ex)
{
}
}
}**/
if (config.highlightNyloAgros())
if (config.highlightNyloAgros())
{
for (NPC npc : new ArrayList<NPC>(this.waveAgros))
{
try
{
if (npc.getHealthRatio() == 0 || npc.isDead())
if (npc.getHealthRatio() == 0 || npc.isDead())
{
this.waveAgros.remove(npc);
continue;
}
if (!toHighlight.contains(npc))
toHighlight.add(npc);
}
catch (Exception ex)
toHighlight.add(npc);
}
catch (Exception ex)
{
}
@@ -258,58 +235,25 @@ public class NyloHandler extends RoomHandler
String name = npc.getName() != null ? npc.getName() : "";
if (name.contains("Hagios"))
{
color = Color.CYAN;
}
else if (name.contains("Toxobolos"))
{
color = Color.GREEN;
}
else
{
color = Color.LIGHT_GRAY;
}
renderPoly(graphics, color, objectClickbox);
}
}
catch (Exception ex)
{
}
}
/**
if (config.showNylocasSpawns() && predictor != null)
{
NyloPredictor.Wave nextWave = predictor.getNextWave();
if (nextWave != null)
{
TheatreConfig.NYLOCAS mark = config.highlightNyloRoles();
String southStr = predictor.getSpawnStr(NyloPredictor.Spawn.SOUTH, nextWave);
if (southStr != null && south != null)
{
LocalPoint lp = LocalPoint.fromScene(south.getX(), south.getY());
Point point = Perspective.getCanvasTextLocation(client, graphics, lp, southStr, 1);
Color color = mark != TheatreConfig.NYLOCAS.NONE ? (((southStr.contains("Mage") && mark == TheatreConfig.NYLOCAS.MAGE) || (southStr.contains("Range") && mark == TheatreConfig.NYLOCAS.RANGER) || (southStr.contains("Melee") && mark == TheatreConfig.NYLOCAS.MELEE)) ? Color.MAGENTA : Color.RED) : Color.RED;
renderTextLocation(graphics, southStr, 18, Font.BOLD, color, point);
// drawTile(graphics, WorldPoint.fromLocal(client, lp), new Color(0, 150, 200), 2, 150, 10);
}
String westStr = predictor.getSpawnStr(NyloPredictor.Spawn.WEST, nextWave);
if (westStr != null && west != null)
{
LocalPoint lp = LocalPoint.fromScene(west.getX(), west.getY());
Point point = Perspective.getCanvasTextLocation(client, graphics, lp, westStr, 1);
Color color = mark != TheatreConfig.NYLOCAS.NONE ? (((westStr.contains("Mage") && mark == TheatreConfig.NYLOCAS.MAGE) || (westStr.contains("Range") && mark == TheatreConfig.NYLOCAS.RANGER) || (westStr.contains("Melee") && mark == TheatreConfig.NYLOCAS.MELEE)) ? Color.MAGENTA : Color.RED) : Color.RED;
renderTextLocation(graphics, westStr, 18, Font.BOLD, color, point);
// drawTile(graphics, WorldPoint.fromLocal(client, lp), new Color(0, 150, 200), 2, 150, 10);
}
String eastStr = predictor.getSpawnStr(NyloPredictor.Spawn.EAST, nextWave);
if (eastStr != null && east != null)
{
LocalPoint lp = LocalPoint.fromScene(east.getX(), east.getY());
Point point = Perspective.getCanvasTextLocation(client, graphics, lp, eastStr, 1);
Color color = mark != TheatreConfig.NYLOCAS.NONE ? (((eastStr.contains("Mage") && mark == TheatreConfig.NYLOCAS.MAGE) || (eastStr.contains("Range") && mark == TheatreConfig.NYLOCAS.RANGER) || (eastStr.contains("Melee") && mark == TheatreConfig.NYLOCAS.MELEE)) ? Color.MAGENTA : Color.RED) : Color.RED;
renderTextLocation(graphics, eastStr, 18, Font.BOLD, color, point);
// drawTile(graphics, WorldPoint.fromLocal(client, lp), new Color(0, 150, 200), 2, 150, 10);
}
}
}**/
}
public void onNpcSpawned(NpcSpawned event)
@@ -351,15 +295,9 @@ public class NyloHandler extends RoomHandler
NPC npc = event.getNpc();
int id = npc.getId();
if (this.waveSpawns.contains(npc))
{
this.waveSpawns.remove(npc);
}
this.waveSpawns.remove(npc);
if (this.waveAgros.contains(npc))
{
this.waveAgros.remove(npc);
}
this.waveAgros.remove(npc);
if (id == TheatreConstant.NPC_ID_NYLOCAS_PILLAR)
{
@@ -393,7 +331,7 @@ public class NyloHandler extends RoomHandler
if (plugin.getRoom() != TheatreRoom.NYLOCAS)
{
return;
}
}
else
{
boolean findPillar = false;

View File

@@ -43,18 +43,17 @@ import net.runelite.client.ui.overlay.components.table.TableAlignment;
import net.runelite.client.ui.overlay.components.table.TableComponent;
import net.runelite.client.util.ColorUtil;
class NyloOverlay extends Overlay
class NyloOverlay extends Overlay
{
private final Client client;
private final TheatrePlugin plugin;
private final TheatreConfig config;
private final PanelComponent panelComponent = new PanelComponent();
private NyloHandler nylohandler;
public NyloOverlay(Client client, TheatrePlugin plugin, TheatreConfig config, NyloHandler nylohandler)
NyloOverlay(Client client, TheatrePlugin plugin, TheatreConfig config, NyloHandler nylohandler)
{
super(plugin);
@@ -63,7 +62,6 @@ class NyloOverlay extends Overlay
this.client = client;
this.plugin = plugin;
this.config = config;
this.nylohandler = nylohandler;
getMenuEntries().add(new OverlayMenuEntry(RUNELITE_OVERLAY_CONFIG, OPTION_CONFIGURE, "Nylocas Overlay"));
@@ -111,14 +109,14 @@ class NyloOverlay extends Overlay
if (nyloCount > 12)
{
tableComponent.addRow("Total Nylocas:", ColorUtil.prependColorTag(nyloCount + " / 12", Color.RED));
}
}
else
{
tableComponent.addRow("Total Nylocas:", ColorUtil.prependColorTag(nyloCount + " / 12", Color.GREEN));
}
}
else
}
else
{
if (nyloCount > 24)
{
@@ -132,23 +130,6 @@ class NyloOverlay extends Overlay
panelComponent.getChildren().add(tableComponent);
/**
panelComponent.getChildren().add(LineComponent.builder()
.left("Ischyros:")
.right(Integer.toString(ischyros))
.build());
panelComponent.getChildren().add(LineComponent.builder()
.left("Toxobolos:")
.right(Integer.toString(toxobolos))
.build());
panelComponent.getChildren().add(LineComponent.builder()
.left("Hagios:")
.right(Integer.toString(hagios))
.build());
**/
return panelComponent.render(graphics);
}
}

View File

@@ -1,91 +1,19 @@
package net.runelite.client.plugins.theatre.rooms.nylocas;
import net.runelite.api.Client;
import net.runelite.api.NPC;
import net.runelite.api.coords.LocalPoint;
import net.runelite.api.events.NpcSpawned;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.runelite.api.Client;
import net.runelite.api.NPC;
import net.runelite.api.coords.LocalPoint;
import net.runelite.api.events.NpcSpawned;
public class NyloPredictor
{
public enum NylocasType
{
MELEE_162,
RANGE_162,
MAGE_162,
MELEE_260,
RANGE_260,
MAGE_260;
}
public enum Spawn
{
WEST,
SOUTH,
EAST;
}
public static class Nylocas
{
private NylocasType type;
private Spawn spawn;
public Nylocas(NylocasType type, Spawn spawn)
private static final Wave[] NYLOCAS_WAVES = new Wave[]
{
this.type = type;
this.spawn = spawn;
}
public NylocasType getType()
{
return this.type;
}
public Spawn getSpawn()
{
return this.spawn;
}
@Override
public boolean equals(Object object)
{
if (object != null && (object instanceof Nylocas))
{
Nylocas nylo = (Nylocas) object;
if (nylo.getType() == this.type && nylo.getSpawn() == this.spawn)
{
return true;
}
}
return false;
}
}
public static class Wave
{
private Nylocas[] spawns;
public Wave(Nylocas... nylocas)
{
this.spawns = nylocas;
}
public Nylocas[] getSpawns()
{
return this.spawns;
}
}
public static final Wave[] NYLOCAS_WAVES = new Wave[]
{
new Wave(new Nylocas(NylocasType.RANGE_162, Spawn.WEST), new Nylocas(NylocasType.MAGE_162, Spawn.SOUTH), new Nylocas(NylocasType.MELEE_162, Spawn.EAST)),
new Wave(new Nylocas(NylocasType.MAGE_162, Spawn.WEST), new Nylocas(NylocasType.MELEE_162, Spawn.SOUTH), new Nylocas(NylocasType.RANGE_162, Spawn.EAST)),
new Wave(new Nylocas(NylocasType.MELEE_162, Spawn.WEST), new Nylocas(NylocasType.RANGE_162, Spawn.SOUTH), new Nylocas(NylocasType.MAGE_162, Spawn.EAST)),
@@ -117,15 +45,16 @@ public class NyloPredictor
new Wave(new Nylocas(NylocasType.MELEE_162, Spawn.WEST), new Nylocas(NylocasType.RANGE_162, Spawn.WEST), new Nylocas(NylocasType.MELEE_260, Spawn.SOUTH), new Nylocas(NylocasType.RANGE_162, Spawn.EAST), new Nylocas(NylocasType.MAGE_162, Spawn.EAST)),
new Wave(new Nylocas(NylocasType.RANGE_260, Spawn.WEST), new Nylocas(NylocasType.MAGE_162, Spawn.SOUTH), new Nylocas(NylocasType.MELEE_162, Spawn.SOUTH), new Nylocas(NylocasType.MAGE_260, Spawn.EAST)),
new Wave(new Nylocas(NylocasType.MELEE_162, Spawn.WEST), new Nylocas(NylocasType.RANGE_162, Spawn.WEST), new Nylocas(NylocasType.MAGE_162, Spawn.SOUTH), new Nylocas(NylocasType.MELEE_162, Spawn.SOUTH), new Nylocas(NylocasType.RANGE_162, Spawn.EAST), new Nylocas(NylocasType.MAGE_162, Spawn.EAST))
};
};
public Client client;
public NyloHandler handler;
int westBound = 50;
int eastBound = 77;
int southBound = 42;
private NyloHandler handler;
private Map<Nylocas, NPC> currentSpawns = new HashMap<Nylocas, NPC>();
private int currentIndex = -1;
public Map<Nylocas, NPC> currentSpawns = new HashMap<Nylocas, NPC>();
public int currentIndex = -1;
public NyloPredictor(Client client, NyloHandler handler)
NyloPredictor(Client client, NyloHandler handler)
{
this.client = client;
this.handler = handler;
@@ -138,12 +67,6 @@ public class NyloPredictor
this.currentIndex = -1;
}
public int westBound = 50;
public int eastBound = 77;
public int southBound = 42;
public void onNpcSpawned(NpcSpawned event)
{
NPC npc = event.getNpc();
@@ -157,11 +80,11 @@ public class NyloPredictor
if (x <= westBound)
{
spawn = Spawn.WEST;
}
}
else if (x >= eastBound)
{
spawn = Spawn.EAST;
}
}
else if (y <= southBound)
{
spawn = Spawn.SOUTH;
@@ -175,11 +98,11 @@ public class NyloPredictor
if (name.contains("Hagios"))
{
type = NylocasType.valueOf("MAGE_" + level);
}
}
else if (name.contains("Toxobolos"))
{
type = NylocasType.valueOf("RANGE_" + level);
}
}
else if (name.contains("Ischyros"))
{
type = NylocasType.valueOf("MELEE_" + level);
@@ -213,7 +136,7 @@ public class NyloPredictor
int index = queue.indexOf(nylocas);
Nylocas hashed = queue.remove(index);
npcs.put(currentSpawns.get(hashed), hashed);
}
}
else
{
found = false;
@@ -257,12 +180,14 @@ public class NyloPredictor
for (NPC npc : client.getNpcs())
{
if (npc.getHealthRatio() == 0)
{
continue;
}
if (npc.getName().equalsIgnoreCase("Nylocas Hagios"))
{
mage_level += npc.getCombatLevel();
mage_count += 1;
}
}
else if (npc.getName().equalsIgnoreCase("Nylocas Toxobolos"))
{
range_level += npc.getCombatLevel();
@@ -300,7 +225,7 @@ public class NyloPredictor
}
}
public boolean isAgressive(NylocasType type, Spawn spawn, int wave)
private boolean isAgressive(NylocasType type, Spawn spawn, int wave)
{
if (wave == 0 && spawn == Spawn.WEST)
{
@@ -329,9 +254,13 @@ public class NyloPredictor
else if (wave == 9)
{
if (spawn == Spawn.EAST && type == NylocasType.RANGE_162)
{
return true;
else if (spawn == Spawn.WEST)
return true;
}
else
{
return spawn == Spawn.WEST;
}
}
else if (wave == 10 && (spawn == Spawn.EAST || spawn == Spawn.WEST))
{
@@ -344,23 +273,35 @@ public class NyloPredictor
else if (wave == 12)
{
if (spawn == Spawn.WEST && type == NylocasType.MAGE_162)
{
return true;
else if (spawn == Spawn.EAST)
return true;
}
else
{
return spawn == Spawn.EAST;
}
}
else if (wave == 13)
{
if (spawn == Spawn.WEST && type == NylocasType.MELEE_162)
{
return true;
else if (spawn == Spawn.EAST)
return true;
}
else
{
return spawn == Spawn.EAST;
}
}
else if (wave == 14)
{
if (spawn == Spawn.WEST && type == NylocasType.RANGE_162)
{
return true;
else if (spawn == Spawn.EAST && type == NylocasType.MAGE_162)
return true;
}
else
{
return spawn == Spawn.EAST && type == NylocasType.MAGE_162;
}
}
else if (wave == 17 && spawn == Spawn.WEST)
{
@@ -405,17 +346,20 @@ public class NyloPredictor
else if (wave == 28)
{
if (spawn == Spawn.EAST && type == NylocasType.RANGE_162)
{
return true;
else if (spawn == Spawn.WEST && type == NylocasType.MELEE_162)
return true;
}
else
{
return spawn == Spawn.WEST && type == NylocasType.MELEE_162;
}
}
else if (wave == 29 && spawn == Spawn.EAST)
else
{
return true;
return wave == 29 && spawn == Spawn.EAST;
}
return false;
}
public int getCurrentWave()
@@ -487,4 +431,72 @@ public class NyloPredictor
return types.length() > 0 ? types : null;
}
}
public enum NylocasType
{
MELEE_162,
RANGE_162,
MAGE_162,
MELEE_260,
RANGE_260,
MAGE_260
}
public enum Spawn
{
WEST,
SOUTH,
EAST
}
public static class Nylocas
{
private NylocasType type;
private Spawn spawn;
public Nylocas(NylocasType type, Spawn spawn)
{
this.type = type;
this.spawn = spawn;
}
public NylocasType getType()
{
return this.type;
}
public Spawn getSpawn()
{
return this.spawn;
}
@Override
public boolean equals(Object object)
{
if (object != null && (object instanceof Nylocas))
{
Nylocas nylo = (Nylocas) object;
return nylo.getType() == this.type && nylo.getSpawn() == this.spawn;
}
return false;
}
}
public static class Wave
{
private Nylocas[] spawns;
public Wave(Nylocas... nylocas)
{
this.spawns = nylocas;
}
public Nylocas[] getSpawns()
{
return this.spawns;
}
}
}

View File

@@ -22,10 +22,8 @@ public class XarpusCounter extends Overlay
private final Client client;
private final TheatrePlugin plugin;
private final TheatreConfig config;
private XarpusHandler xarpusHandler;
PanelComponent panelComponent = new PanelComponent();
private XarpusHandler xarpusHandler;
public XarpusCounter(Client client, TheatrePlugin plugin, TheatreConfig config, XarpusHandler xarpushandler)
{
@@ -51,13 +49,13 @@ public class XarpusCounter extends Overlay
// Build overlay title
panelComponent.getChildren().add(TitleComponent.builder()
.text(overlayTitle)
.color(Color.GREEN)
.build());
.text(overlayTitle)
.color(Color.GREEN)
.build());
//Set the size of overlay
panelComponent.setPreferredSize(new Dimension(
graphics.getFontMetrics().stringWidth(overlayTitle) + 30, 0
graphics.getFontMetrics().stringWidth(overlayTitle) + 30, 0
));
TableComponent tableComponent = new TableComponent();

View File

@@ -1,5 +1,13 @@
package net.runelite.client.plugins.theatre.rooms.xarpus;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Polygon;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import lombok.Getter;
import net.runelite.api.ChatMessageType;
import net.runelite.api.Client;
@@ -19,20 +27,13 @@ import net.runelite.client.plugins.theatre.TheatreConfig;
import net.runelite.client.plugins.theatre.TheatreConstant;
import net.runelite.client.plugins.theatre.TheatrePlugin;
import net.runelite.client.plugins.theatre.TheatreRoom;
import java.awt.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
public class XarpusHandler extends RoomHandler
{
private int previousTurn;
private boolean staring;
private final Map<GroundObject, Integer> exhumes = new HashMap<>();
private int previousTurn;
private boolean staring;
private int ticksUntilShoot = 8;
@Getter
@@ -56,7 +57,9 @@ public class XarpusHandler extends RoomHandler
public void onStart()
{
if (this.plugin.getRoom() == TheatreRoom.XARPUS)
{
return;
}
this.reset();
this.plugin.setRoom(TheatreRoom.XARPUS);
@@ -102,7 +105,9 @@ public class XarpusHandler extends RoomHandler
public void render(Graphics2D graphics)
{
if (npc == null)
{
return;
}
if (npc.getId() == NpcID.XARPUS_8340) //&& !staring&& config.showXarpusTick())
{
@@ -111,13 +116,15 @@ public class XarpusHandler extends RoomHandler
this.up = true;
long elapsedTime = System.currentTimeMillis() - this.startTime;
long seconds = elapsedTime / 1000L;
long minutes = seconds / 60L;
seconds = seconds % 60;
this.ticksUntilShoot = 8;
if (config.extraTimers())
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'Xarpus - Recovery' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
{
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'Xarpus - Recovery' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
}
}
final String ticksLeftStr = String.valueOf(ticksUntilShoot);
@@ -257,7 +264,9 @@ public class XarpusHandler extends RoomHandler
long minutes = seconds / 60L;
seconds = seconds % 60;
if (config.extraTimers())
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'Xarpus - Acid' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
{
this.client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", "Wave 'Xarpus - Acid' completed! Duration: <col=ff0000>" + minutes + ":" + twoDigitString(seconds), null);
}
}
ticksUntilShoot = 6;
@@ -275,7 +284,7 @@ public class XarpusHandler extends RoomHandler
if (staring)
{
ticksUntilShoot = 8;
}
}
else
{
ticksUntilShoot = 4;

View File

@@ -1,18 +1,20 @@
package net.runelite.client.plugins.theatre.timers;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics2D;
import javax.inject.Inject;
import net.runelite.api.Client;
import static net.runelite.api.MenuAction.RUNELITE_OVERLAY_CONFIG;
import net.runelite.api.Player;
import net.runelite.client.plugins.theatre.TheatrePlugin;
import net.runelite.client.ui.overlay.Overlay;
import static net.runelite.client.ui.overlay.OverlayManager.OPTION_CONFIGURE;
import net.runelite.client.ui.overlay.OverlayMenuEntry;
import net.runelite.client.ui.overlay.OverlayPosition;
import net.runelite.client.ui.overlay.OverlayPriority;
import net.runelite.client.ui.overlay.components.PanelComponent;
import net.runelite.client.ui.overlay.components.TitleComponent;
import javax.inject.Inject;
import java.awt.*;
import static net.runelite.api.MenuAction.RUNELITE_OVERLAY_CONFIG;
import static net.runelite.client.ui.overlay.OverlayManager.OPTION_CONFIGURE;
public class RoomTimer extends Overlay
{
@@ -25,9 +27,9 @@ public class RoomTimer extends Overlay
@Inject
public RoomTimer (Client client, TheatrePlugin plugin)
public RoomTimer(Client client, TheatrePlugin plugin)
{
super (plugin);
super(plugin);
setPosition(OverlayPosition.ABOVE_CHATBOX_RIGHT);
setPriority(OverlayPriority.HIGH);
@@ -40,15 +42,17 @@ public class RoomTimer extends Overlay
@Override
public Dimension render(Graphics2D graphics)
public Dimension render(Graphics2D graphics)
{
panelComponent.getChildren().clear();
Player local = client.getLocalPlayer();
if (local == null || local.getName() == null)
{
return null;
}
switch (plugin.getRoom())
switch (plugin.getRoom())
{
case MAIDEN:
plugin.getMaidenHandler().render(graphics);

View File

@@ -4,5 +4,5 @@ import java.util.HashMap;
public interface Timeable
{
public abstract HashMap<String, Long> getTimes();
HashMap<String, Long> getTimes();
}