Class FontImageWrapper
java.lang.Object
dev.lone.itemsadder.api.FontImages.FontImageWrapper
Class representing ItemAdder custom images feature.
-
Constructor Summary
ConstructorsConstructorDescriptionFontImageWrapper
(String namespacedID) Get a wrapper for the internal font image of ItemsAdder. -
Method Summary
Modifier and TypeMethodDescriptionapplyPixelsOffset
(int offset) Get a copy of the font_image String with pixel offset applied to it.static String
applyPixelsOffsetToString
(String str, int offset) Shift a text/font image back or forward.boolean
exists()
Checks if the font_image exists in ItemsAdder registry.org.bukkit.ChatColor
getColor()
Get the text color of this wrapper.int
Get height of the font_image character.@Nullable Object
Gets the internal ItemsAdder object.Gets the Namespace and ID in the formatnamespace:id
for this font_image.Get the color + font_image unicode character +ChatColor.RESET
.int
getWidth()
Get width of the font_image character.static String
replaceFontImages
(String string) Static utility method to replace all the font images placeholders in a String.static net.kyori.adventure.text.Component
replaceFontImages
(net.kyori.adventure.text.Component adventureComponent) Static utility method to replace all the font images placeholders in a Component.static String
replaceFontImages
(org.bukkit.permissions.Permissible player, String string) Static utility method to replace all the font images placeholders in a String.static @NotNull net.kyori.adventure.text.Component
replaceFontImages
(org.bukkit.permissions.Permissible player, net.kyori.adventure.text.Component adventureComponent) Static utility method to replace all the font images placeholders in a Component.void
setColor
(org.bukkit.ChatColor color) Set color of this wrapper.
-
Constructor Details
-
FontImageWrapper
Get a wrapper for the internal font image of ItemsAdder.- Parameters:
namespacedID
-
-
-
Method Details
-
replaceFontImages
Static utility method to replace all the font images placeholders in a String.- Parameters:
string
- String you want to get placeholders replaced.- Returns:
- String with placeholders replaced with unicode characters.
-
replaceFontImages
public static net.kyori.adventure.text.Component replaceFontImages(net.kyori.adventure.text.Component adventureComponent) Static utility method to replace all the font images placeholders in a Component.- Parameters:
adventureComponent
- Component you want to get placeholders replaced.- Returns:
- Component with placeholders replaced with unicode characters.
- Throws:
NotActuallyItemsAdderException
- Always thrown to indicate this is a placeholder.
-
replaceFontImages
Static utility method to replace all the font images placeholders in a String.- Parameters:
player
- Player to check permissions to use the placeholders. Each placeholder permission is checked, and it won't be replaced if the player has no permission to use it.string
- String you want to get placeholders replaced.- Returns:
- String with placeholders replaced with unicode characters.
-
replaceFontImages
@NotNull public static @NotNull net.kyori.adventure.text.Component replaceFontImages(org.bukkit.permissions.Permissible player, net.kyori.adventure.text.Component adventureComponent) Static utility method to replace all the font images placeholders in a Component.- Parameters:
player
- Player to check permissions to use the placeholders.adventureComponent
- Component you want to get placeholders replaced.- Returns:
- Component with placeholders replaced with unicode characters.
-
applyPixelsOffsetToString
Shift a text/font image back or forward. Useful to create complex HUDs or similar effects.- Parameters:
str
- the String you want to apply the offset to.offset
- int offset in pixels- Returns:
- the modified String.
-
getInternal
Gets the internal ItemsAdder object. Should only be used by the plugin developer. -
getNamespacedID
Gets the Namespace and ID in the formatnamespace:id
for this font_image.- Returns:
- String representing the namespace and ID of the font_image.
-
exists
public boolean exists()Checks if the font_image exists in ItemsAdder registry.- Returns:
- true if the font_image exists in ItemsAdder registry.
-
getString
Get the color + font_image unicode character +ChatColor.RESET
.- Returns:
- color + font_image unicode character +
ChatColor.RESET
.
-
getWidth
public int getWidth()Get width of the font_image character.- Returns:
- Width of the font_image character.
-
getHeight
public int getHeight()Get height of the font_image character.- Returns:
- Height of the font_image character.
-
applyPixelsOffset
Get a copy of the font_image String with pixel offset applied to it. Doesn't modify the original one.- Parameters:
offset
- int offset in pixels.- Returns:
- A copy of the font_image String with pixel offset applied to it. Doesn't modify the original one.
-
getColor
public org.bukkit.ChatColor getColor()Get the text color of this wrapper.- Returns:
- Text color of this wrapper.
-
setColor
public void setColor(org.bukkit.ChatColor color) Set color of this wrapper.- Parameters:
color
- Color to set.
-