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


Java Sound.valueOf方法代碼示例

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


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

示例1: get

import org.bukkit.Sound; //導入方法依賴的package包/類
public static Sound get(String v18, String v19) {
	Sound sound = null;
	try {
		sound = Sound.valueOf(v18);
		if (sound.equals(null)) {
			sound = Sound.valueOf(v19);
		}
	} catch (Exception ex) {
	}
	return sound;
}
 
開發者ID:Ldcr993519867,項目名稱:BedwarsXP,代碼行數:12,代碼來源:SoundMachine.java

示例2: onVoucherReward

import org.bukkit.Sound; //導入方法依賴的package包/類
@EventHandler(ignoreCancelled = true)
public void onVoucherReward(RVRewardEvent e) {
    Player p = e.getPlayer();
    String rw = e.getReward();
    Voucher v = e.getVoucher();

    String reward = rw
        .replace("%x%", "" + p.getLocation().getBlockX())
        .replace("%y%", "" + p.getLocation().getBlockY())
        .replace("%z%", "" + p.getLocation().getBlockZ())
        .replace("%tier%", v.getId())
        .replace("%player%", p.getName())
        .replace("%limit%", "" + v.getLimit());

    switch (getType(e.getAction())) {
        case "CONSOLE_COMMAND":
            Bukkit.dispatchCommand(Bukkit.getConsoleSender(), reward);
            break;
        case "PLAYER_COMMAND":
            p.performCommand(reward);
            break;
        case "TELL_PLAYER":
            p.sendMessage(ColorUtil.translate(reward));
            break;
        case "BROADCAST":
            Bukkit.broadcastMessage(ColorUtil.translate(reward));
            break;
        case "PLAY_SOUND":
            Sound s = Sound.valueOf(reward);
            p.playSound(p.getLocation(), s, 3, 3);
            break;
        case "PLAYER_TITLE":
            String title = reward.contains(";") ? reward.split(";")[0] : reward;
            String sub = reward.contains(";") ? reward.split(";")[1] : "";
            p.sendTitle(ColorUtil.translate(title), ColorUtil.translate(sub));
            break;
        case "CENTER_MESSAGE":
            CenterUtil.sendCenteredMessage(p, reward);
            break;
        case "CENTER_BROADCAST":
            for (Player player : Bukkit.getOnlinePlayers()) {
                CenterUtil.sendCenteredMessage(player, reward);
            }
            break;
        case "PLAYER_CHAT":
            p.sendMessage(ColorUtil.translate(reward));
            break;
        case "FIREWORK":
            Firework fw = p.getWorld().spawn(p.getLocation(), Firework.class);
            //use meta to customize the firework or add parameters to the method
            fw.setVelocity(p.getLocation().getDirection().multiply(50));
            fw.setGlowing(true);
            break;
    }
}
 
開發者ID:Chazmondo,項目名稱:RankVouchers,代碼行數:56,代碼來源:VoucherRewardEvent.java

示例3: getSound

import org.bukkit.Sound; //導入方法依賴的package包/類
/**
 * Returns the sound and throws exception if the sound does not exist
 *
 * @return sound
 * @throws Exception exception
 */
public Sound getSound() throws Exception {
    return Sound.valueOf(this.text);
}
 
開發者ID:Shynixn,項目名稱:PetBlocks,代碼行數:10,代碼來源:SoundBuilder.java


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