2014-11-14 12:02:52 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Applied Energistics 2.
|
|
|
|
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
|
|
|
|
*
|
|
|
|
* Applied Energistics 2 is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Applied Energistics 2 is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
|
|
|
|
*/
|
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
package appeng.core;
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import java.lang.reflect.Field;
|
|
|
|
|
|
|
|
import net.minecraft.item.crafting.CraftingManager;
|
|
|
|
import net.minecraft.util.WeightedRandomChestContent;
|
|
|
|
import net.minecraft.world.biome.BiomeGenBase;
|
|
|
|
import net.minecraftforge.common.ChestGenHooks;
|
|
|
|
import net.minecraftforge.common.DimensionManager;
|
|
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
|
|
import net.minecraftforge.oredict.RecipeSorter;
|
|
|
|
import net.minecraftforge.oredict.RecipeSorter.Category;
|
2014-11-18 16:47:30 +01:00
|
|
|
|
|
|
|
import cpw.mods.fml.common.FMLCommonHandler;
|
|
|
|
import cpw.mods.fml.common.event.FMLInitializationEvent;
|
|
|
|
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
|
|
|
|
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
|
|
|
|
import cpw.mods.fml.common.registry.GameRegistry;
|
|
|
|
import cpw.mods.fml.common.registry.VillagerRegistry;
|
|
|
|
|
2014-11-27 18:18:15 +01:00
|
|
|
import com.google.common.base.Optional;
|
|
|
|
import com.google.common.collect.ArrayListMultimap;
|
|
|
|
import com.google.common.collect.Multimap;
|
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.api.AEApi;
|
|
|
|
import appeng.api.config.Upgrades;
|
|
|
|
import appeng.api.definitions.Blocks;
|
|
|
|
import appeng.api.definitions.Items;
|
|
|
|
import appeng.api.definitions.Materials;
|
|
|
|
import appeng.api.definitions.Parts;
|
|
|
|
import appeng.api.features.IRecipeHandlerRegistry;
|
|
|
|
import appeng.api.features.IWirelessTermHandler;
|
|
|
|
import appeng.api.features.IWorldGen.WorldGenType;
|
|
|
|
import appeng.api.movable.IMovableRegistry;
|
|
|
|
import appeng.api.networking.IGridCacheRegistry;
|
|
|
|
import appeng.api.networking.crafting.ICraftingGrid;
|
|
|
|
import appeng.api.networking.energy.IEnergyGrid;
|
|
|
|
import appeng.api.networking.pathing.IPathingGrid;
|
|
|
|
import appeng.api.networking.security.ISecurityGrid;
|
|
|
|
import appeng.api.networking.spatial.ISpatialCache;
|
|
|
|
import appeng.api.networking.storage.IStorageGrid;
|
|
|
|
import appeng.api.networking.ticking.ITickManager;
|
|
|
|
import appeng.api.parts.IPartHelper;
|
|
|
|
import appeng.api.util.AEColor;
|
|
|
|
import appeng.api.util.AEItemDefinition;
|
|
|
|
import appeng.block.crafting.BlockCraftingMonitor;
|
|
|
|
import appeng.block.crafting.BlockCraftingStorage;
|
|
|
|
import appeng.block.crafting.BlockCraftingUnit;
|
|
|
|
import appeng.block.crafting.BlockMolecularAssembler;
|
|
|
|
import appeng.block.grindstone.BlockCrank;
|
|
|
|
import appeng.block.grindstone.BlockGrinder;
|
|
|
|
import appeng.block.misc.BlockCellWorkbench;
|
|
|
|
import appeng.block.misc.BlockCharger;
|
|
|
|
import appeng.block.misc.BlockCondenser;
|
|
|
|
import appeng.block.misc.BlockInscriber;
|
|
|
|
import appeng.block.misc.BlockInterface;
|
|
|
|
import appeng.block.misc.BlockLightDetector;
|
|
|
|
import appeng.block.misc.BlockPaint;
|
|
|
|
import appeng.block.misc.BlockQuartzGrowthAccelerator;
|
|
|
|
import appeng.block.misc.BlockQuartzTorch;
|
|
|
|
import appeng.block.misc.BlockSecurity;
|
|
|
|
import appeng.block.misc.BlockSkyCompass;
|
|
|
|
import appeng.block.misc.BlockTinyTNT;
|
|
|
|
import appeng.block.misc.BlockVibrationChamber;
|
|
|
|
import appeng.block.networking.BlockCableBus;
|
|
|
|
import appeng.block.networking.BlockController;
|
|
|
|
import appeng.block.networking.BlockCreativeEnergyCell;
|
|
|
|
import appeng.block.networking.BlockDenseEnergyCell;
|
|
|
|
import appeng.block.networking.BlockEnergyAcceptor;
|
|
|
|
import appeng.block.networking.BlockEnergyCell;
|
|
|
|
import appeng.block.networking.BlockWireless;
|
|
|
|
import appeng.block.qnb.BlockQuantumLinkChamber;
|
|
|
|
import appeng.block.qnb.BlockQuantumRing;
|
|
|
|
import appeng.block.solids.BlockFluix;
|
|
|
|
import appeng.block.solids.BlockQuartz;
|
|
|
|
import appeng.block.solids.BlockQuartzChiseled;
|
|
|
|
import appeng.block.solids.BlockQuartzGlass;
|
|
|
|
import appeng.block.solids.BlockQuartzLamp;
|
|
|
|
import appeng.block.solids.BlockQuartzPillar;
|
|
|
|
import appeng.block.solids.BlockSkyStone;
|
|
|
|
import appeng.block.solids.OreQuartz;
|
|
|
|
import appeng.block.solids.OreQuartzCharged;
|
|
|
|
import appeng.block.spatial.BlockMatrixFrame;
|
|
|
|
import appeng.block.spatial.BlockSpatialIOPort;
|
|
|
|
import appeng.block.spatial.BlockSpatialPylon;
|
2014-11-18 16:47:30 +01:00
|
|
|
import appeng.block.stair.ChiseledQuartzStairBlock;
|
|
|
|
import appeng.block.stair.FluixStairBlock;
|
|
|
|
import appeng.block.stair.QuartzPillarStairBlock;
|
|
|
|
import appeng.block.stair.QuartzStairBlock;
|
|
|
|
import appeng.block.stair.SkyStoneBlockStairBlock;
|
|
|
|
import appeng.block.stair.SkyStoneBrickStairBlock;
|
|
|
|
import appeng.block.stair.SkyStoneSmallBrickStairBlock;
|
|
|
|
import appeng.block.stair.SkyStoneStairBlock;
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.block.storage.BlockChest;
|
|
|
|
import appeng.block.storage.BlockDrive;
|
|
|
|
import appeng.block.storage.BlockIOPort;
|
|
|
|
import appeng.block.storage.BlockSkyChest;
|
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
import appeng.core.features.ColoredItemDefinition;
|
|
|
|
import appeng.core.features.DamagedItemDefinition;
|
|
|
|
import appeng.core.features.IAEFeature;
|
|
|
|
import appeng.core.features.IStackSrc;
|
|
|
|
import appeng.core.features.ItemStackSrc;
|
|
|
|
import appeng.core.features.NullItemDefinition;
|
|
|
|
import appeng.core.features.WrappedDamageItemDefinition;
|
|
|
|
import appeng.core.features.registries.P2PTunnelRegistry;
|
|
|
|
import appeng.core.features.registries.entries.BasicCellHandler;
|
|
|
|
import appeng.core.features.registries.entries.CreativeCellHandler;
|
|
|
|
import appeng.core.localization.GuiText;
|
|
|
|
import appeng.core.localization.PlayerMessages;
|
|
|
|
import appeng.core.stats.PlayerStatsRegistration;
|
|
|
|
import appeng.debug.BlockChunkloader;
|
|
|
|
import appeng.debug.BlockCubeGenerator;
|
|
|
|
import appeng.debug.BlockItemGen;
|
|
|
|
import appeng.debug.BlockPhantomNode;
|
|
|
|
import appeng.debug.ToolDebugCard;
|
|
|
|
import appeng.debug.ToolEraser;
|
|
|
|
import appeng.debug.ToolMeteoritePlacer;
|
|
|
|
import appeng.debug.ToolReplicatorCard;
|
|
|
|
import appeng.hooks.AETrading;
|
|
|
|
import appeng.hooks.MeteoriteWorldGen;
|
|
|
|
import appeng.hooks.QuartzWorldGen;
|
|
|
|
import appeng.hooks.TickHandler;
|
|
|
|
import appeng.integration.IntegrationType;
|
|
|
|
import appeng.items.materials.ItemMultiMaterial;
|
|
|
|
import appeng.items.materials.MaterialType;
|
|
|
|
import appeng.items.misc.ItemCrystalSeed;
|
|
|
|
import appeng.items.misc.ItemEncodedPattern;
|
|
|
|
import appeng.items.misc.ItemPaintBall;
|
|
|
|
import appeng.items.parts.ItemFacade;
|
|
|
|
import appeng.items.parts.ItemMultiPart;
|
|
|
|
import appeng.items.parts.PartType;
|
|
|
|
import appeng.items.storage.ItemBasicStorageCell;
|
|
|
|
import appeng.items.storage.ItemCreativeStorageCell;
|
|
|
|
import appeng.items.storage.ItemSpatialStorageCell;
|
|
|
|
import appeng.items.storage.ItemViewCell;
|
|
|
|
import appeng.items.tools.ToolBiometricCard;
|
|
|
|
import appeng.items.tools.ToolMemoryCard;
|
|
|
|
import appeng.items.tools.ToolNetworkTool;
|
|
|
|
import appeng.items.tools.powered.ToolChargedStaff;
|
|
|
|
import appeng.items.tools.powered.ToolColorApplicator;
|
|
|
|
import appeng.items.tools.powered.ToolEntropyManipulator;
|
|
|
|
import appeng.items.tools.powered.ToolMassCannon;
|
|
|
|
import appeng.items.tools.powered.ToolPortableCell;
|
|
|
|
import appeng.items.tools.powered.ToolWirelessTerminal;
|
|
|
|
import appeng.items.tools.quartz.ToolQuartzAxe;
|
|
|
|
import appeng.items.tools.quartz.ToolQuartzCuttingKnife;
|
|
|
|
import appeng.items.tools.quartz.ToolQuartzHoe;
|
|
|
|
import appeng.items.tools.quartz.ToolQuartzPickaxe;
|
|
|
|
import appeng.items.tools.quartz.ToolQuartzSpade;
|
|
|
|
import appeng.items.tools.quartz.ToolQuartzSword;
|
|
|
|
import appeng.items.tools.quartz.ToolQuartzWrench;
|
|
|
|
import appeng.me.cache.CraftingGridCache;
|
|
|
|
import appeng.me.cache.EnergyGridCache;
|
|
|
|
import appeng.me.cache.GridStorageCache;
|
|
|
|
import appeng.me.cache.P2PCache;
|
|
|
|
import appeng.me.cache.PathGridCache;
|
|
|
|
import appeng.me.cache.SecurityCache;
|
|
|
|
import appeng.me.cache.SpatialPylonCache;
|
|
|
|
import appeng.me.cache.TickManagerCache;
|
|
|
|
import appeng.me.storage.AEExternalHandler;
|
|
|
|
import appeng.parts.PartPlacement;
|
|
|
|
import appeng.recipes.AEItemResolver;
|
|
|
|
import appeng.recipes.RecipeHandler;
|
|
|
|
import appeng.recipes.game.DisassembleRecipe;
|
|
|
|
import appeng.recipes.game.FacadeRecipe;
|
|
|
|
import appeng.recipes.game.ShapedRecipe;
|
|
|
|
import appeng.recipes.game.ShapelessRecipe;
|
|
|
|
import appeng.recipes.handlers.Crusher;
|
|
|
|
import appeng.recipes.handlers.Grind;
|
|
|
|
import appeng.recipes.handlers.GrindFZ;
|
|
|
|
import appeng.recipes.handlers.HCCrusher;
|
|
|
|
import appeng.recipes.handlers.Inscribe;
|
|
|
|
import appeng.recipes.handlers.Macerator;
|
|
|
|
import appeng.recipes.handlers.MekCrusher;
|
|
|
|
import appeng.recipes.handlers.MekEnrichment;
|
|
|
|
import appeng.recipes.handlers.Press;
|
|
|
|
import appeng.recipes.handlers.Pulverizer;
|
|
|
|
import appeng.recipes.handlers.Shaped;
|
|
|
|
import appeng.recipes.handlers.Shapeless;
|
|
|
|
import appeng.recipes.handlers.Smelt;
|
|
|
|
import appeng.recipes.loader.ConfigLoader;
|
|
|
|
import appeng.recipes.loader.JarLoader;
|
|
|
|
import appeng.recipes.ores.OreDictionaryHandler;
|
|
|
|
import appeng.spatial.BiomeGenStorage;
|
|
|
|
import appeng.spatial.StorageWorldProvider;
|
|
|
|
import appeng.tile.AEBaseTile;
|
2014-11-18 16:47:30 +01:00
|
|
|
import appeng.util.ClassInstantiation;
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.util.Platform;
|
|
|
|
|
|
|
|
|
|
|
|
public class Registration
|
|
|
|
{
|
|
|
|
final public static Registration instance = new Registration();
|
|
|
|
|
2014-11-27 18:18:15 +01:00
|
|
|
private final RecipeHandler recipeHandler;
|
|
|
|
private final Multimap<AEFeature, Class<? extends IAEFeature>> featuresToEntities;
|
2014-09-24 02:26:27 +02:00
|
|
|
public BiomeGenBase storageBiome;
|
|
|
|
|
|
|
|
private Registration()
|
|
|
|
{
|
|
|
|
recipeHandler = new RecipeHandler();
|
2014-11-27 18:18:15 +01:00
|
|
|
featuresToEntities = ArrayListMultimap.create();
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
public void PreInit( FMLPreInitializationEvent event )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
registerSpatial( false );
|
|
|
|
|
|
|
|
IRecipeHandlerRegistry recipeRegistry = AEApi.instance().registries().recipes();
|
|
|
|
recipeRegistry.addNewSubItemResolver( new AEItemResolver() );
|
|
|
|
|
|
|
|
recipeRegistry.addNewCraftHandler( "hccrusher", HCCrusher.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "mekcrusher", MekCrusher.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "mekechamber", MekEnrichment.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "grind", Grind.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "crusher", Crusher.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "grindfz", GrindFZ.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "pulverizer", Pulverizer.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "macerator", Macerator.class );
|
|
|
|
|
|
|
|
recipeRegistry.addNewCraftHandler( "smelt", Smelt.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "inscribe", Inscribe.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "press", Press.class );
|
|
|
|
|
|
|
|
recipeRegistry.addNewCraftHandler( "shaped", Shaped.class );
|
|
|
|
recipeRegistry.addNewCraftHandler( "shapeless", Shapeless.class );
|
|
|
|
|
|
|
|
RecipeSorter.register( "AE2-Facade", FacadeRecipe.class, Category.SHAPED, "" );
|
|
|
|
RecipeSorter.register( "AE2-Shaped", ShapedRecipe.class, Category.SHAPED, "" );
|
|
|
|
RecipeSorter.register( "AE2-Shapeless", ShapelessRecipe.class, Category.SHAPELESS, "" );
|
|
|
|
|
|
|
|
MinecraftForge.EVENT_BUS.register( OreDictionaryHandler.instance );
|
|
|
|
|
2014-11-27 18:18:15 +01:00
|
|
|
Items items = Api.instance.items();
|
|
|
|
Materials materials = Api.instance.materials();
|
|
|
|
Parts parts = Api.instance.parts();
|
|
|
|
Blocks blocks = Api.instance.blocks();
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-09-28 20:56:16 +02:00
|
|
|
AEItemDefinition materialItem = addFeature( ItemMultiMaterial.class );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-27 18:18:15 +01:00
|
|
|
Class<?> materialClass = materials.getClass();
|
2014-11-18 16:47:30 +01:00
|
|
|
for ( MaterialType mat : MaterialType.values() )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( mat == MaterialType.InvalidType )
|
2014-11-18 16:47:30 +01:00
|
|
|
( ( ItemMultiMaterial ) materialItem.item() ).createMaterial( mat );
|
2014-09-24 02:26:27 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
Field f = materialClass.getField( "material" + mat.name() );
|
2014-11-18 16:47:30 +01:00
|
|
|
IStackSrc is = ( ( ItemMultiMaterial ) materialItem.item() ).createMaterial( mat );
|
2014-09-24 02:26:27 +02:00
|
|
|
if ( is != null )
|
|
|
|
f.set( materials, new DamagedItemDefinition( is ) );
|
|
|
|
else
|
|
|
|
f.set( materials, new NullItemDefinition() );
|
|
|
|
}
|
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
catch ( Throwable err )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
AELog.severe( "Error creating material: " + mat.name() );
|
|
|
|
throw new RuntimeException( err );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-28 20:56:16 +02:00
|
|
|
AEItemDefinition partItem = addFeature( ItemMultiPart.class );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-27 18:18:15 +01:00
|
|
|
Class<?> partClass = parts.getClass();
|
2014-11-18 16:47:30 +01:00
|
|
|
for ( PartType type : PartType.values() )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( type == PartType.InvalidType )
|
2014-11-18 16:47:30 +01:00
|
|
|
( ( ItemMultiPart ) partItem.item() ).createPart( type, null );
|
2014-09-24 02:26:27 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
Field f = partClass.getField( "part" + type.name() );
|
2014-11-27 18:18:15 +01:00
|
|
|
Enum<AEColor>[] variants = type.getVariants();
|
2014-09-24 02:26:27 +02:00
|
|
|
if ( variants == null )
|
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
ItemStackSrc is = ( ( ItemMultiPart ) partItem.item() ).createPart( type, null );
|
2014-09-24 02:26:27 +02:00
|
|
|
if ( is != null )
|
|
|
|
f.set( parts, new DamagedItemDefinition( is ) );
|
|
|
|
else
|
|
|
|
f.set( parts, new NullItemDefinition() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( variants[0] instanceof AEColor )
|
|
|
|
{
|
|
|
|
ColoredItemDefinition def = new ColoredItemDefinition();
|
|
|
|
|
2014-11-27 18:18:15 +01:00
|
|
|
for ( Enum<AEColor> v : variants )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
ItemStackSrc is = ( ( ItemMultiPart ) partItem.item() ).createPart( type, v );
|
2014-09-24 02:26:27 +02:00
|
|
|
if ( is != null )
|
2014-11-18 16:47:30 +01:00
|
|
|
def.add( ( AEColor ) v, is );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
f.set( parts, def );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
catch ( Throwable err )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
AELog.severe( "Error creating part: " + type.name() );
|
|
|
|
throw new RuntimeException( err );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// very important block!
|
|
|
|
blocks.blockMultiPart = addFeature( BlockCableBus.class );
|
|
|
|
|
|
|
|
blocks.blockCraftingUnit = addFeature( BlockCraftingUnit.class );
|
|
|
|
blocks.blockCraftingAccelerator = new WrappedDamageItemDefinition( blocks.blockCraftingUnit, 1 );
|
|
|
|
blocks.blockCraftingMonitor = addFeature( BlockCraftingMonitor.class );
|
|
|
|
blocks.blockCraftingStorage1k = addFeature( BlockCraftingStorage.class );
|
|
|
|
blocks.blockCraftingStorage4k = new WrappedDamageItemDefinition( blocks.blockCraftingStorage1k, 1 );
|
|
|
|
blocks.blockCraftingStorage16k = new WrappedDamageItemDefinition( blocks.blockCraftingStorage1k, 2 );
|
|
|
|
blocks.blockCraftingStorage64k = new WrappedDamageItemDefinition( blocks.blockCraftingStorage1k, 3 );
|
|
|
|
blocks.blockMolecularAssembler = addFeature( BlockMolecularAssembler.class );
|
|
|
|
|
|
|
|
blocks.blockQuartzOre = addFeature( OreQuartz.class );
|
|
|
|
blocks.blockQuartzOreCharged = addFeature( OreQuartzCharged.class );
|
|
|
|
blocks.blockMatrixFrame = addFeature( BlockMatrixFrame.class );
|
|
|
|
blocks.blockQuartz = addFeature( BlockQuartz.class );
|
|
|
|
blocks.blockFluix = addFeature( BlockFluix.class );
|
|
|
|
blocks.blockSkyStone = addFeature( BlockSkyStone.class );
|
|
|
|
blocks.blockSkyChest = addFeature( BlockSkyChest.class );
|
|
|
|
blocks.blockSkyCompass = addFeature( BlockSkyCompass.class );
|
|
|
|
|
|
|
|
blocks.blockQuartzGlass = addFeature( BlockQuartzGlass.class );
|
|
|
|
blocks.blockQuartzVibrantGlass = addFeature( BlockQuartzLamp.class );
|
|
|
|
blocks.blockQuartzPillar = addFeature( BlockQuartzPillar.class );
|
|
|
|
blocks.blockQuartzChiseled = addFeature( BlockQuartzChiseled.class );
|
|
|
|
blocks.blockQuartzTorch = addFeature( BlockQuartzTorch.class );
|
|
|
|
blocks.blockLightDetector = addFeature( BlockLightDetector.class );
|
|
|
|
blocks.blockCharger = addFeature( BlockCharger.class );
|
|
|
|
blocks.blockQuartzGrowthAccelerator = addFeature( BlockQuartzGrowthAccelerator.class );
|
|
|
|
|
|
|
|
blocks.blockGrindStone = addFeature( BlockGrinder.class );
|
|
|
|
blocks.blockCrankHandle = addFeature( BlockCrank.class );
|
|
|
|
blocks.blockInscriber = addFeature( BlockInscriber.class );
|
|
|
|
blocks.blockWireless = addFeature( BlockWireless.class );
|
|
|
|
blocks.blockTinyTNT = addFeature( BlockTinyTNT.class );
|
|
|
|
|
|
|
|
blocks.blockQuantumRing = addFeature( BlockQuantumRing.class );
|
|
|
|
blocks.blockQuantumLink = addFeature( BlockQuantumLinkChamber.class );
|
|
|
|
|
|
|
|
blocks.blockSpatialPylon = addFeature( BlockSpatialPylon.class );
|
|
|
|
blocks.blockSpatialIOPort = addFeature( BlockSpatialIOPort.class );
|
|
|
|
|
|
|
|
blocks.blockController = addFeature( BlockController.class );
|
|
|
|
blocks.blockDrive = addFeature( BlockDrive.class );
|
|
|
|
blocks.blockChest = addFeature( BlockChest.class );
|
|
|
|
blocks.blockInterface = addFeature( BlockInterface.class );
|
|
|
|
blocks.blockCellWorkbench = addFeature( BlockCellWorkbench.class );
|
|
|
|
blocks.blockIOPort = addFeature( BlockIOPort.class );
|
|
|
|
blocks.blockCondenser = addFeature( BlockCondenser.class );
|
|
|
|
blocks.blockEnergyAcceptor = addFeature( BlockEnergyAcceptor.class );
|
|
|
|
blocks.blockVibrationChamber = addFeature( BlockVibrationChamber.class );
|
|
|
|
|
|
|
|
blocks.blockEnergyCell = addFeature( BlockEnergyCell.class );
|
|
|
|
blocks.blockEnergyCellDense = addFeature( BlockDenseEnergyCell.class );
|
|
|
|
blocks.blockEnergyCellCreative = addFeature( BlockCreativeEnergyCell.class );
|
|
|
|
|
|
|
|
blocks.blockSecurity = addFeature( BlockSecurity.class );
|
|
|
|
blocks.blockPaint = addFeature( BlockPaint.class );
|
|
|
|
|
|
|
|
items.itemCellCreative = addFeature( ItemCreativeStorageCell.class );
|
|
|
|
items.itemViewCell = addFeature( ItemViewCell.class );
|
|
|
|
items.itemEncodedPattern = addFeature( ItemEncodedPattern.class );
|
|
|
|
|
|
|
|
items.itemCell1k = addFeature( ItemBasicStorageCell.class, MaterialType.Cell1kPart, 1 );
|
|
|
|
items.itemCell4k = addFeature( ItemBasicStorageCell.class, MaterialType.Cell4kPart, 4 );
|
|
|
|
items.itemCell16k = addFeature( ItemBasicStorageCell.class, MaterialType.Cell16kPart, 16 );
|
|
|
|
items.itemCell64k = addFeature( ItemBasicStorageCell.class, MaterialType.Cell64kPart, 64 );
|
|
|
|
|
|
|
|
items.itemSpatialCell2 = addFeature( ItemSpatialStorageCell.class, MaterialType.Cell2SpatialPart, 2 );
|
|
|
|
items.itemSpatialCell16 = addFeature( ItemSpatialStorageCell.class, MaterialType.Cell16SpatialPart, 16 );
|
|
|
|
items.itemSpatialCell128 = addFeature( ItemSpatialStorageCell.class, MaterialType.Cell128SpatialPart, 128 );
|
|
|
|
|
|
|
|
items.itemCertusQuartzKnife = addFeature( ToolQuartzCuttingKnife.class, AEFeature.CertusQuartzTools );
|
|
|
|
items.itemCertusQuartzWrench = addFeature( ToolQuartzWrench.class, AEFeature.CertusQuartzTools );
|
|
|
|
items.itemCertusQuartzAxe = addFeature( ToolQuartzAxe.class, AEFeature.CertusQuartzTools );
|
|
|
|
items.itemCertusQuartzHoe = addFeature( ToolQuartzHoe.class, AEFeature.CertusQuartzTools );
|
|
|
|
items.itemCertusQuartzPick = addFeature( ToolQuartzPickaxe.class, AEFeature.CertusQuartzTools );
|
|
|
|
items.itemCertusQuartzShovel = addFeature( ToolQuartzSpade.class, AEFeature.CertusQuartzTools );
|
|
|
|
items.itemCertusQuartzSword = addFeature( ToolQuartzSword.class, AEFeature.CertusQuartzTools );
|
|
|
|
|
|
|
|
items.itemNetherQuartzKnife = addFeature( ToolQuartzCuttingKnife.class, AEFeature.NetherQuartzTools );
|
|
|
|
items.itemNetherQuartzWrench = addFeature( ToolQuartzWrench.class, AEFeature.NetherQuartzTools );
|
|
|
|
items.itemNetherQuartzAxe = addFeature( ToolQuartzAxe.class, AEFeature.NetherQuartzTools );
|
|
|
|
items.itemNetherQuartzHoe = addFeature( ToolQuartzHoe.class, AEFeature.NetherQuartzTools );
|
|
|
|
items.itemNetherQuartzPick = addFeature( ToolQuartzPickaxe.class, AEFeature.NetherQuartzTools );
|
|
|
|
items.itemNetherQuartzShovel = addFeature( ToolQuartzSpade.class, AEFeature.NetherQuartzTools );
|
|
|
|
items.itemNetherQuartzSword = addFeature( ToolQuartzSword.class, AEFeature.NetherQuartzTools );
|
|
|
|
|
|
|
|
items.itemMassCannon = addFeature( ToolMassCannon.class );
|
|
|
|
items.itemMemoryCard = addFeature( ToolMemoryCard.class );
|
|
|
|
items.itemChargedStaff = addFeature( ToolChargedStaff.class );
|
|
|
|
items.itemEntropyManipulator = addFeature( ToolEntropyManipulator.class );
|
|
|
|
items.itemColorApplicator = addFeature( ToolColorApplicator.class );
|
|
|
|
|
|
|
|
items.itemWirelessTerminal = addFeature( ToolWirelessTerminal.class );
|
|
|
|
items.itemNetworkTool = addFeature( ToolNetworkTool.class );
|
|
|
|
items.itemPortableCell = addFeature( ToolPortableCell.class );
|
|
|
|
items.itemBiometricCard = addFeature( ToolBiometricCard.class );
|
|
|
|
|
|
|
|
items.itemFacade = addFeature( ItemFacade.class );
|
|
|
|
items.itemCrystalSeed = addFeature( ItemCrystalSeed.class );
|
|
|
|
|
2014-09-28 11:47:17 +02:00
|
|
|
ColoredItemDefinition paintBall, lumenPaintBall;
|
|
|
|
items.itemPaintBall = paintBall = new ColoredItemDefinition();
|
|
|
|
items.itemLumenPaintBall = lumenPaintBall = new ColoredItemDefinition();
|
2014-09-24 02:26:27 +02:00
|
|
|
AEItemDefinition pb = addFeature( ItemPaintBall.class );
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
for ( AEColor c : AEColor.values() )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
if ( c != AEColor.Transparent )
|
|
|
|
{
|
2014-09-28 11:47:17 +02:00
|
|
|
paintBall.add( c, new ItemStackSrc( pb.item(), c.ordinal() ) );
|
|
|
|
lumenPaintBall.add( c, new ItemStackSrc( pb.item(), 20 + c.ordinal() ) );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
// stairs
|
|
|
|
this.addFeature( SkyStoneStairBlock.class, blocks.blockSkyStone.block(), 0 );
|
|
|
|
this.addFeature( SkyStoneBlockStairBlock.class, blocks.blockSkyStone.block(), 1 );
|
|
|
|
this.addFeature( SkyStoneBrickStairBlock.class, blocks.blockSkyStone.block(), 2 );
|
|
|
|
this.addFeature( SkyStoneSmallBrickStairBlock.class, blocks.blockSkyStone.block(), 3 );
|
|
|
|
this.addFeature( FluixStairBlock.class, blocks.blockFluix.block() );
|
|
|
|
this.addFeature( QuartzStairBlock.class, blocks.blockQuartz.block() );
|
|
|
|
this.addFeature( ChiseledQuartzStairBlock.class, blocks.blockQuartzChiseled.block() );
|
|
|
|
this.addFeature( QuartzPillarStairBlock.class, blocks.blockQuartzPillar.block() );
|
|
|
|
|
|
|
|
// unsupported developer tools
|
2014-09-24 02:26:27 +02:00
|
|
|
addFeature( ToolEraser.class );
|
|
|
|
addFeature( ToolMeteoritePlacer.class );
|
|
|
|
addFeature( ToolDebugCard.class );
|
|
|
|
addFeature( ToolReplicatorCard.class );
|
|
|
|
addFeature( BlockItemGen.class );
|
|
|
|
addFeature( BlockChunkloader.class );
|
|
|
|
addFeature( BlockPhantomNode.class );
|
|
|
|
addFeature( BlockCubeGenerator.class );
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
private void registerSpatial( boolean force )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
if ( !AEConfig.instance.isFeatureEnabled( AEFeature.SpatialIO ) )
|
|
|
|
return;
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
AEConfig config = AEConfig.instance;
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
if ( storageBiome == null )
|
|
|
|
{
|
|
|
|
if ( force && config.storageBiomeID == -1 )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
config.storageBiomeID = Platform.findEmpty( BiomeGenBase.getBiomeGenArray() );
|
|
|
|
if ( config.storageBiomeID == -1 )
|
|
|
|
throw new RuntimeException( "Biome Array is full, please free up some Biome ID's or disable spatial." );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
storageBiome = new BiomeGenStorage( config.storageBiomeID );
|
|
|
|
config.save();
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
if ( !force && config.storageBiomeID != -1 )
|
|
|
|
storageBiome = new BiomeGenStorage( config.storageBiomeID );
|
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
if ( config.storageProviderID != -1 )
|
|
|
|
{
|
|
|
|
DimensionManager.registerProviderType( config.storageProviderID, StorageWorldProvider.class, false );
|
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
if ( config.storageProviderID == -1 && force )
|
|
|
|
{
|
|
|
|
config.storageProviderID = -11;
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
while ( !DimensionManager.registerProviderType( config.storageProviderID, StorageWorldProvider.class, false ) )
|
|
|
|
config.storageProviderID--;
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
config.save();
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
private AEItemDefinition addFeature( Class<? extends IAEFeature> featureClass, Object... args )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
ClassInstantiation<IAEFeature> instantiation = new ClassInstantiation<IAEFeature>( featureClass, args );
|
|
|
|
Optional<IAEFeature> instance = instantiation.get();
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
if ( instance.isPresent() )
|
|
|
|
{
|
|
|
|
IAEFeature feature = instance.get();
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
for ( AEFeature f : feature.handler().getFeatures() )
|
|
|
|
{
|
|
|
|
this.featuresToEntities.put( f, featureClass );
|
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
feature.handler().register();
|
|
|
|
feature.postInit();
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
return feature.handler().getDefinition();
|
|
|
|
}
|
|
|
|
else
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
throw new RuntimeException( "Error with Feature: " + featureClass.getName() );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
public void Init( FMLInitializationEvent event )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
// Perform ore camouflage!
|
2014-09-28 11:47:17 +02:00
|
|
|
ItemMultiMaterial.instance.makeUnique();
|
2014-09-24 02:26:27 +02:00
|
|
|
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.CustomRecipes ) )
|
|
|
|
recipeHandler.parseRecipes( new ConfigLoader( AppEng.instance.getConfigPath() ), "index.recipe" );
|
|
|
|
else
|
|
|
|
recipeHandler.parseRecipes( new JarLoader( "/assets/appliedenergistics2/recipes/" ), "index.recipe" );
|
|
|
|
|
|
|
|
IPartHelper ph = AEApi.instance().partHelper();
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerISidedInventory", "net.minecraft.inventory.ISidedInventory" );
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerIFluidHandler", "net.minecraftforge.fluids.IFluidHandler" );
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerITileStorageMonitorable", "appeng.api.implementations.tiles.ITileStorageMonitorable" );
|
|
|
|
|
|
|
|
if ( AppEng.instance.isIntegrationEnabled( IntegrationType.IC2 ) )
|
|
|
|
{
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerIEnergySink", "ic2.api.energy.tile.IEnergySink" );
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerIEnergySource", "ic2.api.energy.tile.IEnergySource" );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( AppEng.instance.isIntegrationEnabled( IntegrationType.MJ5 ) )
|
|
|
|
{
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerIPowerEmitter", "buildcraft.api.power.IPowerEmitter" );
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerIPowerReceptor", "buildcraft.api.power.IPowerReceptor" );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( AppEng.instance.isIntegrationEnabled( IntegrationType.MJ6 ) )
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerIBatteryProvider", "buildcraft.api.mj.IBatteryProvider" );
|
|
|
|
|
|
|
|
if ( AppEng.instance.isIntegrationEnabled( IntegrationType.RF ) )
|
|
|
|
ph.registerNewLayer( "appeng.parts.layers.LayerIEnergyHandler", "cofh.api.energy.IEnergyHandler" );
|
|
|
|
|
|
|
|
FMLCommonHandler.instance().bus().register( TickHandler.instance );
|
|
|
|
MinecraftForge.EVENT_BUS.register( TickHandler.instance );
|
|
|
|
|
|
|
|
PartPlacement pp = new PartPlacement();
|
|
|
|
MinecraftForge.EVENT_BUS.register( pp );
|
|
|
|
FMLCommonHandler.instance().bus().register( pp );
|
|
|
|
|
|
|
|
IGridCacheRegistry gcr = AEApi.instance().registries().gridCache();
|
|
|
|
gcr.registerGridCache( ITickManager.class, TickManagerCache.class );
|
|
|
|
gcr.registerGridCache( IEnergyGrid.class, EnergyGridCache.class );
|
|
|
|
gcr.registerGridCache( IPathingGrid.class, PathGridCache.class );
|
|
|
|
gcr.registerGridCache( IStorageGrid.class, GridStorageCache.class );
|
|
|
|
gcr.registerGridCache( P2PCache.class, P2PCache.class );
|
|
|
|
gcr.registerGridCache( ISpatialCache.class, SpatialPylonCache.class );
|
|
|
|
gcr.registerGridCache( ISecurityGrid.class, SecurityCache.class );
|
|
|
|
gcr.registerGridCache( ICraftingGrid.class, CraftingGridCache.class );
|
|
|
|
|
|
|
|
AEApi.instance().registries().externalStorage().addExternalStorageInterface( new AEExternalHandler() );
|
|
|
|
|
|
|
|
AEApi.instance().registries().cell().addCellHandler( new BasicCellHandler() );
|
|
|
|
AEApi.instance().registries().cell().addCellHandler( new CreativeCellHandler() );
|
|
|
|
|
|
|
|
AEApi.instance().registries().matterCannon().registerAmmo( AEApi.instance().materials().materialMatterBall.stack( 1 ), 32.0 );
|
|
|
|
|
|
|
|
recipeHandler.injectRecipes();
|
|
|
|
|
|
|
|
PlayerStatsRegistration.instance.init();
|
|
|
|
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.enableDisassemblyCrafting ) )
|
|
|
|
CraftingManager.getInstance().getRecipeList().add( new DisassembleRecipe() );
|
|
|
|
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.enableFacadeCrafting ) )
|
|
|
|
CraftingManager.getInstance().getRecipeList().add( new FacadeRecipe() );
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
public void PostInit( FMLPostInitializationEvent event )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
registerSpatial( true );
|
|
|
|
|
|
|
|
// default settings..
|
2014-11-18 16:47:30 +01:00
|
|
|
( ( P2PTunnelRegistry ) AEApi.instance().registries().p2pTunnel() ).configure();
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-09-28 11:47:17 +02:00
|
|
|
// add to localization..
|
2014-09-24 02:26:27 +02:00
|
|
|
PlayerMessages.values();
|
|
|
|
GuiText.values();
|
|
|
|
|
|
|
|
Api.instance.partHelper.initFMPSupport();
|
2014-11-18 16:47:30 +01:00
|
|
|
( ( BlockCableBus ) AEApi.instance().blocks().blockMultiPart.block() ).setupTile();
|
2014-09-24 02:26:27 +02:00
|
|
|
|
|
|
|
// Interface
|
|
|
|
Upgrades.CRAFTING.registerItem( AEApi.instance().parts().partInterface.stack( 1 ), 1 );
|
|
|
|
Upgrades.CRAFTING.registerItem( AEApi.instance().blocks().blockInterface.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
// IO Port!
|
|
|
|
Upgrades.SPEED.registerItem( AEApi.instance().blocks().blockIOPort.stack( 1 ), 3 );
|
|
|
|
Upgrades.REDSTONE.registerItem( AEApi.instance().blocks().blockIOPort.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
// Level Emitter!
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().parts().partLevelEmitter.stack( 1 ), 1 );
|
|
|
|
Upgrades.CRAFTING.registerItem( AEApi.instance().parts().partLevelEmitter.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
// Import Bus
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().parts().partImportBus.stack( 1 ), 1 );
|
|
|
|
Upgrades.REDSTONE.registerItem( AEApi.instance().parts().partImportBus.stack( 1 ), 1 );
|
|
|
|
Upgrades.CAPACITY.registerItem( AEApi.instance().parts().partImportBus.stack( 1 ), 2 );
|
|
|
|
Upgrades.SPEED.registerItem( AEApi.instance().parts().partImportBus.stack( 1 ), 4 );
|
|
|
|
|
|
|
|
// Export Bus
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().parts().partExportBus.stack( 1 ), 1 );
|
|
|
|
Upgrades.REDSTONE.registerItem( AEApi.instance().parts().partExportBus.stack( 1 ), 1 );
|
|
|
|
Upgrades.CAPACITY.registerItem( AEApi.instance().parts().partExportBus.stack( 1 ), 2 );
|
|
|
|
Upgrades.SPEED.registerItem( AEApi.instance().parts().partExportBus.stack( 1 ), 4 );
|
|
|
|
Upgrades.CRAFTING.registerItem( AEApi.instance().parts().partExportBus.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
// Storage Cells
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().items().itemCell1k.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().items().itemCell1k.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().items().itemCell4k.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().items().itemCell4k.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().items().itemCell16k.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().items().itemCell16k.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().items().itemCell64k.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().items().itemCell64k.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().items().itemPortableCell.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().items().itemPortableCell.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().items().itemViewCell.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().items().itemViewCell.stack( 1 ), 1 );
|
|
|
|
|
|
|
|
// Storage Bus
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().parts().partStorageBus.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().parts().partStorageBus.stack( 1 ), 1 );
|
|
|
|
Upgrades.CAPACITY.registerItem( AEApi.instance().parts().partStorageBus.stack( 1 ), 5 );
|
|
|
|
|
|
|
|
// Formation Plane
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().parts().partFormationPlane.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().parts().partFormationPlane.stack( 1 ), 1 );
|
|
|
|
Upgrades.CAPACITY.registerItem( AEApi.instance().parts().partFormationPlane.stack( 1 ), 5 );
|
|
|
|
|
|
|
|
// Matter Cannon
|
|
|
|
Upgrades.FUZZY.registerItem( AEApi.instance().items().itemMassCannon.stack( 1 ), 1 );
|
|
|
|
Upgrades.INVERTER.registerItem( AEApi.instance().items().itemMassCannon.stack( 1 ), 1 );
|
|
|
|
Upgrades.SPEED.registerItem( AEApi.instance().items().itemMassCannon.stack( 1 ), 4 );
|
|
|
|
|
|
|
|
// Molecular Assembler
|
|
|
|
Upgrades.SPEED.registerItem( AEApi.instance().blocks().blockMolecularAssembler.stack( 1 ), 5 );
|
|
|
|
|
2014-09-25 22:30:19 +02:00
|
|
|
// Inscriber
|
|
|
|
Upgrades.SPEED.registerItem( AEApi.instance().blocks().blockInscriber.stack( 1 ), 3 );
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
AEApi.instance().registries().wireless().registerWirelessHandler( ( IWirelessTermHandler ) AEApi.instance().items().itemWirelessTerminal.item() );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.ChestLoot ) )
|
|
|
|
{
|
|
|
|
ChestGenHooks d = ChestGenHooks.getInfo( ChestGenHooks.MINESHAFT_CORRIDOR );
|
|
|
|
d.addItem( new WeightedRandomChestContent( AEApi.instance().materials().materialCertusQuartzCrystal.stack( 1 ), 1, 4, 2 ) );
|
|
|
|
d.addItem( new WeightedRandomChestContent( AEApi.instance().materials().materialCertusQuartzDust.stack( 1 ), 1, 4, 2 ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// add villager trading to black smiths for a few basic materials
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.VillagerTrading ) )
|
|
|
|
VillagerRegistry.instance().registerVillageTradeHandler( 3, new AETrading() );
|
|
|
|
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.CertusQuartzWorldGen ) )
|
|
|
|
GameRegistry.registerWorldGenerator( new QuartzWorldGen(), 0 );
|
|
|
|
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.MeteoriteWorldGen ) )
|
2014-10-19 02:32:51 +02:00
|
|
|
{
|
2014-09-24 02:26:27 +02:00
|
|
|
GameRegistry.registerWorldGenerator( new MeteoriteWorldGen(), 0 );
|
2014-10-19 02:32:51 +02:00
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
|
|
|
|
IMovableRegistry mr = AEApi.instance().registries().movable();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* You can't move bed rock.
|
|
|
|
*/
|
|
|
|
mr.blacklistBlock( net.minecraft.init.Blocks.bedrock );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* White List Vanilla...
|
|
|
|
*/
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityBeacon.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityBrewingStand.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityChest.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityCommandBlock.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityComparator.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityDaylightDetector.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityDispenser.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityDropper.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityEnchantmentTable.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityEnderChest.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityEndPortal.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntitySkull.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityFurnace.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityMobSpawner.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntitySign.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityPiston.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityFlowerPot.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityNote.class );
|
|
|
|
mr.whiteListTileEntity( net.minecraft.tileentity.TileEntityHopper.class );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whitelist AE2
|
|
|
|
*/
|
|
|
|
mr.whiteListTileEntity( AEBaseTile.class );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* world gen
|
|
|
|
*/
|
2014-11-18 16:47:30 +01:00
|
|
|
for ( WorldGenType type : WorldGenType.values() )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
AEApi.instance().registries().worldgen().disableWorldGenForProviderID( type, StorageWorldProvider.class );
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
// nether
|
2014-10-19 05:29:02 +02:00
|
|
|
AEApi.instance().registries().worldgen().disableWorldGenForDimension( type, -1 );
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
// end
|
2014-10-19 05:29:02 +02:00
|
|
|
AEApi.instance().registries().worldgen().disableWorldGenForDimension( type, 1 );
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
// whitelist from config
|
|
|
|
for ( int dimension : AEConfig.instance.meteoriteDimensionWhitelist )
|
2014-10-19 05:29:02 +02:00
|
|
|
{
|
|
|
|
AEApi.instance().registries().worldgen().enableWorldGenForDimension( WorldGenType.Meteorites, dimension );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* initial recipe bake, if ore dictionary changes after this it re-bakes.
|
|
|
|
*/
|
|
|
|
OreDictionaryHandler.instance.bakeRecipes();
|
|
|
|
}
|
|
|
|
}
|