@@ -26,16 +26,16 @@
|
|||||||
package net.runelite.client.plugins.objectindicators;
|
package net.runelite.client.plugins.objectindicators;
|
||||||
|
|
||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import net.runelite.client.config.Alpha;
|
|
||||||
import net.runelite.client.config.Config;
|
import net.runelite.client.config.Config;
|
||||||
import net.runelite.client.config.ConfigGroup;
|
import net.runelite.client.config.ConfigGroup;
|
||||||
import net.runelite.client.config.ConfigItem;
|
import net.runelite.client.config.ConfigItem;
|
||||||
|
import net.runelite.client.config.Range;
|
||||||
|
|
||||||
@ConfigGroup("objectindicators")
|
@ConfigGroup("objectindicators")
|
||||||
public interface ObjectIndicatorsConfig extends Config
|
public interface ObjectIndicatorsConfig extends Config
|
||||||
{
|
{
|
||||||
@Alpha
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
|
position = 0,
|
||||||
keyName = "markerColor",
|
keyName = "markerColor",
|
||||||
name = "Marker color",
|
name = "Marker color",
|
||||||
description = "Configures the color of object marker"
|
description = "Configures the color of object marker"
|
||||||
@@ -44,4 +44,34 @@ public interface ObjectIndicatorsConfig extends Config
|
|||||||
{
|
{
|
||||||
return Color.YELLOW;
|
return Color.YELLOW;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Range(
|
||||||
|
min = 0,
|
||||||
|
max = 10
|
||||||
|
)
|
||||||
|
@ConfigItem(
|
||||||
|
position = 1,
|
||||||
|
keyName = "stroke",
|
||||||
|
name = "Stroke Size",
|
||||||
|
description = "Configures the stroke size of object marker"
|
||||||
|
)
|
||||||
|
default int stroke()
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Range(
|
||||||
|
min = 0,
|
||||||
|
max = 255
|
||||||
|
)
|
||||||
|
@ConfigItem(
|
||||||
|
position = 2,
|
||||||
|
keyName = "alpha",
|
||||||
|
name = "Alpha",
|
||||||
|
description = "Configures the opacity/alpha of object marker"
|
||||||
|
)
|
||||||
|
default int alpha()
|
||||||
|
{
|
||||||
|
return 20;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,6 +24,8 @@
|
|||||||
*/
|
*/
|
||||||
package net.runelite.client.plugins.objectindicators;
|
package net.runelite.client.plugins.objectindicators;
|
||||||
|
|
||||||
|
import java.awt.BasicStroke;
|
||||||
|
import java.awt.Color;
|
||||||
import java.awt.Dimension;
|
import java.awt.Dimension;
|
||||||
import java.awt.Graphics2D;
|
import java.awt.Graphics2D;
|
||||||
import java.awt.Polygon;
|
import java.awt.Polygon;
|
||||||
@@ -36,7 +38,6 @@ import net.runelite.client.ui.overlay.Overlay;
|
|||||||
import net.runelite.client.ui.overlay.OverlayLayer;
|
import net.runelite.client.ui.overlay.OverlayLayer;
|
||||||
import net.runelite.client.ui.overlay.OverlayPosition;
|
import net.runelite.client.ui.overlay.OverlayPosition;
|
||||||
import net.runelite.client.ui.overlay.OverlayPriority;
|
import net.runelite.client.ui.overlay.OverlayPriority;
|
||||||
import net.runelite.client.ui.overlay.OverlayUtil;
|
|
||||||
|
|
||||||
class ObjectIndicatorsOverlay extends Overlay
|
class ObjectIndicatorsOverlay extends Overlay
|
||||||
{
|
{
|
||||||
@@ -84,15 +85,27 @@ class ObjectIndicatorsOverlay extends Overlay
|
|||||||
|
|
||||||
if (polygon != null)
|
if (polygon != null)
|
||||||
{
|
{
|
||||||
OverlayUtil.renderPolygon(graphics, polygon, config.markerColor());
|
renderPoly(graphics, polygon, config.markerColor(), config.stroke(), config.alpha());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (polygon2 != null)
|
if (polygon2 != null)
|
||||||
{
|
{
|
||||||
OverlayUtil.renderPolygon(graphics, polygon2, config.markerColor());
|
renderPoly(graphics, polygon2, config.markerColor(), config.stroke(), config.alpha());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
private void renderPoly(Graphics2D graphics, Polygon polygon, Color color, int stroke, int alpha)
|
||||||
|
{
|
||||||
|
if (polygon != null)
|
||||||
|
{
|
||||||
|
graphics.setColor(new Color(color.getRed(), color.getGreen(), color.getBlue(), 255));
|
||||||
|
graphics.setStroke(new BasicStroke(stroke));
|
||||||
|
graphics.draw(polygon);
|
||||||
|
graphics.setColor(new Color(color.getRed(), color.getGreen(), color.getBlue(), alpha));
|
||||||
|
graphics.fill(polygon);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user