本文整理汇总了Java中net.minecraft.util.IIcon.getIconName方法的典型用法代码示例。如果您正苦于以下问题:Java IIcon.getIconName方法的具体用法?Java IIcon.getIconName怎么用?Java IIcon.getIconName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.util.IIcon
的用法示例。
在下文中一共展示了IIcon.getIconName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isValidItemState
import net.minecraft.util.IIcon; //导入方法依赖的package包/类
/**
* Resolve item state validity
* @param meta Item metadata
* @return Is item state valid
*/
@SuppressWarnings({"ConstantConditions"})
public boolean isValidItemState(int meta) {
if (!isValid()) {
return false;
}
try {
IIcon sprite = item.getIconFromDamage(meta);
return sprite != null &&
sprite.getIconName() != null &&
!sprite.getIconName().equalsIgnoreCase("") &&
!sprite.getIconName().equalsIgnoreCase("missingno");
} catch (Throwable ignored) {
return false;
}
}
示例2: getIconColor
import net.minecraft.util.IIcon; //导入方法依赖的package包/类
public static int getIconColor(final IIcon icon, final int defaultColor) {
if (icon == null) {
return defaultColor;
}
if (LiquidColorRegistry.m.containsKey(icon)) {
final Integer col = LiquidColorRegistry.m.get(icon);
if (col == null) {
return defaultColor;
}
return col;
}
else {
final String t = icon.getIconName();
Integer col2;
try {
col2 = readIconCol(t);
}
catch (IOException e) {
col2 = null;
}
if (col2 == null) {
LiquidColorRegistry.m.put(icon, null);
return defaultColor;
}
final float r = (col2 >> 16 & 0xFF) / 255.0f * ((defaultColor >> 16 & 0xFF) / 255.0f);
final float g = (col2 >> 8 & 0xFF) / 255.0f * ((defaultColor >> 8 & 0xFF) / 255.0f);
final float b = (col2 & 0xFF) / 255.0f * ((defaultColor & 0xFF) / 255.0f);
col2 = ((int)(r * 255.0f) << 16 | (int)(g * 255.0f) << 8 | (int)(b * 255.0f));
LiquidColorRegistry.m.put(icon, col2);
return col2;
}
}