Merge pull request #739 from SemtexError/cannon-unload

Cannon emptying, double hit spots and UI panel.
This commit is contained in:
Adam
2018-02-28 19:45:38 -05:00
committed by GitHub
4 changed files with 227 additions and 35 deletions

View File

@@ -24,6 +24,7 @@
*/ */
package net.runelite.client.plugins.cannon; package net.runelite.client.plugins.cannon;
import java.awt.Color;
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;
@@ -44,4 +45,34 @@ public interface CannonConfig extends Config
{ {
return true; return true;
} }
@ConfigItem(
keyName = "showOverlay",
name = "Show the cannonballs left overlay",
description = "Configures whether to show the cannonballs in an overlay"
)
default boolean showAmountOnScreen()
{
return false;
}
@ConfigItem(
keyName = "showDoubleHitSpot",
name = "Show double hit spots",
description = "Configures whether to show the NPC double hit spot"
)
default boolean showDoubleHitSpot()
{
return false;
}
@ConfigItem(
keyName = "highlightDoubleHitColor",
name = "Color of double hit spots",
description = "Configures the highlight color of double hit spots"
)
default Color highlightDoubleHitColor()
{
return Color.RED;
}
} }

View File

@@ -24,19 +24,20 @@
*/ */
package net.runelite.client.plugins.cannon; package net.runelite.client.plugins.cannon;
import static java.awt.Color.GREEN; import java.awt.Color;
import static java.awt.Color.ORANGE;
import static java.awt.Color.RED;
import java.awt.Dimension; import java.awt.Dimension;
import java.awt.Graphics2D; import java.awt.Graphics2D;
import java.awt.Point; import java.awt.Point;
import java.awt.Polygon;
import javax.inject.Inject; import javax.inject.Inject;
import net.runelite.api.Client; import net.runelite.api.Client;
import net.runelite.api.Perspective; import net.runelite.api.Perspective;
import static net.runelite.api.Perspective.LOCAL_TILE_SIZE;
import net.runelite.api.widgets.Widget; import net.runelite.api.widgets.Widget;
import net.runelite.client.ui.overlay.Overlay; import net.runelite.client.ui.overlay.Overlay;
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;
import net.runelite.client.ui.overlay.components.TextComponent; import net.runelite.client.ui.overlay.components.TextComponent;
class CannonOverlay extends Overlay class CannonOverlay extends Overlay
@@ -59,44 +60,87 @@ class CannonOverlay extends Overlay
@Override @Override
public Dimension render(Graphics2D graphics, Point parent) public Dimension render(Graphics2D graphics, Point parent)
{ {
if (!plugin.cannonPlaced || plugin.myCannon == null) if (!plugin.isCannonPlaced() || plugin.getCannonPosition() == null)
{ {
return null; return null;
} }
if (!Perspective.isWorldInScene(client, plugin.myCannon)) if (!Perspective.isWorldInScene(client, plugin.getCannonPosition()))
{
return null;
}
net.runelite.api.Point cannonPoint = Perspective.worldToLocal(client, plugin.getCannonPosition());
if (cannonPoint == null)
{ {
return null; return null;
} }
net.runelite.api.Point cannonLoc = Perspective.getCanvasTextLocation(client, net.runelite.api.Point cannonLoc = Perspective.getCanvasTextLocation(client,
graphics, graphics,
Perspective.worldToLocal(client, plugin.myCannon), cannonPoint,
String.valueOf(plugin.cballsLeft), 200); String.valueOf(plugin.getCballsLeft()), 200);
Widget viewport = client.getViewportWidget(); Widget viewport = client.getViewportWidget();
if (viewport != null && cannonLoc != null && viewport.contains(cannonLoc)) if (viewport == null)
{ {
textComponent.setText(String.valueOf(plugin.cballsLeft)); return null;
}
if (cannonLoc != null && viewport.contains(cannonLoc))
{
textComponent.setText(String.valueOf(plugin.getCballsLeft()));
textComponent.setPosition(new Point(cannonLoc.getX(), cannonLoc.getY())); textComponent.setPosition(new Point(cannonLoc.getX(), cannonLoc.getY()));
textComponent.setColor(plugin.getStateColor());
if (plugin.cballsLeft > 15)
{
textComponent.setColor(GREEN);;
}
else if (plugin.cballsLeft > 5)
{
textComponent.setColor(ORANGE);
}
else
{
textComponent.setColor(RED);
}
textComponent.render(graphics, parent); textComponent.render(graphics, parent);
} }
if (config.showDoubleHitSpot())
{
Color color = config.highlightDoubleHitColor();
drawDoubleHitSpots(graphics, plugin.getCannon().getLocalLocation(), color);
}
return null; return null;
} }
}
/**
* Draw the double hit spots on a 6 by 6 grid around the cannon
* @param startTile The position of the cannon
*/
private void drawDoubleHitSpots(Graphics2D graphics, net.runelite.api.Point startTile, Color color)
{
for (int x = -3; x <= 3; x++)
{
for (int y = -3; y <= 3; y++)
{
if (y != 1 && x != 1 && y != -1 && x != -1)
{
continue;
}
//Ignore center square
if (y >= -1 && y <= 1 && x >= -1 && x <= 1)
{
continue;
}
int xPos = startTile.getX() - (x * LOCAL_TILE_SIZE);
int yPos = startTile.getY() - (y * LOCAL_TILE_SIZE);
net.runelite.api.Point marker = new net.runelite.api.Point(xPos, yPos);
Polygon poly = Perspective.getCanvasTilePoly(client, marker);
if (poly == null)
{
continue;
}
OverlayUtil.renderPolygon(graphics, poly, color);
}
}
}
}

View File

@@ -26,9 +26,13 @@ package net.runelite.client.plugins.cannon;
import com.google.common.eventbus.Subscribe; import com.google.common.eventbus.Subscribe;
import com.google.inject.Provides; import com.google.inject.Provides;
import java.awt.Color;
import java.util.Arrays;
import java.util.Collection;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import javax.inject.Inject; import javax.inject.Inject;
import lombok.Getter;
import net.runelite.api.AnimationID; import net.runelite.api.AnimationID;
import net.runelite.api.ChatMessageType; import net.runelite.api.ChatMessageType;
import net.runelite.api.Client; import net.runelite.api.Client;
@@ -53,14 +57,20 @@ import net.runelite.client.ui.overlay.Overlay;
) )
public class CannonPlugin extends Plugin public class CannonPlugin extends Plugin
{ {
private static final Pattern LOAD_CANNON_PATTERN = Pattern.compile("([0-9]+)"); private static final Pattern NUMBER_PATTERN = Pattern.compile("([0-9]+)");
private static final int MAX_CBALLS = 30; private static final int MAX_CBALLS = 30;
int cballsLeft = 0; @Getter
private int cballsLeft;
boolean cannonPlaced = false; @Getter
private boolean cannonPlaced;
net.runelite.api.Point myCannon; @Getter
private net.runelite.api.Point cannonPosition;
@Getter
private GameObject cannon;
@Inject @Inject
private Notifier notifier; private Notifier notifier;
@@ -68,6 +78,9 @@ public class CannonPlugin extends Plugin
@Inject @Inject
private CannonOverlay cannonOverlay; private CannonOverlay cannonOverlay;
@Inject
private CannonUiOverlay cannonUiOverlay;
@Inject @Inject
private CannonConfig config; private CannonConfig config;
@@ -81,16 +94,16 @@ public class CannonPlugin extends Plugin
} }
@Override @Override
public Overlay getOverlay() public Collection<Overlay> getOverlays()
{ {
return cannonOverlay; return Arrays.asList(cannonOverlay, cannonUiOverlay);
} }
@Override @Override
protected void shutDown() throws Exception protected void shutDown() throws Exception
{ {
cannonPlaced = false; cannonPlaced = false;
myCannon = null; cannonPosition = null;
cballsLeft = 0; cballsLeft = 0;
} }
@@ -105,7 +118,8 @@ public class CannonPlugin extends Plugin
if (localPlayer.getWorldLocation().distanceTo(gameObject.getWorldLocation()) <= 2 if (localPlayer.getWorldLocation().distanceTo(gameObject.getWorldLocation()) <= 2
&& localPlayer.getAnimation() == AnimationID.BURYING_BONES) && localPlayer.getAnimation() == AnimationID.BURYING_BONES)
{ {
myCannon = gameObject.getWorldLocation(); cannonPosition = gameObject.getWorldLocation();
cannon = gameObject;
} }
} }
} }
@@ -115,12 +129,12 @@ public class CannonPlugin extends Plugin
{ {
Projectile projectile = event.getProjectile(); Projectile projectile = event.getProjectile();
if ((projectile.getId() == CANNONBALL || projectile.getId() == GRANITE_CANNONBALL) && myCannon != null) if ((projectile.getId() == CANNONBALL || projectile.getId() == GRANITE_CANNONBALL) && cannonPosition != null)
{ {
net.runelite.api.Point projectileLoc = Perspective.localToWorld(client, new net.runelite.api.Point(projectile.getX1(), projectile.getY1())); net.runelite.api.Point projectileLoc = Perspective.localToWorld(client, new net.runelite.api.Point(projectile.getX1(), projectile.getY1()));
//Check to see if projectile x,y is 0 else it will continuously decrease while ball is flying. //Check to see if projectile x,y is 0 else it will continuously decrease while ball is flying.
if (projectileLoc.equals(myCannon) && projectile.getX() == 0 && projectile.getY() == 0) if (projectileLoc.equals(cannonPosition) && projectile.getX() == 0 && projectile.getY() == 0)
{ {
cballsLeft--; cballsLeft--;
} }
@@ -149,7 +163,7 @@ public class CannonPlugin extends Plugin
if (event.getMessage().startsWith("You load the cannon with")) if (event.getMessage().startsWith("You load the cannon with"))
{ {
Matcher m = LOAD_CANNON_PATTERN.matcher(event.getMessage()); Matcher m = NUMBER_PATTERN.matcher(event.getMessage());
if (m.find()) if (m.find())
{ {
int amt = Integer.valueOf(m.group()); int amt = Integer.valueOf(m.group());
@@ -180,5 +194,38 @@ public class CannonPlugin extends Plugin
notifier.notify("Your cannon is out of ammo!"); notifier.notify("Your cannon is out of ammo!");
} }
} }
if (event.getMessage().contains("You unload your cannon and receive Cannonball"))
{
Matcher m = NUMBER_PATTERN.matcher(event.getMessage());
if (m.find())
{
int unload = Integer.valueOf(m.group());
// make sure cballs doesn't go below 0
if (cballsLeft - unload < 0)
{
cballsLeft = 0;
}
else
{
cballsLeft -= unload;
}
}
}
}
Color getStateColor()
{
if (cballsLeft > 15)
{
return Color.green;
}
else if (cballsLeft > 5)
{
return Color.orange;
}
return Color.red;
} }
} }

View File

@@ -0,0 +1,70 @@
/*
* Copyright (c) 2018, Adam <Adam@sigterm.info>
* 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.cannon;
import java.awt.Dimension;
import java.awt.Graphics2D;
import java.awt.Point;
import javax.inject.Inject;
import net.runelite.client.ui.overlay.Overlay;
import net.runelite.client.ui.overlay.OverlayPosition;
import net.runelite.client.ui.overlay.components.PanelComponent;
class CannonUiOverlay extends Overlay
{
private static final int COMPONENT_WIDTH = 40;
private final CannonConfig config;
private final CannonPlugin plugin;
private final PanelComponent panelComponent = new PanelComponent();
@Inject
CannonUiOverlay(CannonConfig config, CannonPlugin plugin)
{
setPosition(OverlayPosition.ABOVE_CHATBOX_RIGHT);
this.config = config;
this.plugin = plugin;
}
@Override
public Dimension render(Graphics2D graphics, Point parent)
{
if (!plugin.isCannonPlaced() || plugin.getCannonPosition() == null)
{
return null;
}
if (!config.showAmountOnScreen())
{
return null;
}
panelComponent.setTitleColor(plugin.getStateColor());
panelComponent.setTitle(String.valueOf(plugin.getCballsLeft()));
panelComponent.setWidth(COMPONENT_WIDTH);
return panelComponent.render(graphics, parent);
}
}