本文整理匯總了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;
}
}