53 lines
1.3 KiB
Java

package com.hbm.util;
import net.minecraft.util.ChatComponentStyle;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.ChatComponentTranslation;
import net.minecraft.util.ChatStyle;
import net.minecraft.util.EnumChatFormatting;
public class ChatBuilder {
private ChatComponentText text;
private ChatComponentStyle last;
private ChatBuilder(String text) {
this.text = new ChatComponentText(text);
this.last = this.text;
}
public static ChatBuilder start(String text) {
ChatBuilder builder = new ChatBuilder(text);
return builder;
}
public static ChatBuilder startTranslation(String text) {
ChatBuilder builder = new ChatBuilder("").nextTranslation(text);
return builder;
}
public ChatBuilder next(String text) {
ChatComponentText append = new ChatComponentText(text);
this.last.appendSibling(append);
this.last = append;
return this;
}
public ChatBuilder nextTranslation(String text) {
ChatComponentTranslation append = new ChatComponentTranslation(text);
this.last.appendSibling(append);
this.last = append;
return this;
}
public ChatBuilder color(EnumChatFormatting format) {
ChatStyle style = this.last.getChatStyle();
style.setColor(format);
return this;
}
public ChatComponentText flush() {
return this.text;
}
}