mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
912539e81d
* Various generics/deprecation shit this might all catch on fire, honestly, but it shouldn't, unless someone was using the wrong I18n in the wrong place in the first place... * uncrash the server depending on where else big dad used the bad I18n this might also still be crashy crash
78 lines
2.9 KiB
Java
78 lines
2.9 KiB
Java
/*
|
|
* This file ("StringUtil.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2017 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.util;
|
|
|
|
import net.minecraft.client.gui.FontRenderer;
|
|
import net.minecraft.client.renderer.GlStateManager;
|
|
import net.minecraft.client.resources.I18n;
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
import java.util.List;
|
|
|
|
public final class StringUtil{
|
|
|
|
public static final int DECIMAL_COLOR_WHITE = 16777215;
|
|
public static final int DECIMAL_COLOR_GRAY_TEXT = 4210752;
|
|
|
|
public static final String BUGGED_ITEM_NAME = ModUtil.MOD_ID+".lolWutHowUDoDis";
|
|
|
|
/**
|
|
* Localizes a given String
|
|
*/
|
|
@SideOnly(Side.CLIENT)
|
|
public static String localize(String text){
|
|
return I18n.format(text);
|
|
}
|
|
|
|
/**
|
|
* Localizes a given formatted String with the given Replacements
|
|
*/
|
|
@SideOnly(Side.CLIENT)
|
|
public static String localizeFormatted(String text, Object... replace){
|
|
return I18n.format(text, replace);
|
|
}
|
|
|
|
@SuppressWarnings("deprecation")//TODO: delete this shit and move ItemPotionRing's getItemStackDisplayName into getUnlocalizedName
|
|
public static String localizeIllegallyOnTheServerDontUseMePls(String langKey) {
|
|
return net.minecraft.util.text.translation.I18n.translateToLocal(langKey);
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public static void drawSplitString(FontRenderer renderer, String strg, int x, int y, int width, int color, boolean shadow){
|
|
List<String> list = renderer.listFormattedStringToWidth(strg, width);
|
|
for(int i = 0; i < list.size(); i++){
|
|
String s1 = (String)list.get(i);
|
|
renderer.drawString(s1, x, y+(i*renderer.FONT_HEIGHT), color, shadow);
|
|
}
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public static void renderScaledAsciiString(FontRenderer font, String text, int x, int y, int color, boolean shadow, float scale){
|
|
GlStateManager.pushMatrix();
|
|
GlStateManager.scale(scale, scale, scale);
|
|
boolean oldUnicode = font.getUnicodeFlag();
|
|
font.setUnicodeFlag(false);
|
|
|
|
font.drawString(text, x/scale, y/scale, color, shadow);
|
|
|
|
font.setUnicodeFlag(oldUnicode);
|
|
GlStateManager.popMatrix();
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public static void renderSplitScaledAsciiString(FontRenderer font, String text, int x, int y, int color, boolean shadow, float scale, int length){
|
|
List<String> lines = font.listFormattedStringToWidth(text, (int)(length/scale));
|
|
for(int i = 0; i < lines.size(); i++){
|
|
renderScaledAsciiString(font, lines.get(i), x, y+(i*(int)(font.FONT_HEIGHT*scale+3)), color, shadow, scale);
|
|
}
|
|
}
|
|
}
|