package com.pahimar.ee3; import com.pahimar.ee3.addon.AddonHandler; import com.pahimar.ee3.block.ModBlocks; import com.pahimar.ee3.command.CommandHandler; import com.pahimar.ee3.configuration.ConfigurationHandler; import com.pahimar.ee3.handler.*; import com.pahimar.ee3.helper.FluidHelper; import com.pahimar.ee3.helper.LogHelper; import com.pahimar.ee3.helper.VersionHelper; import com.pahimar.ee3.imc.InterModCommsHandler; import com.pahimar.ee3.item.ModItems; import com.pahimar.ee3.lib.Reference; import com.pahimar.ee3.lib.Strings; import com.pahimar.ee3.proxy.IProxy; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.*; import cpw.mods.fml.common.event.FMLInterModComms.IMCEvent; import cpw.mods.fml.common.network.NetworkRegistry; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.relauncher.Side; import net.minecraftforge.common.MinecraftForge; import java.io.File; /** * Equivalent-Exchange-3 *

* EquivalentExchange3 * * @author pahimar */ @Mod(modid = Reference.MOD_ID, name = Reference.MOD_NAME, certificateFingerprint = Reference.FINGERPRINT) public class EquivalentExchange3 { @Instance(Reference.MOD_ID) public static EquivalentExchange3 instance; @SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS) public static IProxy proxy; @EventHandler @SuppressWarnings("unused") public void invalidFingerprint(FMLFingerprintViolationEvent event) { // Report (log) to the user that the version of Equivalent Exchange 3 // they are using has been changed/tampered with if (Reference.FINGERPRINT.equals("@FINGERPRINT@")) { LogHelper.warn(Strings.NO_FINGERPRINT_MESSAGE); } else { LogHelper.error(Strings.INVALID_FINGERPRINT_MESSAGE); } } @EventHandler @SuppressWarnings("unused") public void serverStarting(FMLServerStartingEvent event) { // Initialize the custom commands CommandHandler.initCommands(event); } @EventHandler @SuppressWarnings("unused") public void preInit(FMLPreInitializationEvent event) { // set version number event.getModMetadata().version = Reference.VERSION_NUMBER; // Initialize the configuration ConfigurationHandler.init(event.getModConfigurationDirectory().getAbsolutePath() + File.separator + Reference.CHANNEL_NAME.toLowerCase() + File.separator); // Conduct the version check and log the result VersionHelper.execute(); // Initialize the Version Check Tick Handler (Client only) TickRegistry.registerTickHandler(new VersionCheckTickHandler(), Side.CLIENT); // Initialize the InterModCommunications Tick Handler (Server only) TickRegistry.registerScheduledTickHandler(new InterModCommsHandler(), Side.SERVER); // Initialize the Render Tick Handler (Client only) proxy.registerRenderTickHandler(); // Register the KeyBinding Handler (Client only) proxy.registerKeyBindingHandler(); // Register the Sound Handler (Client only) proxy.registerSoundHandler(); // Initialize mod blocks ModBlocks.init(); // Initialize mod items ModItems.init(); } @EventHandler @SuppressWarnings("unchecked, unused") public void init(FMLInitializationEvent event) { // Register the GUI Handler NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandler()); // Register the Item Pickup Handler MinecraftForge.EVENT_BUS.register(new ItemEventHandler()); MinecraftForge.EVENT_BUS.register(new ActionRequestHandler()); MinecraftForge.EVENT_BUS.register(new WorldTransmutationHandler()); // Register the hook to initialize the EmcRegistry MinecraftForge.EVENT_BUS.register(new WorldEventHandler()); // Register the ItemTooltipEvent Handler proxy.registerItemTooltipHandler(); // Register the DrawBlockHighlight Handler proxy.registerDrawBlockHighlightHandler(); // Initialize custom rendering and pre-load textures (Client only) proxy.initRenderingAndTextures(); // Initialize our Crafting Handler CraftingHandler.init(); // Handle fluid registration FluidHelper.registerFluids(); // Initialize mod tile entities proxy.registerTileEntities(); // Register our fuels GameRegistry.registerFuelHandler(new FuelHandler()); // Initialize addons (which work with IMC, and must be used in Init) AddonHandler.init(); } @EventHandler @SuppressWarnings("unused") public void postInit(FMLPostInitializationEvent event) { // NOOP } @EventHandler @SuppressWarnings("unused") public void handleIMCMessages(IMCEvent event) { InterModCommsHandler.processIMCMessages(event); } }