Formato de Configuración

SpongeAPI offers support to serialize text directly to a Configurate configuration file through the use of the TypeToken class. Text objects are saved using the same node structure as the Text's Formato JSON, but in a more flexible format called Human-Optimized Config Object Notation (HOCON).

Truco

Para obtener información sobre como utilizar la Configuración para crear archivos de configuración para su plugin, por favor consulte: Configurando Extensiones.

For example, the text "Hello World!", formatted with the color red and an underline, would have the following HOCON representation:

{
    underlined=true
    color=red
    text="Hello World!"
}

Guardar un objeto de Texto simplemente establezca el valor de su nodo deseado utilizando el siguiente código:

import com.google.common.reflect.TypeToken;
import ninja.leaping.configurate.ConfigurationNode;
import org.spongepowered.api.text.Text;
import org.spongepowered.api.text.format.TextColors;
import org.spongepowered.api.text.format.TextStyles;

ConfigurationNode node = loader.load();
Text text = Text.of(TextColors.RED, TextStyles.UNDERLINE, "Hello World!");
node.getNode("mytext").setValue(TypeToken.of(Text.class), text);
loader.save(node);

Puede cargar un objeto de Texto utilizando el siguiente código:

Text text = node.getNode("mytext").getValue(TypeToken.of(Text.class));

Nota

Esta estrategia no está limitada por HoconConfigurationLoader; cualquier :javadoc:`ConfigurationLoader`será suficiente.