Search in sources :

Example 6 with Component

use of me.devtec.shared.components.Component in project TheAPI by TheDevTec.

the class v1_14_R1 method toIChatBaseComponent.

@Override
public Object toIChatBaseComponent(List<Component> cc) {
    ChatComponentText main = new ChatComponentText("");
    for (Component c : cc) {
        if (c.getText() == null || c.getText().isEmpty()) {
            c = c.getExtra();
            continue;
        }
        ChatComponentText current = new ChatComponentText(c.getText());
        main.addSibling(current);
        ChatModifier modif = current.getChatModifier();
        if (c.getColor() != null && !c.getColor().isEmpty()) {
            modif = modif.setColor(EnumChatFormat.a(c.getColor().charAt(0)));
        }
        if (c.getClickEvent() != null)
            modif = modif.setChatClickable(new ChatClickable(EnumClickAction.valueOf(c.getClickEvent().getAction().name()), c.getClickEvent().getValue()));
        if (c.getHoverEvent() != null)
            modif = modif.setChatHoverable(new ChatHoverable(EnumHoverAction.valueOf(c.getHoverEvent().getAction().name()), (IChatBaseComponent) toIChatBaseComponent(c.getHoverEvent().getValue())));
        modif = modif.setBold(c.isBold());
        modif = modif.setItalic(c.isItalic());
        modif = modif.setRandom(c.isObfuscated());
        modif = modif.setUnderline(c.isUnderlined());
        modif = modif.setStrikethrough(c.isStrikethrough());
        current.setChatModifier(modif);
    }
    return main.a().isEmpty() ? empty : main;
}
Also used : ChatClickable(net.minecraft.server.v1_14_R1.ChatClickable) ChatModifier(net.minecraft.server.v1_14_R1.ChatModifier) IChatBaseComponent(net.minecraft.server.v1_14_R1.IChatBaseComponent) Component(me.devtec.shared.components.Component) IChatBaseComponent(net.minecraft.server.v1_14_R1.IChatBaseComponent) ChatComponentText(net.minecraft.server.v1_14_R1.ChatComponentText) ChatHoverable(net.minecraft.server.v1_14_R1.ChatHoverable)

Example 7 with Component

use of me.devtec.shared.components.Component in project TheAPI by TheDevTec.

the class v1_15_R1 method toIChatBaseComponents.

@Override
public Object toIChatBaseComponents(List<Component> components) {
    List<IChatBaseComponent> chat = new ArrayList<>();
    chat.add(new ChatComponentText(""));
    for (Component c : components) {
        if (c.getText() == null || c.getText().isEmpty()) {
            c = c.getExtra();
            continue;
        }
        ChatComponentText current = new ChatComponentText(c.getText());
        chat.add(current);
        ChatModifier modif = current.getChatModifier();
        if (c.getColor() != null && !c.getColor().isEmpty()) {
            modif = modif.setColor(EnumChatFormat.a(c.getColor().charAt(0)));
        }
        if (c.getClickEvent() != null)
            modif = modif.setChatClickable(new ChatClickable(EnumClickAction.valueOf(c.getClickEvent().getAction().name()), c.getClickEvent().getValue()));
        if (c.getHoverEvent() != null)
            modif = modif.setChatHoverable(new ChatHoverable(EnumHoverAction.valueOf(c.getHoverEvent().getAction().name()), (IChatBaseComponent) toIChatBaseComponent(c.getHoverEvent().getValue())));
        modif = modif.setBold(c.isBold());
        modif = modif.setItalic(c.isItalic());
        modif = modif.setRandom(c.isObfuscated());
        modif = modif.setUnderline(c.isUnderlined());
        modif = modif.setStrikethrough(c.isStrikethrough());
        current.setChatModifier(modif);
    }
    return chat.toArray(new IChatBaseComponent[0]);
}
Also used : ChatClickable(net.minecraft.server.v1_15_R1.ChatClickable) ArrayList(java.util.ArrayList) ChatModifier(net.minecraft.server.v1_15_R1.ChatModifier) IChatBaseComponent(net.minecraft.server.v1_15_R1.IChatBaseComponent) IChatBaseComponent(net.minecraft.server.v1_15_R1.IChatBaseComponent) Component(me.devtec.shared.components.Component) ChatComponentText(net.minecraft.server.v1_15_R1.ChatComponentText) ChatHoverable(net.minecraft.server.v1_15_R1.ChatHoverable)

Example 8 with Component

use of me.devtec.shared.components.Component in project TheAPI by TheDevTec.

the class v1_16_R2 method toIChatBaseComponents.

@Override
public Object toIChatBaseComponents(List<Component> components) {
    List<IChatBaseComponent> chat = new ArrayList<>();
    chat.add(new ChatComponentText(""));
    for (Component c : components) {
        if (c.getText() == null || c.getText().isEmpty()) {
            c = c.getExtra();
            continue;
        }
        ChatComponentText current = new ChatComponentText(c.getText());
        chat.add(current);
        ChatModifier modif = current.getChatModifier();
        if (c.getColor() != null && !c.getColor().isEmpty()) {
            if (c.getColor().startsWith("#"))
                modif = modif.setColor(ChatHexColor.a(c.getColor()));
            else
                modif = modif.setColor(EnumChatFormat.a(c.getColor().charAt(0)));
        }
        if (c.getClickEvent() != null)
            modif = modif.setChatClickable(new ChatClickable(EnumClickAction.valueOf(c.getClickEvent().getAction().name()), c.getClickEvent().getValue()));
        if (c.getHoverEvent() != null)
            modif = modif.setChatHoverable(EnumHoverAction.a(c.getHoverEvent().getAction().name().toLowerCase()).a((IChatBaseComponent) toIChatBaseComponent(c.getHoverEvent().getValue())));
        modif = modif.setBold(c.isBold());
        modif = modif.setItalic(c.isItalic());
        modif = modif.setRandom(c.isObfuscated());
        modif = modif.setUnderline(c.isUnderlined());
        modif = modif.setStrikethrough(c.isStrikethrough());
        current.setChatModifier(modif);
    }
    return chat.toArray(new IChatBaseComponent[0]);
}
Also used : ChatClickable(net.minecraft.server.v1_16_R2.ChatClickable) ArrayList(java.util.ArrayList) ChatModifier(net.minecraft.server.v1_16_R2.ChatModifier) IChatBaseComponent(net.minecraft.server.v1_16_R2.IChatBaseComponent) Component(me.devtec.shared.components.Component) IChatBaseComponent(net.minecraft.server.v1_16_R2.IChatBaseComponent) ChatComponentText(net.minecraft.server.v1_16_R2.ChatComponentText)

Example 9 with Component

use of me.devtec.shared.components.Component in project TheAPI by TheDevTec.

the class v1_16_R3_Mohist method toIChatBaseComponent.

@Override
public Object toIChatBaseComponent(List<Component> cc) {
    StringTextComponent main = new StringTextComponent("");
    for (Component c : cc) {
        if (c.getText() == null || c.getText().isEmpty()) {
            c = c.getExtra();
            continue;
        }
        StringTextComponent current = new StringTextComponent(c.getText());
        main.func_230529_a_(current);
        Style modif = current.func_150256_b();
        if (c.getColor() != null && !c.getColor().isEmpty()) {
            if (c.getColor().startsWith("#"))
                modif = modif.func_240718_a_(Color.func_240745_a_(c.getColor()));
            else {
                for (TextFormatting e : TextFormatting.values()) if (e.toString().charAt(1) == c.getColor().charAt(0)) {
                    modif = modif.func_240718_a_(Color.func_240744_a_(e));
                    break;
                }
            }
        }
        if (c.getClickEvent() != null)
            modif = modif.func_240715_a_(new ClickEvent(ClickEvent.Action.valueOf(c.getClickEvent().getAction().name()), c.getClickEvent().getValue()));
        if (c.getHoverEvent() != null)
            modif = modif.func_240716_a_(HoverEvent.Action.func_150684_a(c.getHoverEvent().getAction().name().toLowerCase()).func_240670_a_((ITextComponent) toIChatBaseComponent(c.getHoverEvent().getValue())));
        if (c.isBold())
            modif = modif.func_240720_a_(TextFormatting.BOLD);
        if (c.isItalic())
            modif = modif.func_240720_a_(TextFormatting.ITALIC);
        if (c.isObfuscated())
            modif = modif.func_240720_a_(TextFormatting.OBFUSCATED);
        if (c.isUnderlined())
            modif = modif.func_240720_a_(TextFormatting.UNDERLINE);
        if (c.isStrikethrough())
            modif = modif.func_240720_a_(TextFormatting.STRIKETHROUGH);
        current.func_230530_a_(modif);
    }
    return main.func_150253_a().isEmpty() ? StringTextComponent.field_240750_d_ : main;
}
Also used : ClickEvent(net.minecraft.util.text.event.ClickEvent) ITextComponent(net.minecraft.util.text.ITextComponent) Style(net.minecraft.util.text.Style) TextFormatting(net.minecraft.util.text.TextFormatting) StringTextComponent(net.minecraft.util.text.StringTextComponent) StringTextComponent(net.minecraft.util.text.StringTextComponent) Component(me.devtec.shared.components.Component) ITextComponent(net.minecraft.util.text.ITextComponent)

Example 10 with Component

use of me.devtec.shared.components.Component in project TheAPI by TheDevTec.

the class v1_7_R4 method toIChatBaseComponent.

@Override
public Object toIChatBaseComponent(List<Component> cc) {
    ChatComponentText main = new ChatComponentText("");
    for (Component c : cc) {
        if (c.getText() == null || c.getText().isEmpty()) {
            c = c.getExtra();
            continue;
        }
        ChatComponentText current = new ChatComponentText(c.getText());
        main.addSibling(current);
        ChatModifier modif = current.getChatModifier();
        if (c.getColor() != null && !c.getColor().isEmpty()) {
            modif = modif.setColor(EnumChatFormat.valueOf(ChatColor.getByChar(c.getColor().charAt(0)).name()));
        }
        if (c.getClickEvent() != null)
            modif = modif.setChatClickable(new ChatClickable(EnumClickAction.valueOf(c.getClickEvent().getAction().name()), c.getClickEvent().getValue()));
        if (c.getHoverEvent() != null)
            modif = modif.a(new ChatHoverable(EnumHoverAction.valueOf(c.getHoverEvent().getAction().name()), (IChatBaseComponent) toIChatBaseComponent(c.getHoverEvent().getValue())));
        modif = modif.setBold(c.isBold());
        modif = modif.setItalic(c.isItalic());
        modif = modif.setRandom(c.isObfuscated());
        modif = modif.setUnderline(c.isUnderlined());
        modif = modif.setStrikethrough(c.isStrikethrough());
        current.setChatModifier(modif);
    }
    return main.a().isEmpty() ? empty : main;
}
Also used : ChatClickable(net.minecraft.server.v1_7_R4.ChatClickable) ChatModifier(net.minecraft.server.v1_7_R4.ChatModifier) IChatBaseComponent(net.minecraft.server.v1_7_R4.IChatBaseComponent) IChatBaseComponent(net.minecraft.server.v1_7_R4.IChatBaseComponent) Component(me.devtec.shared.components.Component) ChatComponentText(net.minecraft.server.v1_7_R4.ChatComponentText) ChatHoverable(net.minecraft.server.v1_7_R4.ChatHoverable)

Aggregations

Component (me.devtec.shared.components.Component)38 ArrayList (java.util.ArrayList)19 ChatClickable (net.minecraft.network.chat.ChatClickable)6 ChatComponentText (net.minecraft.network.chat.ChatComponentText)6 ChatModifier (net.minecraft.network.chat.ChatModifier)6 IChatBaseComponent (net.minecraft.network.chat.IChatBaseComponent)6 ChatClickable (net.minecraft.server.v1_10_R1.ChatClickable)2 ChatComponentText (net.minecraft.server.v1_10_R1.ChatComponentText)2 ChatHoverable (net.minecraft.server.v1_10_R1.ChatHoverable)2 ChatModifier (net.minecraft.server.v1_10_R1.ChatModifier)2 IChatBaseComponent (net.minecraft.server.v1_10_R1.IChatBaseComponent)2 ChatClickable (net.minecraft.server.v1_11_R1.ChatClickable)2 ChatComponentText (net.minecraft.server.v1_11_R1.ChatComponentText)2 ChatHoverable (net.minecraft.server.v1_11_R1.ChatHoverable)2 ChatModifier (net.minecraft.server.v1_11_R1.ChatModifier)2 IChatBaseComponent (net.minecraft.server.v1_11_R1.IChatBaseComponent)2 ChatClickable (net.minecraft.server.v1_12_R1.ChatClickable)2 ChatComponentText (net.minecraft.server.v1_12_R1.ChatComponentText)2 ChatHoverable (net.minecraft.server.v1_12_R1.ChatHoverable)2 ChatModifier (net.minecraft.server.v1_12_R1.ChatModifier)2