runecraft: move minimap code to its own overlay
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
/*
|
||||
* Copyright (c) 2019 Hydrox6 <ikada@protonmail.ch>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
package net.runelite.client.plugins.runecraft;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
import net.runelite.api.Client;
|
||||
import net.runelite.api.DecorativeObject;
|
||||
import net.runelite.api.Perspective;
|
||||
import net.runelite.api.Point;
|
||||
import net.runelite.client.game.ItemManager;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.ui.overlay.OverlayLayer;
|
||||
import net.runelite.client.ui.overlay.OverlayPosition;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
class AbyssMinimapOverlay extends Overlay
|
||||
{
|
||||
private static final Dimension IMAGE_SIZE = new Dimension(15, 14);
|
||||
|
||||
private final Map<AbyssRifts, BufferedImage> abyssIcons = new HashMap<>();
|
||||
private final Client client;
|
||||
private final RunecraftPlugin plugin;
|
||||
private final RunecraftConfig config;
|
||||
private final ItemManager itemManager;
|
||||
|
||||
@Inject
|
||||
AbyssMinimapOverlay(Client client, RunecraftPlugin plugin, RunecraftConfig config, ItemManager itemManager)
|
||||
{
|
||||
setPosition(OverlayPosition.DYNAMIC);
|
||||
setLayer(OverlayLayer.ABOVE_WIDGETS);
|
||||
this.client = client;
|
||||
this.plugin = plugin;
|
||||
this.config = config;
|
||||
this.itemManager = itemManager;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Dimension render(Graphics2D graphics)
|
||||
{
|
||||
if (!config.showRifts())
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
for (DecorativeObject object : plugin.getAbyssObjects())
|
||||
{
|
||||
AbyssRifts rift = AbyssRifts.getRift(object.getId());
|
||||
if (rift == null || !plugin.getRifts().contains(rift))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
BufferedImage image = getImage(rift);
|
||||
Point miniMapImage = Perspective.getMiniMapImageLocation(client, object.getLocalLocation(), image);
|
||||
|
||||
if (miniMapImage != null)
|
||||
{
|
||||
graphics.drawImage(image, miniMapImage.getX(), miniMapImage.getY(), null);
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private BufferedImage getImage(AbyssRifts rift)
|
||||
{
|
||||
BufferedImage image = abyssIcons.get(rift);
|
||||
if (image != null)
|
||||
{
|
||||
return image;
|
||||
}
|
||||
|
||||
// Since item image is too big, we must resize it first.
|
||||
image = itemManager.getImage(rift.getItemId());
|
||||
BufferedImage resizedImage = new BufferedImage(IMAGE_SIZE.width, IMAGE_SIZE.height, BufferedImage.TYPE_INT_ARGB);
|
||||
Graphics2D g = resizedImage.createGraphics();
|
||||
g.drawImage(image, 0, 0, IMAGE_SIZE.width, IMAGE_SIZE.height, null);
|
||||
g.dispose();
|
||||
|
||||
abyssIcons.put(rift, resizedImage);
|
||||
return resizedImage;
|
||||
}
|
||||
}
|
||||
@@ -30,17 +30,10 @@ import java.awt.geom.Area;
|
||||
import com.google.inject.Inject;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import net.runelite.api.Client;
|
||||
import net.runelite.api.DecorativeObject;
|
||||
import net.runelite.api.NPC;
|
||||
import net.runelite.api.Perspective;
|
||||
import net.runelite.api.Point;
|
||||
import net.runelite.client.game.ItemManager;
|
||||
import net.runelite.client.ui.overlay.Overlay;
|
||||
import net.runelite.client.ui.overlay.OverlayLayer;
|
||||
import net.runelite.client.ui.overlay.OverlayPosition;
|
||||
@@ -48,17 +41,10 @@ import net.runelite.client.ui.overlay.OverlayUtil;
|
||||
|
||||
class AbyssOverlay extends Overlay
|
||||
{
|
||||
private static final Dimension IMAGE_SIZE = new Dimension(15, 14);
|
||||
|
||||
private final Map<AbyssRifts, BufferedImage> abyssIcons = new HashMap<>();
|
||||
|
||||
private final Client client;
|
||||
private final RunecraftPlugin plugin;
|
||||
private final RunecraftConfig config;
|
||||
|
||||
@Inject
|
||||
private ItemManager itemManager;
|
||||
|
||||
@Inject
|
||||
AbyssOverlay(Client client, RunecraftPlugin plugin, RunecraftConfig config)
|
||||
{
|
||||
@@ -72,11 +58,11 @@ class AbyssOverlay extends Overlay
|
||||
@Override
|
||||
public Dimension render(Graphics2D graphics)
|
||||
{
|
||||
if (config.showRifts())
|
||||
if (config.showRifts() && config.showClickBox())
|
||||
{
|
||||
for (DecorativeObject object : plugin.getAbyssObjects())
|
||||
{
|
||||
renderRifts(graphics, object);
|
||||
renderRift(graphics, object);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,7 +96,7 @@ class AbyssOverlay extends Overlay
|
||||
OverlayUtil.renderPolygon(graphics, tilePoly, Color.green);
|
||||
}
|
||||
|
||||
private void renderRifts(Graphics2D graphics, DecorativeObject object)
|
||||
private void renderRift(Graphics2D graphics, DecorativeObject object)
|
||||
{
|
||||
AbyssRifts rift = AbyssRifts.getRift(object.getId());
|
||||
if (rift == null || !plugin.getRifts().contains(rift))
|
||||
@@ -118,53 +104,21 @@ class AbyssOverlay extends Overlay
|
||||
return;
|
||||
}
|
||||
|
||||
if (config.showClickBox())
|
||||
Point mousePosition = client.getMouseCanvasPosition();
|
||||
Area objectClickbox = object.getClickbox();
|
||||
if (objectClickbox != null)
|
||||
{
|
||||
//Draw clickbox
|
||||
Point mousePosition = client.getMouseCanvasPosition();
|
||||
Area objectClickbox = object.getClickbox();
|
||||
if (objectClickbox != null)
|
||||
if (objectClickbox.contains(mousePosition.getX(), mousePosition.getY()))
|
||||
{
|
||||
if (objectClickbox.contains(mousePosition.getX(), mousePosition.getY()))
|
||||
{
|
||||
graphics.setColor(Color.MAGENTA.darker());
|
||||
}
|
||||
else
|
||||
{
|
||||
graphics.setColor(Color.MAGENTA);
|
||||
}
|
||||
graphics.draw(objectClickbox);
|
||||
graphics.setColor(new Color(255, 0, 255, 20));
|
||||
graphics.fill(objectClickbox);
|
||||
graphics.setColor(Color.MAGENTA.darker());
|
||||
}
|
||||
else
|
||||
{
|
||||
graphics.setColor(Color.MAGENTA);
|
||||
}
|
||||
graphics.draw(objectClickbox);
|
||||
graphics.setColor(new Color(255, 0, 255, 20));
|
||||
graphics.fill(objectClickbox);
|
||||
}
|
||||
|
||||
//Draw minimap
|
||||
BufferedImage image = getImage(rift);
|
||||
Point miniMapImage = Perspective.getMiniMapImageLocation(client, object.getLocalLocation(), image);
|
||||
|
||||
if (miniMapImage != null)
|
||||
{
|
||||
graphics.drawImage(image, miniMapImage.getX(), miniMapImage.getY(), null);
|
||||
}
|
||||
}
|
||||
|
||||
public BufferedImage getImage(AbyssRifts rift)
|
||||
{
|
||||
BufferedImage image = abyssIcons.get(rift);
|
||||
if (image != null)
|
||||
{
|
||||
return image;
|
||||
}
|
||||
|
||||
// Since item image is too big, we must resize it first.
|
||||
image = itemManager.getImage(rift.getItemId());
|
||||
BufferedImage resizedImage = new BufferedImage(IMAGE_SIZE.width, IMAGE_SIZE.height, BufferedImage.TYPE_INT_ARGB);
|
||||
Graphics2D g = resizedImage.createGraphics();
|
||||
g.drawImage(image, 0, 0, IMAGE_SIZE.width, IMAGE_SIZE.height, null);
|
||||
g.dispose();
|
||||
|
||||
abyssIcons.put(rift, resizedImage);
|
||||
return resizedImage;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -94,6 +94,9 @@ public class RunecraftPlugin extends Plugin
|
||||
@Inject
|
||||
private AbyssOverlay abyssOverlay;
|
||||
|
||||
@Inject
|
||||
private AbyssMinimapOverlay abyssMinimapOverlay;
|
||||
|
||||
@Inject
|
||||
private RunecraftConfig config;
|
||||
|
||||
@@ -110,6 +113,7 @@ public class RunecraftPlugin extends Plugin
|
||||
protected void startUp() throws Exception
|
||||
{
|
||||
overlayManager.add(abyssOverlay);
|
||||
overlayManager.add(abyssMinimapOverlay);
|
||||
updateRifts();
|
||||
}
|
||||
|
||||
@@ -117,6 +121,7 @@ public class RunecraftPlugin extends Plugin
|
||||
protected void shutDown() throws Exception
|
||||
{
|
||||
overlayManager.remove(abyssOverlay);
|
||||
overlayManager.remove(abyssMinimapOverlay);
|
||||
abyssObjects.clear();
|
||||
darkMage = null;
|
||||
degradedPouchInInventory = false;
|
||||
|
||||
Reference in New Issue
Block a user