package com.keuin.kbackupfabric.util; import com.mojang.brigadier.context.CommandContext; import net.minecraft.server.command.ServerCommandSource; import net.minecraft.text.LiteralText; import net.minecraft.text.Style; import net.minecraft.text.Text; import net.minecraft.util.Formatting; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; public final class PrintUtil { private static final Logger LOGGER = LogManager.getLogger(); private static final boolean printDebugMessages = true; private static final boolean printErrorMessages = true; private static final boolean printInfoMessages = true; private static final Object syncDebug = new Object(); private static final Object syncError = new Object(); private static final Object syncInfo = new Object(); private static final Object syncMessage = new Object(); private static final Style infoStyle = new Style().setColor(Formatting.WHITE); private static final Style debugStyle = new Style().setUnderline(true); private static final Style warnStyle = new Style().setColor(Formatting.YELLOW); private static final Style errorStyle = new Style().setColor(Formatting.DARK_RED); public static CommandContext msgInfo(CommandContext context, String messageText) { return msgInfo(context, messageText, false); } public static CommandContext msgWarn(CommandContext context, String messageText) { return msgWarn(context, messageText, false); } public static CommandContext msgErr(CommandContext context, String messageText) { return msgErr(context, messageText, false); } public static CommandContext msgInfo(CommandContext context, String messageText, boolean broadcastToOps) { return message(context, messageText, broadcastToOps, infoStyle); } public static CommandContext msgWarn(CommandContext context, String messageText, boolean broadcastToOps) { return message(context, messageText, broadcastToOps, warnStyle); } public static CommandContext msgErr(CommandContext context, String messageText, boolean broadcastToOps) { return message(context, messageText, broadcastToOps, errorStyle); } public static CommandContext message(CommandContext context, String messageText, boolean broadcastToOps, Style style) { synchronized (syncMessage) { Text text = new LiteralText(messageText); text.setStyle(style); context.getSource().sendFeedback(text, broadcastToOps); } return context; } public static void debug(String message) { synchronized (syncDebug) { if (printDebugMessages) { //System.out.println(String.format("[DBG] [KB] %s", message)); LOGGER.debug("[KB][DEBUG] " + message); } } } public static void error(String message) { synchronized (syncError) { if (printErrorMessages) { //System.out.println(String.format("[ERR] [KB] %s", message)); LOGGER.error("[KB][ERROR]" + message); } } } public static void info(String message) { synchronized (syncInfo) { if (printInfoMessages) { //System.out.println(String.format("[INF] [KB] %s", message)); LOGGER.info("[KB][INFO] " + message); } } } }