Update fight cave plugin overlay
This commit is contained in:
@@ -24,43 +24,37 @@
|
||||
*/
|
||||
package net.runelite.client.plugins.fightcave;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.FontMetrics;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.Image;
|
||||
import java.awt.Point;
|
||||
import java.awt.Rectangle;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import net.runelite.api.Client;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.ui.overlay.OverlayPosition;
|
||||
import net.runelite.client.ui.overlay.OverlayPriority;
|
||||
import net.runelite.client.ui.overlay.components.ImagePanelComponent;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
import javax.imageio.ImageIO;
|
||||
import javax.inject.Inject;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import net.runelite.api.Client;
|
||||
import net.runelite.api.widgets.Widget;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.ui.overlay.OverlayPosition;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.Point;
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
|
||||
@Slf4j
|
||||
public class FightCaveOverlay extends Overlay
|
||||
{
|
||||
private static final int WIDTH = 70;
|
||||
private static final int SPACER = 6;
|
||||
private static final int BOTTOM_BORDER = 4;
|
||||
private static final Color GREEN_BACKGROUND = new Color(0, 255, 0, 100);
|
||||
private static final Color RED_BACKGROUND = new Color(255, 0, 0, 100);
|
||||
|
||||
private final Client client;
|
||||
private final FightCavePlugin plugin;
|
||||
|
||||
private Image protectFromMagicImg;
|
||||
private Image protectFromMissilesImg;
|
||||
private BufferedImage protectFromMagicImg;
|
||||
private BufferedImage protectFromMissilesImg;
|
||||
|
||||
@Inject
|
||||
FightCaveOverlay(@Nullable Client client, FightCavePlugin plugin)
|
||||
{
|
||||
setPosition(OverlayPosition.DYNAMIC);
|
||||
setPosition(OverlayPosition.BOTTOM_RIGHT);
|
||||
setPriority(OverlayPriority.HIGH);
|
||||
this.client = client;
|
||||
this.plugin = plugin;
|
||||
}
|
||||
@@ -69,65 +63,23 @@ public class FightCaveOverlay extends Overlay
|
||||
public Dimension render(Graphics2D graphics, Point parent)
|
||||
{
|
||||
JadAttack attack = plugin.getAttack();
|
||||
Rectangle viewport = getViewportBounds();
|
||||
if (attack == null || viewport == null)
|
||||
if (attack == null || client == null || client.isPrayerActive(attack.getPrayer()))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
Image img = getPrayerImage(attack);
|
||||
if (img == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
Color bgColor;
|
||||
Color outlineColor;
|
||||
Widget prayer = client.getWidget(attack.getPrayerWidgetInfo());
|
||||
FontMetrics fm = graphics.getFontMetrics();
|
||||
int height = fm.getHeight() + img.getHeight(null) + SPACER + BOTTOM_BORDER;
|
||||
|
||||
if (client.isPrayerActive(attack.getPrayer()))
|
||||
{
|
||||
bgColor = GREEN_BACKGROUND;
|
||||
outlineColor = Color.GREEN.darker();
|
||||
}
|
||||
else
|
||||
{
|
||||
bgColor = RED_BACKGROUND;
|
||||
outlineColor = Color.RED.darker();
|
||||
}
|
||||
|
||||
int bgX = (int) (viewport.getX() + viewport.getWidth() - WIDTH);
|
||||
int bgY = (int) (viewport.getY() + viewport.getHeight() - height);
|
||||
graphics.setColor(bgColor);
|
||||
graphics.fillRect(bgX, bgY, WIDTH, height);
|
||||
|
||||
if (prayer != null)
|
||||
{
|
||||
graphics.setColor(outlineColor);
|
||||
graphics.draw(prayer.getBounds());
|
||||
}
|
||||
|
||||
graphics.setColor(Color.WHITE);
|
||||
graphics.drawString("TzTok-Jad", bgX + (WIDTH - fm.stringWidth("TzTok-Jad")) / 2, bgY + fm.getHeight());
|
||||
graphics.drawImage(img, bgX + (WIDTH - img.getWidth(null)) / 2, bgY + fm.getHeight() + SPACER, null);
|
||||
|
||||
return null;
|
||||
BufferedImage prayerImage = getPrayerImage(attack);
|
||||
ImagePanelComponent imagePanelComponent = new ImagePanelComponent();
|
||||
imagePanelComponent.setTitle("Switch!");
|
||||
imagePanelComponent.setImage(prayerImage);
|
||||
return imagePanelComponent.render(graphics, parent);
|
||||
}
|
||||
|
||||
private Rectangle getViewportBounds()
|
||||
{
|
||||
Widget viewport = client.getViewportWidget();
|
||||
return viewport != null ? viewport.getBounds() : null;
|
||||
}
|
||||
|
||||
private Image getPrayerImage(JadAttack attack)
|
||||
private BufferedImage getPrayerImage(JadAttack attack)
|
||||
{
|
||||
return attack == JadAttack.MAGIC ? getProtectFromMagicImage() : getProtectFromMissilesImage();
|
||||
}
|
||||
|
||||
private Image getProtectFromMagicImage()
|
||||
private BufferedImage getProtectFromMagicImage()
|
||||
{
|
||||
if (protectFromMagicImg == null)
|
||||
{
|
||||
@@ -137,7 +89,7 @@ public class FightCaveOverlay extends Overlay
|
||||
return protectFromMagicImg;
|
||||
}
|
||||
|
||||
private Image getProtectFromMissilesImage()
|
||||
private BufferedImage getProtectFromMissilesImage()
|
||||
{
|
||||
if (protectFromMissilesImg == null)
|
||||
{
|
||||
@@ -147,9 +99,9 @@ public class FightCaveOverlay extends Overlay
|
||||
return protectFromMissilesImg;
|
||||
}
|
||||
|
||||
private Image getImage(String path)
|
||||
private BufferedImage getImage(String path)
|
||||
{
|
||||
Image image = null;
|
||||
BufferedImage image = null;
|
||||
try
|
||||
{
|
||||
InputStream in = FightCaveOverlay.class.getResourceAsStream(path);
|
||||
|
||||
@@ -26,22 +26,19 @@ package net.runelite.client.plugins.fightcave;
|
||||
|
||||
import net.runelite.api.AnimationID;
|
||||
import net.runelite.api.Prayer;
|
||||
import net.runelite.api.widgets.WidgetInfo;
|
||||
|
||||
public enum JadAttack
|
||||
{
|
||||
MAGIC(AnimationID.TZTOK_JAD_MAGIC_ATTACK, Prayer.PROTECT_FROM_MAGIC, WidgetInfo.PRAYER_PROTECT_FROM_MAGIC),
|
||||
RANGE(AnimationID.TZTOK_JAD_RANGE_ATTACK, Prayer.PROTECT_FROM_MISSILES, WidgetInfo.PRAYER_PROTECT_FROM_MISSILES);
|
||||
MAGIC(AnimationID.TZTOK_JAD_MAGIC_ATTACK, Prayer.PROTECT_FROM_MAGIC),
|
||||
RANGE(AnimationID.TZTOK_JAD_RANGE_ATTACK, Prayer.PROTECT_FROM_MISSILES);
|
||||
|
||||
private final int animation;
|
||||
private final Prayer prayer;
|
||||
private final WidgetInfo prayerWidgetInfo;
|
||||
|
||||
JadAttack(int animation, Prayer prayer, WidgetInfo prayerWidgetInfo)
|
||||
JadAttack(int animation, Prayer prayer)
|
||||
{
|
||||
this.animation = animation;
|
||||
this.prayer = prayer;
|
||||
this.prayerWidgetInfo = prayerWidgetInfo;
|
||||
}
|
||||
|
||||
public int getAnimation()
|
||||
@@ -53,9 +50,4 @@ public enum JadAttack
|
||||
{
|
||||
return prayer;
|
||||
}
|
||||
|
||||
public WidgetInfo getPrayerWidgetInfo()
|
||||
{
|
||||
return prayerWidgetInfo;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user