本文整理匯總了Java中net.minecraft.world.World.getWorldInfo方法的典型用法代碼示例。如果您正苦於以下問題:Java World.getWorldInfo方法的具體用法?Java World.getWorldInfo怎麽用?Java World.getWorldInfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類net.minecraft.world.World
的用法示例。
在下文中一共展示了World.getWorldInfo方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: processCommand
import net.minecraft.world.World; //導入方法依賴的package包/類
/**
* Callback when the command is invoked
*/
public void processCommand(ICommandSender sender, String[] args) throws CommandException
{
if (args.length >= 1 && args.length <= 2)
{
int i = (300 + (new Random()).nextInt(600)) * 20;
if (args.length >= 2)
{
i = parseInt(args[1], 1, 1000000) * 20;
}
World world = MinecraftServer.getServer().worldServers[0];
WorldInfo worldinfo = world.getWorldInfo();
if ("clear".equalsIgnoreCase(args[0]))
{
worldinfo.setCleanWeatherTime(i);
worldinfo.setRainTime(0);
worldinfo.setThunderTime(0);
worldinfo.setRaining(false);
worldinfo.setThundering(false);
notifyOperators(sender, this, "commands.weather.clear", new Object[0]);
}
else if ("rain".equalsIgnoreCase(args[0]))
{
worldinfo.setCleanWeatherTime(0);
worldinfo.setRainTime(i);
worldinfo.setThunderTime(i);
worldinfo.setRaining(true);
worldinfo.setThundering(false);
notifyOperators(sender, this, "commands.weather.rain", new Object[0]);
}
else
{
if (!"thunder".equalsIgnoreCase(args[0]))
{
throw new WrongUsageException("commands.weather.usage", new Object[0]);
}
worldinfo.setCleanWeatherTime(0);
worldinfo.setRainTime(i);
worldinfo.setThunderTime(i);
worldinfo.setRaining(true);
worldinfo.setThundering(true);
notifyOperators(sender, this, "commands.weather.thunder", new Object[0]);
}
}
else
{
throw new WrongUsageException("commands.weather.usage", new Object[0]);
}
}
示例2: execute
import net.minecraft.world.World; //導入方法依賴的package包/類
/**
* Callback for when the command is executed
*/
public void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException
{
if (args.length >= 1 && args.length <= 2)
{
int i = (300 + (new Random()).nextInt(600)) * 20;
if (args.length >= 2)
{
i = parseInt(args[1], 1, 1000000) * 20;
}
World world = server.worldServers[0];
WorldInfo worldinfo = world.getWorldInfo();
if ("clear".equalsIgnoreCase(args[0]))
{
worldinfo.setCleanWeatherTime(i);
worldinfo.setRainTime(0);
worldinfo.setThunderTime(0);
worldinfo.setRaining(false);
worldinfo.setThundering(false);
notifyCommandListener(sender, this, "commands.weather.clear", new Object[0]);
}
else if ("rain".equalsIgnoreCase(args[0]))
{
worldinfo.setCleanWeatherTime(0);
worldinfo.setRainTime(i);
worldinfo.setThunderTime(i);
worldinfo.setRaining(true);
worldinfo.setThundering(false);
notifyCommandListener(sender, this, "commands.weather.rain", new Object[0]);
}
else
{
if (!"thunder".equalsIgnoreCase(args[0]))
{
throw new WrongUsageException("commands.weather.usage", new Object[0]);
}
worldinfo.setCleanWeatherTime(0);
worldinfo.setRainTime(i);
worldinfo.setThunderTime(i);
worldinfo.setRaining(true);
worldinfo.setThundering(true);
notifyCommandListener(sender, this, "commands.weather.thunder", new Object[0]);
}
}
else
{
throw new WrongUsageException("commands.weather.usage", new Object[0]);
}
}
示例3: getBiomeProvider
import net.minecraft.world.World; //導入方法依賴的package包/類
@Override
public BiomeProvider getBiomeProvider(World world)
{
return new BiomeProviderExP(world.getWorldInfo());
}
示例4: getWorldInfo
import net.minecraft.world.World; //導入方法依賴的package包/類
public static WorldInfo getWorldInfo(World world) { return world.getWorldInfo(); }