当前位置: 首页>>代码示例>>Java>>正文


Java IIcon.getIconName方法代码示例

本文整理汇总了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;
    }
}
 
开发者ID:ternsip,项目名称:StructPro,代码行数:21,代码来源:UItem.java

示例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;
    }
}
 
开发者ID:sameer,项目名称:ExtraUtilities,代码行数:33,代码来源:LiquidColorRegistry.java


注:本文中的net.minecraft.util.IIcon.getIconName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。