本文整理汇总了Java中cn.nukkit.plugin.Plugin.getDescription方法的典型用法代码示例。如果您正苦于以下问题:Java Plugin.getDescription方法的具体用法?Java Plugin.getDescription怎么用?Java Plugin.getDescription使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cn.nukkit.plugin.Plugin
的用法示例。
在下文中一共展示了Plugin.getDescription方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getLongQuery
import cn.nukkit.plugin.Plugin; //导入方法依赖的package包/类
public byte[] getLongQuery() {
ByteBuffer query = ByteBuffer.allocate(65536);
String plist = this.server_engine;
if (this.plugins.length > 0 && this.listPlugins) {
plist += ":";
for (Plugin p : this.plugins) {
PluginDescription d = p.getDescription();
plist += " " + d.getName().replace(";", "").replace(":", "").replace(" ", "_") + " " + d.getVersion().replace(";", "").replace(":", "").replace(" ", "_") + ";";
}
plist = plist.substring(0, plist.length() - 2);
}
query.put("splitnum".getBytes());
query.put((byte) 0x00);
query.put((byte) 128);
query.put((byte) 0x00);
LinkedHashMap<String, String> KVdata = new LinkedHashMap<>();
KVdata.put("hostname", this.serverName);
KVdata.put("gametype", this.gameType);
KVdata.put("game_id", GAME_ID);
KVdata.put("version", this.version);
KVdata.put("server_engine", this.server_engine);
KVdata.put("plugins", plist);
KVdata.put("map", this.map);
KVdata.put("numplayers", String.valueOf(this.numPlayers));
KVdata.put("maxplayers", String.valueOf(this.maxPlayers));
KVdata.put("whitelist", this.whitelist);
KVdata.put("hostip", this.ip);
KVdata.put("hostport", String.valueOf(this.port));
for (Map.Entry<String, String> entry : KVdata.entrySet()) {
query.put(entry.getKey().getBytes(StandardCharsets.UTF_8));
query.put((byte) 0x00);
query.put(entry.getValue().getBytes(StandardCharsets.UTF_8));
query.put((byte) 0x00);
}
query.put(new byte[]{0x00, 0x01}).put("player_".getBytes()).put(new byte[]{0x00, 0x00});
for (Player player : this.players) {
query.put(player.getName().getBytes(StandardCharsets.UTF_8));
query.put((byte) 0x00);
}
query.put((byte) 0x00);
return Arrays.copyOf(query.array(), query.position());
}