本文整理汇总了Java中codechicken.core.CommonUtils类的典型用法代码示例。如果您正苦于以下问题:Java CommonUtils类的具体用法?Java CommonUtils怎么用?Java CommonUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CommonUtils类属于codechicken.core包,在下文中一共展示了CommonUtils类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: dumpFile
import codechicken.core.CommonUtils; //导入依赖的package包/类
public void dumpFile() {
try {
File file = new File(CommonUtils.getMinecraftDir(), "dumps/" + getFileName(name.replaceFirst(".+\\.", "")));
if (!file.getParentFile().exists())
file.getParentFile().mkdirs();
if (!file.exists())
file.createNewFile();
dumpTo(file);
NEIClientUtils.printChatMessage(dumpMessage(file));
} catch (Exception e) {
System.err.println("Error dumping " + renderName() + " mode: " + getMode());
e.printStackTrace();
}
}
开发者ID:4Space,项目名称:4Space-5,代码行数:17,代码来源:DataDumper.java
示例2: init
import codechicken.core.CommonUtils; //导入依赖的package包/类
@Subscribe
public void init(FMLInitializationEvent event) {
if (CommonUtils.isClient())
ClientHandler.load();
ServerHandler.load();
}
开发者ID:4Space,项目名称:4Space-5,代码行数:8,代码来源:NEIModContainer.java
示例3: advanceDisabledTimes
import codechicken.core.CommonUtils; //导入依赖的package包/类
public static void advanceDisabledTimes(World world) {
int dim = CommonUtils.getDimension(world);
int hour = (int) (getTime(world) % 24000) / 1000;
int newhour = hour;
while (NEIServerConfig.isActionDisabled(dim, NEIActions.timeZones[newhour / 6]))
newhour = ((newhour / 6 + 1) % 4) * 6;
if (newhour != hour)
setHourForward(world, newhour, false);
}
开发者ID:4Space,项目名称:4Space-5,代码行数:11,代码来源:NEIServerUtils.java
示例4: sendHasServerSideTo
import codechicken.core.CommonUtils; //导入依赖的package包/类
public static void sendHasServerSideTo(EntityPlayerMP player) {
NEIServerConfig.logger.debug("Sending serverside check to: " + player.getCommandSenderName());
PacketCustom packet = new PacketCustom(channel, 1);
packet.writeByte(NEIActions.protocol);
packet.writeString(CommonUtils.getWorldName(player.worldObj));
packet.sendToPlayer(player);
}
开发者ID:4Space,项目名称:4Space-5,代码行数:9,代码来源:NEISPH.java
示例5: loadWorld
import codechicken.core.CommonUtils; //导入依赖的package包/类
private static void loadWorld(World world) {
try {
File file = new File(getSaveDir(CommonUtils.getDimension(world)), "world.dat");
NBTTagCompound tag = CompressedStreamTools.read(file);
if(tag == null)
tag = new NBTTagCompound();
dimTags.put(CommonUtils.getDimension(world), tag);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
开发者ID:4Space,项目名称:4Space-5,代码行数:12,代码来源:NEIServerConfig.java
示例6: dumpFile
import codechicken.core.CommonUtils; //导入依赖的package包/类
public void dumpFile() {
try {
File file = new File(CommonUtils.getMinecraftDir(), "dumps/" + getFileName(name.replaceFirst(".+\\.", "")));
if (!file.getParentFile().exists())
file.getParentFile().mkdirs();
if (!file.exists())
file.createNewFile();
dumpTo(file);
NEIClientUtils.printChatMessage(dumpMessage(file));
} catch (Exception e) {
NEIClientConfig.logger.error("Error dumping " + renderName() + " mode: " + getMode(), e);
}
}
开发者ID:SneakyTactician,项目名称:BIGB,代码行数:16,代码来源:DataDumper.java
示例7: init
import codechicken.core.CommonUtils; //导入依赖的package包/类
@Subscribe
public void init(FMLInitializationEvent event) {
if (CommonUtils.isClient())
ClientHandler.init();
ServerHandler.init();
}
开发者ID:SneakyTactician,项目名称:BIGB,代码行数:8,代码来源:NEIModContainer.java
示例8: throwCME
import codechicken.core.CommonUtils; //导入依赖的package包/类
public static RuntimeException throwCME(String msg) {
if (CommonUtils.isClient())
return ClientHandler.throwCME(msg);
throw new RuntimeException(msg);
}
开发者ID:4Space,项目名称:4Space-5,代码行数:7,代码来源:NEIServerUtils.java
示例9: getSaveDir
import codechicken.core.CommonUtils; //导入依赖的package包/类
public static File getSaveDir(int dim) {
return new File(CommonUtils.getSaveLocation(dim), "NEI");
}
开发者ID:4Space,项目名称:4Space-5,代码行数:4,代码来源:NEIServerConfig.java
示例10: tickEvent
import codechicken.core.CommonUtils; //导入依赖的package包/类
@SubscribeEvent
public void tickEvent(TickEvent.WorldTickEvent event) {
if (event.phase == Phase.START && !event.world.isRemote &&
NEIServerConfig.dimTags.containsKey(CommonUtils.getDimension(event.world)))//fake worlds that don't call Load
processDisabledProperties(event.world);
}
开发者ID:4Space,项目名称:4Space-5,代码行数:7,代码来源:ServerHandler.java
示例11: processDisabledProperties
import codechicken.core.CommonUtils; //导入依赖的package包/类
private void processDisabledProperties(World world) {
NEIServerUtils.advanceDisabledTimes(world);
if (NEIServerUtils.isRaining(world) && NEIServerConfig.isActionDisabled(CommonUtils.getDimension(world), "rain"))
NEIServerUtils.toggleRaining(world, false);
}
开发者ID:4Space,项目名称:4Space-5,代码行数:6,代码来源:ServerHandler.java
示例12: preInit
import codechicken.core.CommonUtils; //导入依赖的package包/类
@Subscribe
public void preInit(FMLPreInitializationEvent event) {
if (CommonUtils.isClient())
ClientHandler.preInit();
}
开发者ID:4Space,项目名称:4Space-5,代码行数:6,代码来源:NEIModContainer.java
示例13: getSaveDir
import codechicken.core.CommonUtils; //导入依赖的package包/类
public static File getSaveDir(World world) {
return new File(CommonUtils.getSaveLocation(world), "NEI");
}
开发者ID:SneakyTactician,项目名称:BIGB,代码行数:4,代码来源:NEIServerConfig.java
注:本文中的codechicken.core.CommonUtils类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论