本文整理汇总了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;
}
示例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());
}
}
示例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;
}