當前位置: 首頁>>代碼示例>>Java>>正文


Java AttributeModifier.getName方法代碼示例

本文整理匯總了Java中net.minecraft.entity.ai.attributes.AttributeModifier.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java AttributeModifier.getName方法的具體用法?Java AttributeModifier.getName怎麽用?Java AttributeModifier.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraft.entity.ai.attributes.AttributeModifier的用法示例。


在下文中一共展示了AttributeModifier.getName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: addPotionEffectTooltip

import net.minecraft.entity.ai.attributes.AttributeModifier; //導入方法依賴的package包/類
@SideOnly(Side.CLIENT)
public static void addPotionEffectTooltip(List<PotionEffect> list, List<String> lores, float durationFactor)
{
    List<Tuple<String, AttributeModifier>> attributeModifiers = Lists.newArrayList();

    if (list.isEmpty())
    {
        String s = I18n.translateToLocal("effect.none").trim();
        lores.add(TextFormatting.GRAY + s);
    }
    else
    {
        for (PotionEffect potioneffect : list)
        {
            String s1 = I18n.translateToLocal(potioneffect.getEffectName()).trim();
            Potion potion = potioneffect.getPotion();
            Map<IAttribute, AttributeModifier> map = potion.getAttributeModifierMap();

            if (!map.isEmpty())
            {
                for (Map.Entry<IAttribute, AttributeModifier> entry : map.entrySet())
                {
                    AttributeModifier attributemodifier = entry.getValue();
                    AttributeModifier attributemodifier1 = new AttributeModifier(attributemodifier.getName(), potion.getAttributeModifierAmount(potioneffect.getAmplifier(), attributemodifier), attributemodifier.getOperation());
                    attributeModifiers.add(new Tuple(((IAttribute)entry.getKey()).getName(), attributemodifier1));
                }
            }

            if (potioneffect.getAmplifier() > 0)
            {
                s1 = s1 + " " + I18n.translateToLocal("potion.potency." + potioneffect.getAmplifier()).trim();
            }

            if (potioneffect.getDuration() > 20)
            {
                s1 = s1 + " (" + Potion.getPotionDurationString(potioneffect, durationFactor) + ")";
            }

            if (potion.isBadEffect())
            {
                lores.add(TextFormatting.RED + s1);
            }
            else
            {
                lores.add(TextFormatting.BLUE + s1);
            }
        }
    }

    if (!attributeModifiers.isEmpty())
    {
        lores.add("");
        lores.add(TextFormatting.DARK_PURPLE + I18n.translateToLocal("potion.whenDrank"));

        for (Tuple<String, AttributeModifier> tuple : attributeModifiers)
        {
            AttributeModifier attributemodifier2 = tuple.getSecond();
            double d0 = attributemodifier2.getAmount();
            double d1;

            if (attributemodifier2.getOperation() != 1 && attributemodifier2.getOperation() != 2)
            {
                d1 = attributemodifier2.getAmount();
            }
            else
            {
                d1 = attributemodifier2.getAmount() * 100.0D;
            }

            if (d0 > 0.0D)
            {
                lores.add(TextFormatting.BLUE + I18n.translateToLocalFormatted("attribute.modifier.plus." + attributemodifier2.getOperation(), ItemStack.DECIMALFORMAT.format(d1), I18n.translateToLocal("attribute.name." + (String)tuple.getFirst())));
            }
            else if (d0 < 0.0D)
            {
                d1 = d1 * -1.0D;
                lores.add(TextFormatting.RED + I18n.translateToLocalFormatted("attribute.modifier.take." + attributemodifier2.getOperation(), ItemStack.DECIMALFORMAT.format(d1), I18n.translateToLocal("attribute.name." + (String)tuple.getFirst())));
            }
        }
    }
}
 
開發者ID:DaedalusGame,項目名稱:Soot,代碼行數:82,代碼來源:MiscUtil.java

示例2: addInformation

import net.minecraft.entity.ai.attributes.AttributeModifier; //導入方法依賴的package包/類
@Override
@SideOnly(Side.CLIENT)
@SuppressWarnings({ "rawtypes", "unchecked" })
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isComplex) {
	if (stack.getItemDamage() == 0)
		return;

	List<PotionEffect> effects = getEffects(stack);
	HashMultimap<String, AttributeModifier> attributes = HashMultimap.create();

	if (effects == null || effects.isEmpty()) {
		String s = StatCollector.translateToLocal("potion.empty").trim();
		list.add(EnumChatFormatting.GRAY + s);
	} else
		for (PotionEffect potioneffect : effects) {
			String s1 = StatCollector.translateToLocal(potioneffect.getEffectName()).trim();
			Potion potion = Potion.potionTypes[potioneffect.getPotionID()];
			Map<IAttribute, AttributeModifier> map = potion.func_111186_k();

			if (map != null && map.size() > 0)
				for (Entry<IAttribute, AttributeModifier> entry : map.entrySet()) {
					AttributeModifier attributemodifier = entry.getValue();
					AttributeModifier attributemodifier1 = new AttributeModifier(attributemodifier.getName(), potion.func_111183_a(potioneffect.getAmplifier(), attributemodifier), attributemodifier.getOperation());
					attributes.put(entry.getKey().getAttributeUnlocalizedName(), attributemodifier1);
				}

			if (potioneffect.getAmplifier() > 0)
				s1 = s1 + " " + StatCollector.translateToLocal("potion.potency." + potioneffect.getAmplifier()).trim();
			if (potioneffect.getDuration() > 20)
				s1 = s1 + " (" + Potion.getDurationString(potioneffect) + ")";

			if (potion.isBadEffect())
				list.add(EnumChatFormatting.RED + s1);
			else
				list.add(EnumChatFormatting.GRAY + s1);
		}

	if (!attributes.isEmpty()) {
		list.add("");
		list.add(EnumChatFormatting.DARK_PURPLE + StatCollector.translateToLocal("potion.effects.whenDrank"));

		for (Entry<String, AttributeModifier> entry1 : attributes.entries()) {
			AttributeModifier attributemodifier2 = entry1.getValue();
			double d0 = attributemodifier2.getAmount();
			double d1;

			if (attributemodifier2.getOperation() != 1 && attributemodifier2.getOperation() != 2)
				d1 = attributemodifier2.getAmount();
			else
				d1 = attributemodifier2.getAmount() * 100.0D;

			if (d0 > 0.0D)
				list.add(EnumChatFormatting.BLUE + StatCollector.translateToLocalFormatted("attribute.modifier.plus." + attributemodifier2.getOperation(), new Object[] { ItemStack.field_111284_a.format(d1), StatCollector.translateToLocal("attribute.name." + entry1.getKey()) }));
			else if (d0 < 0.0D) {
				d1 *= -1.0D;
				list.add(EnumChatFormatting.RED + StatCollector.translateToLocalFormatted("attribute.modifier.take." + attributemodifier2.getOperation(), new Object[] { ItemStack.field_111284_a.format(d1), StatCollector.translateToLocal("attribute.name." + entry1.getKey()) }));
			}
		}
	}
}
 
開發者ID:jm-organization,項目名稱:connor41-etfuturum2,代碼行數:61,代碼來源:LingeringPotion.java

示例3: addPotionTooltip

import net.minecraft.entity.ai.attributes.AttributeModifier; //導入方法依賴的package包/類
public static void addPotionTooltip(ItemStack itemIn, List<String> lores, float durationFactor)
{
    List<PotionEffect> list = getEffectsFromStack(itemIn);
    List<Tuple<String, AttributeModifier>> list1 = Lists.<Tuple<String, AttributeModifier>>newArrayList();

    if (list.isEmpty())
    {
        String s = I18n.translateToLocal("effect.none").trim();
        lores.add(TextFormatting.GRAY + s);
    }
    else
    {
        for (PotionEffect potioneffect : list)
        {
            String s1 = I18n.translateToLocal(potioneffect.getEffectName()).trim();
            Potion potion = potioneffect.getPotion();
            Map<IAttribute, AttributeModifier> map = potion.getAttributeModifierMap();

            if (!map.isEmpty())
            {
                for (Entry<IAttribute, AttributeModifier> entry : map.entrySet())
                {
                    AttributeModifier attributemodifier = (AttributeModifier)entry.getValue();
                    AttributeModifier attributemodifier1 = new AttributeModifier(attributemodifier.getName(), potion.getAttributeModifierAmount(potioneffect.getAmplifier(), attributemodifier), attributemodifier.getOperation());
                    list1.add(new Tuple(((IAttribute)entry.getKey()).getAttributeUnlocalizedName(), attributemodifier1));
                }
            }

            if (potioneffect.getAmplifier() > 0)
            {
                s1 = s1 + " " + I18n.translateToLocal("potion.potency." + potioneffect.getAmplifier()).trim();
            }

            if (potioneffect.getDuration() > 20)
            {
                s1 = s1 + " (" + Potion.getPotionDurationString(potioneffect, durationFactor) + ")";
            }

            if (potion.isBadEffect())
            {
                lores.add(TextFormatting.RED + s1);
            }
            else
            {
                lores.add(TextFormatting.BLUE + s1);
            }
        }
    }

    if (!list1.isEmpty())
    {
        lores.add("");
        lores.add(TextFormatting.DARK_PURPLE + I18n.translateToLocal("potion.whenDrank"));

        for (Tuple<String, AttributeModifier> tuple : list1)
        {
            AttributeModifier attributemodifier2 = (AttributeModifier)tuple.getSecond();
            double d0 = attributemodifier2.getAmount();
            double d1;

            if (attributemodifier2.getOperation() != 1 && attributemodifier2.getOperation() != 2)
            {
                d1 = attributemodifier2.getAmount();
            }
            else
            {
                d1 = attributemodifier2.getAmount() * 100.0D;
            }

            if (d0 > 0.0D)
            {
                lores.add(TextFormatting.BLUE + I18n.translateToLocalFormatted("attribute.modifier.plus." + attributemodifier2.getOperation(), new Object[] {ItemStack.DECIMALFORMAT.format(d1), I18n.translateToLocal("attribute.name." + (String)tuple.getFirst())}));
            }
            else if (d0 < 0.0D)
            {
                d1 = d1 * -1.0D;
                lores.add(TextFormatting.RED + I18n.translateToLocalFormatted("attribute.modifier.take." + attributemodifier2.getOperation(), new Object[] {ItemStack.DECIMALFORMAT.format(d1), I18n.translateToLocal("attribute.name." + (String)tuple.getFirst())}));
            }
        }
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:82,代碼來源:PotionUtils.java


注:本文中的net.minecraft.entity.ai.attributes.AttributeModifier.getName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。