Add option to choose interface (layoutable) overlay font

Closes #1716

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-10-13 19:24:15 +02:00
parent 9828dd047a
commit 0ca38735d2
2 changed files with 16 additions and 6 deletions

View File

@@ -207,11 +207,22 @@ public interface RuneLiteConfig extends Config
return FontType.SMALL;
}
@ConfigItem(
keyName = "interfaceFontType",
name = "Interface Overlay Font",
description = "Configures what font type is used for in-game interface overlays such as panels, opponent info, clue scrolls etc.",
position = 32
)
default FontType interfaceFontType()
{
return FontType.REGULAR;
}
@ConfigItem(
keyName = "infoBoxVertical",
name = "Display infoboxes vertically",
description = "Toggles the infoboxes to display vertically",
position = 32
position = 33
)
default boolean infoBoxVertical()
{
@@ -222,7 +233,7 @@ public interface RuneLiteConfig extends Config
keyName = "infoBoxWrap",
name = "Infobox wrap count",
description = "Configures the amount of infoboxes shown before wrapping",
position = 33
position = 34
)
default int infoBoxWrap()
{
@@ -233,7 +244,7 @@ public interface RuneLiteConfig extends Config
keyName = "infoBoxSize",
name = "Infobox size (px)",
description = "Configures the size of each infobox in pixels",
position = 34
position = 35
)
default int infoBoxSize()
{

View File

@@ -47,7 +47,6 @@ import net.runelite.client.input.KeyListener;
import net.runelite.client.input.KeyManager;
import net.runelite.client.input.MouseListener;
import net.runelite.client.input.MouseManager;
import net.runelite.client.ui.FontManager;
@Singleton
public class OverlayRenderer extends MouseListener implements KeyListener
@@ -371,7 +370,7 @@ public class OverlayRenderer extends MouseListener implements KeyListener
final OverlayPosition position = overlay.getPosition();
// Set font based on configuration
if (position == OverlayPosition.DYNAMIC)
if (position == OverlayPosition.DYNAMIC || position == OverlayPosition.DETACHED)
{
subGraphics.setFont(runeLiteConfig.fontType().getFont());
}
@@ -381,7 +380,7 @@ public class OverlayRenderer extends MouseListener implements KeyListener
}
else
{
subGraphics.setFont(FontManager.getRunescapeFont());
subGraphics.setFont(runeLiteConfig.interfaceFontType().getFont());
}
subGraphics.translate(point.x, point.y);