本文整理汇总了Java中net.minecraft.server.MinecraftServer.getPlayerList方法的典型用法代码示例。如果您正苦于以下问题:Java MinecraftServer.getPlayerList方法的具体用法?Java MinecraftServer.getPlayerList怎么用?Java MinecraftServer.getPlayerList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.server.MinecraftServer
的用法示例。
在下文中一共展示了MinecraftServer.getPlayerList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: InjectIntegrated
import net.minecraft.server.MinecraftServer; //导入方法依赖的package包/类
@SideOnly(Side.CLIENT)
public static void InjectIntegrated(MinecraftServer server)
{
PlayerList playerList = server.getPlayerList();
try {
if (!(playerList instanceof HookedIntegratedPlayerList) && playerList instanceof IntegratedPlayerList)
{
server.setPlayerList(new HookedIntegratedPlayerList((IntegratedPlayerList)playerList));
}
else
{
// uh ho...
Util.logger.error("Unable to inject custom PlayerList into server due to unknown type! PlayerList was of type {}.", playerList.getClass().toString());
}
} catch (IllegalAccessException | NoSuchFieldException | SecurityException e) {
Util.logger.logException("Exception trying to inject custom PlayerList into server!", e);
}
}
示例2: InjectDedicated
import net.minecraft.server.MinecraftServer; //导入方法依赖的package包/类
@SideOnly(Side.SERVER)
public static void InjectDedicated(MinecraftServer server)
{
PlayerList playerList = server.getPlayerList();
try {
if (playerList instanceof DedicatedPlayerList)
{
server.setPlayerList(new HookedDedicatedPlayerList((DedicatedPlayerList)playerList));
}
else
{
// uh ho...
Util.logger.error("Unable to inject custom PlayerList into server due to unknown type! PlayerList was of type {}.", playerList.getClass().toString());
}
} catch (IllegalAccessException | NoSuchFieldException | SecurityException e) {
Util.logger.logException("Exception trying to inject custom PlayerList into server!", e);
}
}
示例3: execute
import net.minecraft.server.MinecraftServer; //导入方法依赖的package包/类
/**
* Callback for when the command is executed
*/
public void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException
{
sender.addChatMessage(new TextComponentTranslation("commands.save.start", new Object[0]));
if (server.getPlayerList() != null)
{
server.getPlayerList().saveAllPlayerData();
}
try
{
for (int i = 0; i < server.worldServers.length; ++i)
{
if (server.worldServers[i] != null)
{
WorldServer worldserver = server.worldServers[i];
boolean flag = worldserver.disableLevelSaving;
worldserver.disableLevelSaving = false;
worldserver.saveAllChunks(true, (IProgressUpdate)null);
worldserver.disableLevelSaving = flag;
}
}
if (args.length > 0 && "flush".equals(args[0]))
{
sender.addChatMessage(new TextComponentTranslation("commands.save.flushStart", new Object[0]));
for (int j = 0; j < server.worldServers.length; ++j)
{
if (server.worldServers[j] != null)
{
WorldServer worldserver1 = server.worldServers[j];
boolean flag1 = worldserver1.disableLevelSaving;
worldserver1.disableLevelSaving = false;
worldserver1.saveChunkData();
worldserver1.disableLevelSaving = flag1;
}
}
sender.addChatMessage(new TextComponentTranslation("commands.save.flushEnd", new Object[0]));
}
}
catch (MinecraftException minecraftexception)
{
notifyCommandListener(sender, this, "commands.save.failed", new Object[] {minecraftexception.getMessage()});
return;
}
notifyCommandListener(sender, this, "commands.save.success", new Object[0]);
}