-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSquareOverlay.java
More file actions
executable file
·154 lines (127 loc) · 5.24 KB
/
SquareOverlay.java
File metadata and controls
executable file
·154 lines (127 loc) · 5.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package net.runelite.client.plugins;
import net.runelite.api.*;
import net.runelite.api.Point;
import net.runelite.api.coords.LocalPoint;
import net.runelite.api.coords.WorldPoint;
import net.runelite.api.widgets.Widget;
import net.runelite.client.ui.overlay.OverlayLayer;
import net.runelite.client.ui.overlay.OverlayUtil;
import net.runelite.client.ui.overlay.infobox.Timer;
import java.awt.*;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.time.Duration;
import java.time.Instant;
import java.time.temporal.ChronoUnit;
import java.util.HashMap;
import static net.runelite.client.plugins.groundmarkers.GroundMarkerOverlay.inbetweenTile;
public class SquareOverlay {
public static OverlayLayer OVERLAY_LAYER2 = OverlayLayer.ABOVE_WIDGETS;
public static OverlayLayer OVERLAY_LAYER = OverlayLayer.UNDER_WIDGETS;
public static void drawCenterSquare(Graphics2D g, int centerX, int centerY, int size, Color color)
{
g.setColor(color);
g.fillRect(centerX - size / 2, centerY - size / 2, size, size);
}
public static void drawCenterSquare(Graphics2D g, double centerX, double centerY, int size, Color color)
{
drawCenterSquare(g, (int)centerX, (int)centerY, size, color);
}
public static void drawCenterSquare(Graphics2D g, Rectangle bounds, int size, Color color)
{
drawCenterSquare(g, bounds.getCenterX(), bounds.getCenterY(), size, color);
}
public static void drawCenterSquare(Graphics2D g, Rectangle2D bounds, int size, Color color)
{
drawCenterSquare(g, bounds.getCenterX(), bounds.getCenterY(), size, color);
}
public static void drawCenterSquare(Graphics2D g, net.runelite.api.Point p, int size, Color color)
{
drawCenterSquare(g, p.getX(), p.getY(), size, color);
}
public static void drawCenterSquare(Graphics2D g, Actor actor, int size, Color color)
{
Point p = actor.getCanvasTextLocation(g, ".", actor.getLogicalHeight() / 2);
if (p != null)
drawCenterSquare(g, p.getX(), p.getY(), size, color);
}
public static void drawCenterSquare(Graphics2D g, Client client, WorldPoint worldPoint, int size, Color color)
{
LocalPoint lp = LocalPoint.fromWorld(client, worldPoint);
if (lp == null) return;
Polygon poly = Perspective.getCanvasTilePoly(client, lp);
if (poly == null) return;
drawCenterSquare(g, poly, size, color);
}
public static void drawOnMinimap(Client client, Graphics2D graphics, WorldPoint point, Color color, int size)
{
Player local = client.getLocalPlayer();
if (local == null) return;
WorldPoint playerLocation = local.getWorldLocation();
int distance = point.distanceTo(playerLocation);
if (distance >= 100 || point.getPlane() != client.getPlane())
{
return;
}
LocalPoint lp = LocalPoint.fromWorld(client, point);
if (lp == null)
{
return;
}
Point posOnMinimap = Perspective.localToMinimap(client, lp);
if (posOnMinimap == null)
{
return;
}
drawCenterSquare(graphics, posOnMinimap, size, color);
}
public static void drawCenterSquare(Graphics2D g, Polygon p, int size, Color color)
{
Rectangle r = p.getBounds();
drawCenterSquare(g, (int)r.getCenterX(), (int)r.getCenterY(), size, color);
}
public static void drawTile(Client client, Graphics2D graphics, WorldPoint point, Color color, int size)
{
Player local = client.getLocalPlayer();
if (local == null) return;
WorldPoint playerLocation = local.getWorldLocation();
int distance = point.distanceTo(playerLocation);
if (distance >= 100 || point.getPlane() != client.getPlane())
{
return;
}
LocalPoint lp = LocalPoint.fromWorld(client, point);
if (lp == null)
{
return;
}
Polygon poly = Perspective.getCanvasTilePoly(client, lp);
if (poly == null)
{
return;
}
drawCenterSquare(graphics, poly, size, color);
}
private static HashMap<java.awt.Point, Timer> timerHashMap = new HashMap<>();
public static boolean shouldHide(Client client, Rectangle bounds, Plugin plugin, int delay) {
if (bounds == null) return false;
if (delay > 0 &&
bounds.contains(client.getMouseCanvasPosition().getX(), client.getMouseCanvasPosition().getY()))
{
timerHashMap.put(bounds.getLocation(), new Timer(delay, ChronoUnit.MILLIS, new BufferedImage(1, 1, 1), plugin));
return true;
}
if (timerHashMap.containsKey(bounds.getLocation()))
{
Timer timer = timerHashMap.get(bounds.getLocation());
Duration timeLeft = Duration.between(Instant.now(), timer.getEndTime());
if (timeLeft.isNegative())
{
timerHashMap.remove(bounds.getLocation());
return false;
}
return true;
}
return false;
}
}