Skip to content

Commit

Permalink
Replace raids points widget with custom overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
kamielvf authored and Adam- committed Mar 27, 2018
1 parent a39dd00 commit 8edf8ff
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,6 @@ public RaidsOverlay(RaidsPlugin plugin, RaidsConfig config)
@Override
public Dimension render(Graphics2D graphics)
{
if (plugin.isInRaidChambers())
{
plugin.repositionPointsBox();
}

if (!config.scoutOverlay() || !scoutOverlayShown)
{
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import java.time.Instant;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.imageio.ImageIO;
Expand All @@ -53,6 +54,7 @@
import net.runelite.api.events.ChatMessage;
import net.runelite.api.events.ConfigChanged;
import net.runelite.api.events.VarbitChanged;
import net.runelite.api.events.WidgetHiddenChanged;
import net.runelite.api.widgets.Widget;
import net.runelite.api.widgets.WidgetInfo;
import net.runelite.client.chat.ChatColor;
Expand Down Expand Up @@ -81,7 +83,7 @@ public class RaidsPlugin extends Plugin
private static final String LEVEL_COMPLETE_MESSAGE = "level complete!";
private static final String RAID_COMPLETE_MESSAGE = "Congratulations - your raid is complete!";
private static final DecimalFormat DECIMAL_FORMAT = new DecimalFormat("###.##");
private static final DecimalFormat POINTS_FORMAT = new DecimalFormat("#,###");
public static final DecimalFormat POINTS_FORMAT = new DecimalFormat("#,###");
private static final String SPLIT_REGEX = "\\s*,\\s*";
private static final Pattern ROTATION_REGEX = Pattern.compile("\\[(.*?)\\]");

Expand All @@ -106,6 +108,9 @@ public class RaidsPlugin extends Plugin
@Inject
private RaidsOverlay overlay;

@Inject
private RaidsPointsOverlay pointsOverlay;

@Inject
private LayoutSolver layoutSolver;

Expand Down Expand Up @@ -137,9 +142,9 @@ public void configure(Binder binder)
}

@Override
public Overlay getOverlay()
public List<Overlay> getOverlays()
{
return overlay;
return Arrays.asList(overlay, pointsOverlay);
}

@Override
Expand Down Expand Up @@ -202,6 +207,22 @@ public void onConfigChanged(ConfigChanged event)
}
}

@Subscribe
public void onWidgetHiddenChanged(WidgetHiddenChanged event)
{
if (!inRaidChambers || event.isHidden())
{
return;
}

Widget widget = event.getWidget();

if (widget == client.getWidget(WidgetInfo.RAIDS_POINTS_INFOBOX))
{
widget.setHidden(true);
}
}

@Subscribe
public void onVarbitChange(VarbitChanged event)
{
Expand Down Expand Up @@ -307,27 +328,6 @@ public void onChatMessage(ChatMessage event)
}
}

public void repositionPointsBox()
{
Widget widget = client.getWidget(WidgetInfo.RAIDS_POINTS_INFOBOX);
int x = widget.getParent().getWidth() - widget.getWidth() - 2;
int y = widget.getOriginalY();

if (client.getSetting(Varbits.EXPERIENCE_TRACKER_POSITION) == 0)
{
Widget area = client.getWidget(WidgetInfo.EXPERIENCE_TRACKER_BOTTOM_BAR);

if (area != null)
{
y = area.getOriginalY() + 2;
area.setRelativeY(y + widget.getHeight());
}
}

widget.setRelativeX(x);
widget.setRelativeY(y);
}

private void updateInfoBoxState()
{
if (timer != null)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/*
* Copyright (c) 2018, Kamiel
* 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.raids;

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics2D;
import javax.inject.Inject;
import net.runelite.api.Client;
import net.runelite.api.Varbits;
import static net.runelite.client.plugins.raids.RaidsPlugin.POINTS_FORMAT;
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.PanelComponent;

public class RaidsPointsOverlay extends Overlay
{
@Inject
private Client client;

@Inject
private RaidsPlugin plugin;

private final PanelComponent panel = new PanelComponent();

@Inject
public RaidsPointsOverlay()
{
setPosition(OverlayPosition.TOP_RIGHT);
setPriority(OverlayPriority.HIGH);
}

@Override
public Dimension render(Graphics2D graphics)
{
if (!plugin.isInRaidChambers())
{
return null;
}

int totalPoints = client.getSetting(Varbits.TOTAL_POINTS);
int personalPoints = client.getSetting(Varbits.PERSONAL_POINTS);

panel.getLines().clear();
panel.getLines().add(new PanelComponent.Line(
"Total:", Color.WHITE, POINTS_FORMAT.format(totalPoints), Color.WHITE
));
panel.getLines().add(new PanelComponent.Line(
client.getLocalPlayer().getName() + ":", Color.WHITE, POINTS_FORMAT.format(personalPoints), Color.WHITE
));
panel.getLines().add(new PanelComponent.Line(
"Party size:", Color.WHITE, String.valueOf(client.getSetting(Varbits.RAID_PARTY_SIZE)), Color.WHITE
));

return panel.render(graphics);
}
}

0 comments on commit 8edf8ff

Please sign in to comment.