mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2024-11-14 05:03:33 +00:00
Add adventure utility class
This class is meant to track a global PlainTextComponentSerializer instance, so we don't have to call PlainTextComponentSerializer#plainText in every class that needs to serialize a Component into a String. I implemented this so I can add component logging to FreedomLogger.
This commit is contained in:
parent
7756813d01
commit
55859b6b15
@ -0,0 +1,48 @@
|
|||||||
|
package me.totalfreedom.utils;
|
||||||
|
|
||||||
|
import net.kyori.adventure.text.Component;
|
||||||
|
import net.kyori.adventure.text.serializer.plain.PlainTextComponentSerializer;
|
||||||
|
|
||||||
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class contains the only reference to plain text component serializer, and allows access to it via wrapper functions.
|
||||||
|
*/
|
||||||
|
public class FreedomAdventure
|
||||||
|
{
|
||||||
|
private FreedomAdventure()
|
||||||
|
{
|
||||||
|
throw new UnsupportedOperationException("Instantiation of a static utility class is not supported.");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final PlainTextComponentSerializer PLAIN_TEXT_COMPONENT_SERIALIZER = PlainTextComponentSerializer.plainText();
|
||||||
|
|
||||||
|
public static String toPlainText(Component component)
|
||||||
|
{
|
||||||
|
return PLAIN_TEXT_COMPONENT_SERIALIZER.serialize(component);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String toPlainText(Supplier<Component> supplier)
|
||||||
|
{
|
||||||
|
return toPlainText(supplier.get());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Supplier<String> supplyPlainText(Supplier<Component> supplier)
|
||||||
|
{
|
||||||
|
return new StringRepresentationSupplier(supplier.get());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Supplier<String> supplyPlainText(Component component)
|
||||||
|
{
|
||||||
|
return new StringRepresentationSupplier(component);
|
||||||
|
}
|
||||||
|
|
||||||
|
private record StringRepresentationSupplier(Component component) implements Supplier<String>
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public String get()
|
||||||
|
{
|
||||||
|
return PLAIN_TEXT_COMPONENT_SERIALIZER.serialize(component);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user