98 lines
3 KiB
Java
98 lines
3 KiB
Java
|
package appeng.items.materials;
|
||
|
|
||
|
import java.util.EnumSet;
|
||
|
|
||
|
import net.minecraft.entity.Entity;
|
||
|
import net.minecraftforge.oredict.OreDictionary;
|
||
|
import appeng.client.render.entity.EntityIds;
|
||
|
import appeng.core.AppEng;
|
||
|
import appeng.core.features.AEFeature;
|
||
|
import appeng.entity.EntityChargedQuartz;
|
||
|
import appeng.entity.EntitySingularity;
|
||
|
import cpw.mods.fml.common.registry.EntityRegistry;
|
||
|
|
||
|
public enum MaterialType
|
||
|
{
|
||
|
CertusQuartzCrystal(AEFeature.Core), CertusQuartzCrystalCharged(AEFeature.Core, EntityChargedQuartz.class),
|
||
|
|
||
|
CertusQuartzDust, NetherQuartzDust(AEFeature.Core, "dustNetherQuartz"), Flour(AEFeature.Flour, "dustWheat"), GoldDust(AEFeature.Core, "dustGold"), IronDust(
|
||
|
AEFeature.Core, "dustIron"), IronNugget(AEFeature.Core, "nuggetIron"),
|
||
|
|
||
|
Silicon(AEFeature.Core, "itemSilicon"), MatterBall,
|
||
|
|
||
|
FluixCrystal(AEFeature.Core, "crystalFLuix"), FluixDust(AEFeature.Core, "dustFluix"), FluixPearl(AEFeature.Core, "pearlFluix"),
|
||
|
|
||
|
PureifiedCertusQuartzCrystal, PureifiedNetherQuartzCrystal, PureifiedFluixCrystal,
|
||
|
|
||
|
LogicProcessorAsm(AEFeature.QuartzKnife), LogicProcessor,
|
||
|
|
||
|
CalcProcessor, EngProcessor,
|
||
|
|
||
|
// Basic Cards
|
||
|
BasicCard, CardRedstone, CardCapacity,
|
||
|
|
||
|
// Adv Cards
|
||
|
AdvCard, CardFuzzy, CardSpeed,
|
||
|
|
||
|
Cell2SpatialPart(AEFeature.SpatialIO), Cell16SpatialPart(AEFeature.SpatialIO), Cell128SpatialPart(AEFeature.SpatialIO),
|
||
|
|
||
|
Cell1kPart(AEFeature.StorageCells), Cell4kPart(AEFeature.StorageCells), Cell16kPart(AEFeature.StorageCells), Cell64kPart(AEFeature.StorageCells), EmptyStorageCell(
|
||
|
AEFeature.StorageCells),
|
||
|
|
||
|
WoodenGear(AEFeature.GrindStone, "gearWood"),
|
||
|
|
||
|
Wireless(AEFeature.WirelessAccessTerminal), WirelessBooster(AEFeature.WirelessAccessTerminal),
|
||
|
|
||
|
BlankPattern, FormationCore, AnnihilationCore,
|
||
|
|
||
|
EnderDust(AEFeature.QuantumNetworkBridge, "dustEnder"), Singularity(AEFeature.QuantumNetworkBridge), QESingularity(AEFeature.QuantumNetworkBridge,
|
||
|
EntitySingularity.class);
|
||
|
|
||
|
private String oreName;
|
||
|
private EnumSet<AEFeature> features;
|
||
|
private Class<? extends Entity> droppedEntity;
|
||
|
|
||
|
MaterialType() {
|
||
|
features = EnumSet.of( AEFeature.Core );
|
||
|
}
|
||
|
|
||
|
MaterialType(AEFeature part) {
|
||
|
features = EnumSet.of( part );
|
||
|
}
|
||
|
|
||
|
MaterialType(AEFeature part, Class<? extends Entity> c) {
|
||
|
features = EnumSet.of( part );
|
||
|
droppedEntity = c;
|
||
|
|
||
|
EntityRegistry.registerModEntity( droppedEntity, droppedEntity.getSimpleName(), EntityIds.get( droppedEntity ), AppEng.instance, 16, 4, true );
|
||
|
}
|
||
|
|
||
|
MaterialType(AEFeature part, String oreDictionary) {
|
||
|
features = EnumSet.of( part );
|
||
|
oreName = oreDictionary;
|
||
|
if ( OreDictionary.getOres( oreDictionary ).size() > 0 )
|
||
|
features.add( AEFeature.DuplicateItems );
|
||
|
}
|
||
|
|
||
|
public EnumSet<AEFeature> getFeature()
|
||
|
{
|
||
|
return features;
|
||
|
}
|
||
|
|
||
|
public String getOreName()
|
||
|
{
|
||
|
return oreName;
|
||
|
}
|
||
|
|
||
|
public boolean hasCustomEntity()
|
||
|
{
|
||
|
return droppedEntity != null;
|
||
|
}
|
||
|
|
||
|
public Class<? extends Entity> getCustomEntityClass()
|
||
|
{
|
||
|
return droppedEntity;
|
||
|
}
|
||
|
|
||
|
}
|