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


Java ITextComponent.setStyle方法代碼示例

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


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

示例1: addHoverText

import net.minecraft.util.text.ITextComponent; //導入方法依賴的package包/類
public static ITextComponent addHoverText(ITextComponent component, ITextComponent hoverComponent)
{
	Style s = component.getStyle();
	s.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, hoverComponent));
	component.setStyle(s);
	return component;
}
 
開發者ID:orbwoi,項目名稱:UniversalRemote,代碼行數:8,代碼來源:TextFormatter.java

示例2: addURLClick

import net.minecraft.util.text.ITextComponent; //導入方法依賴的package包/類
public static ITextComponent addURLClick(ITextComponent component, String url)
{
	Style s = component.getStyle();
	s.setClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL, url));
	component.setStyle(s);
	return component;
}
 
開發者ID:orbwoi,項目名稱:UniversalRemote,代碼行數:8,代碼來源:TextFormatter.java

示例3: getITextComponent

import net.minecraft.util.text.ITextComponent; //導入方法依賴的package包/類
public static ITextComponent getITextComponent(String chatMessage) {
	ITextComponent textComponent = new net.minecraft.util.text.TextComponentString("");
	String[] messageParts = chatMessage.split(" ");
	int pathIndex = 0;

	for (String messagePart : messageParts) {
		ITextComponent append = new net.minecraft.util.text.TextComponentString(messagePart);
		Style chatStyle = new Style();

		if (URL_PATTERN.matcher(ChatColor.stripColor(messagePart)).matches()) {
			chatStyle.setUnderlined(Boolean.valueOf(true));
			chatStyle.setClickEvent(new net.minecraft.util.text.event.ClickEvent(
					net.minecraft.util.text.event.ClickEvent.Action.OPEN_URL, ChatColor.stripColor(messagePart)));
		}

		String currentPath = chatMessage.substring(0, chatMessage.indexOf(messagePart, pathIndex));
		String lastColor = ChatColor.getLastColors(currentPath);

		if (lastColor.length() >= 2) {
			char formattingChar = lastColor.charAt(1);
			formatChatStyle(chatStyle, formattingChar);
		}

		append.setStyle(chatStyle);
		textComponent.appendSibling(append);
		textComponent.appendText(" ");
		pathIndex += messagePart.length() - 1;
	}

	return textComponent;
}
 
開發者ID:Moudoux,項目名稱:EMC,代碼行數:32,代碼來源:ChatProcessor.java

示例4: printChatMessage

import net.minecraft.util.text.ITextComponent; //導入方法依賴的package包/類
public static void printChatMessage(String chatMessage) {
	ITextComponent textComponent = new net.minecraft.util.text.TextComponentString("");
	String[] messageParts = chatMessage.split(" ");
	int pathIndex = 0;

	for (String messagePart : messageParts) {
		ITextComponent append = new net.minecraft.util.text.TextComponentString(messagePart);
		Style chatStyle = new Style();

		if (URL_PATTERN.matcher(ChatColor.stripColor(messagePart)).matches()) {
			chatStyle.setUnderlined(Boolean.valueOf(true));
			chatStyle.setClickEvent(new net.minecraft.util.text.event.ClickEvent(
					net.minecraft.util.text.event.ClickEvent.Action.OPEN_URL, ChatColor.stripColor(messagePart)));
		}

		String currentPath = chatMessage.substring(0, chatMessage.indexOf(messagePart, pathIndex));
		String lastColor = ChatColor.getLastColors(currentPath);

		if (lastColor.length() >= 2) {
			char formattingChar = lastColor.charAt(1);
			formatChatStyle(chatStyle, formattingChar);
		}

		append.setStyle(chatStyle);
		textComponent.appendSibling(append);
		textComponent.appendText(" ");
		pathIndex += messagePart.length() - 1;
	}

	Minecraft.getMinecraft().ingameGUI.getChatGUI().setChatLine(textComponent, 0,
			Minecraft.getMinecraft().ingameGUI.getUpdateCounter(), false);
}
 
開發者ID:Moudoux,項目名稱:EMC,代碼行數:33,代碼來源:ChatProcessor.java

示例5: createChatComponent

import net.minecraft.util.text.ITextComponent; //導入方法依賴的package包/類
/**
 * 1.8.9
 */
public ITextComponent createChatComponent()
{
    ITextComponent itextcomponent = this.getStatName();
    ITextComponent itextcomponent1 = (new TextComponentString("[")).appendSibling(itextcomponent).appendText("]");
    itextcomponent1.setStyle(itextcomponent.getStyle());
    return itextcomponent1;
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:11,代碼來源:StatBase.java

示例6: activate

import net.minecraft.util.text.ITextComponent; //導入方法依賴的package包/類
public void activate(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, @Nullable ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ)
   {
if(player.isSneaking())
{
    if(Prep1_11.isEmpty(heldItem))
    {
	if(hasEnchItem())
	{
	    if(!world.isRemote)
	    {
		world.spawnEntity(new EntityItem(world, pos.getX(), pos.getY() + 1, pos.getZ(), mainHandler.getStackInSlot(SLOT_ENCH_ITEM)));
	    }
	    mainHandler.setStackInSlot(SLOT_ENCH_ITEM, null);
	    mode = Mode.NONE;
	    pendingIngredients.clear();
	    markDirty();
	    world.notifyBlockUpdate(pos, state, state, 8);
	}
	else if(world.isRemote)
	{
	    ITextComponent link1 = new TextComponentString("Infusion Repair");
	    link1.setStyle(new Style().setBold(true).setUnderlined(true).setClickEvent(new ClickEvent(Action.OPEN_URL, "https://github.com/einsteinsci/betterbeginnings/wiki/Infusion-Repair")));
	    ITextComponent link2 = new TextComponentString("Enchantment Diffusion");
	    link2.setStyle(new Style().setBold(true).setUnderlined(true).setClickEvent(new ClickEvent(Action.OPEN_URL, "https://github.com/einsteinsci/betterbeginnings/wiki/Enchantment-Diffusion")));
	    ITextComponent message = new TextComponentString("See the BB wiki articles on ");
	    message.appendSibling(link1);
	    player.sendMessage(message);
	    player.sendMessage(new TextComponentString("and ").appendSibling(link2));
	}
    }
}
else
{
    if(Prep1_11.isEmpty(heldItem) || hasEnchItem() || mode != Mode.NONE) return;
    if(heldItem.getItem() == RegisterItems.cloth)
    {
	mode = Mode.DIFFUSION;
    }
    else if(heldItem.isItemEnchanted())
    {
	if(heldItem.getEnchantmentTagList().tagCount() > 8)
	{
	    player.sendMessage(new TextComponentTranslation("diffusion.toomanyenchants"));
	    mode = Mode.NONE;
	    return;
	}
	mode = Mode.REPAIR;
	pendingIngredients.clear();
	pendingIngredients.addAll(InfusionRepairUtil.getRequiredStacks(heldItem));
	xpLevelsNeeded = InfusionRepairUtil.getTakenLevels(heldItem);
	markDirty();
    }
    else
	return;
    ItemStack newStack = heldItem.copy();
    newStack.setCount(1);
    mainHandler.setStackInSlot(heldItem.isItemEnchanted() ? SLOT_ENCH_ITEM : 1, newStack);
    heldItem.shrink(1);
}
   }
 
開發者ID:einsteinsci,項目名稱:BetterBeginningsReborn,代碼行數:61,代碼來源:TileEntityInfusionRepair.java


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