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


Java Entity.hasTag方法代碼示例

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


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

示例1: pickUp

import localhost.iillyyaa2033.nmud.core.services.domain.world.Entity; //導入方法依賴的package包/類
public String pickUp(String objName) {
	objName = objName.toLowerCase();

	String res = "";
	Entity[] rz = getVisibleEntities(objName);

	Entity d = chooseFrom(rz);
	if (d != null) {
		if (d.hasTag("pickable")) avatar.pickUp(d);
		else send("Вы не можете взять " + d.toString().toLowerCase() + ".");
	} else {
		send("Не удалось найти " + objName);
	}

	return res;
}
 
開發者ID:nmud,項目名稱:nmud-core,代碼行數:17,代碼來源:Client.java

示例2: openOrClose

import localhost.iillyyaa2033.nmud.core.services.domain.world.Entity; //導入方法依賴的package包/類
private void openOrClose(String target, boolean isOpen) {
	Entity tg = client.getVisibleEntityByName(target);

	boolean success = false;

	if (tg != null) {
		if (tg.hasTag(Entity.T.DOOR)) {
			tg.addParam(Entity.P.IS_OPEN, (isOpen ? "true" : "false"));
			success = true;
		}
	}

	if (success) {
		act(creature.getName().toString() + (isOpen ? " открыл ": " закрыл ") + tg.getName().toString());
	}
}
 
開發者ID:nmud,項目名稱:nmud-core,代碼行數:17,代碼來源:Avatar.java

示例3: getDescriptionOfLocation

import localhost.iillyyaa2033.nmud.core.services.domain.world.Entity; //導入方法依賴的package包/類
public String getDescriptionOfLocation() {
	tryPrepare();

	String s = "Вы находитесь в " + WordUtils.getUncapitalized(getName(), 5) + ".  ";

	for (Entity v : visible) {
		if (v.hasTag("wall") && v.isEmpty()) continue;

		Material m = v.getMaterial();
		ArrayList<String> words = new ArrayList<String>();

		String location = v.getParam("location");
		String action = v.getParam("action");
		if (location != null && action != null) {
			words.add(WordUtils.capitalizeFirst(location));
			words.add(" " + action);
		} else {
			words.add("Существует");
		}

		for (String key : m.list()) {
			if (!key.startsWith("_"))
				words.add(" " + m.get(key));
		}

		if(v.hasTag(Entity.T.BROKEN))
			words.add(" поцарапаный");
		
		String isOpened = null;
		if ((isOpened = v.getParam(Entity.P.IS_OPEN)) != null) {
			if ("true".equals(isOpened)) {
				words.add(" открытый");
			} else {
				words.add(" закрытый");
			}
		}


		words.add(" " + WordUtils.getUncapitalized(v.getName(), 0));

		if (v.getParam(Entity.P.SIGNS) != null) {
			words.add(", на котором что-то написано");
		}

		boolean hasChilds = false;
		if (v.parts.size() > 0) {
			hasChilds = true;
		} else {
			if (v instanceof ContainerEntity) {
				if (((ContainerEntity) v).content.size() > 0) {
					hasChilds = true;
				}
			}
		}

		if (hasChilds) {
			words.add(", в котором что-то есть");
		}

		s += Utils.ats("", words) + ". ";
	}

	return s;
}
 
開發者ID:nmud,項目名稱:nmud-core,代碼行數:65,代碼來源:DescriptionFactory.java


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