aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kubatech/api/utils/StringUtils.java
blob: 4305b25cb6e93468b4a94ba3d5f4b7b078529625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * KubaTech - Gregtech Addon
 * Copyright (C) 2022  kuba6000
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library. If not, see <https://www.gnu.org/licenses/>.
 *
 */

package kubatech.api.utils;

import net.minecraft.util.EnumChatFormatting;

public class StringUtils {

    private static final String[] rainbow = new String[] {
        EnumChatFormatting.DARK_RED.toString(),
        EnumChatFormatting.RED.toString(),
        EnumChatFormatting.GOLD.toString(),
        EnumChatFormatting.YELLOW.toString(),
        EnumChatFormatting.DARK_GREEN.toString(),
        EnumChatFormatting.GREEN.toString(),
        EnumChatFormatting.AQUA.toString(),
        EnumChatFormatting.DARK_AQUA.toString(),
        EnumChatFormatting.DARK_BLUE.toString(),
        EnumChatFormatting.BLUE.toString(),
        EnumChatFormatting.LIGHT_PURPLE.toString(),
        EnumChatFormatting.DARK_PURPLE.toString(),
        EnumChatFormatting.WHITE.toString(),
        EnumChatFormatting.GRAY.toString(),
        EnumChatFormatting.DARK_GRAY.toString(),
        EnumChatFormatting.BLACK.toString(),
    };

    public static String applyRainbow(String str, int offset, String additional) {
        StringBuilder final_string = new StringBuilder();
        int i = offset;
        for (char c : str.toCharArray())
            final_string
                    .append(rainbow[i++ % rainbow.length])
                    .append(additional)
                    .append(c);
        return final_string.toString();
    }

    public static String applyRainbow(String str, int offset) {
        return applyRainbow(str, offset, "");
    }

    public static String applyRainbow(String str) {
        return applyRainbow(str, 0, "");
    }
}