2026-03-31 10:44:36 +02:00

307 lines
9.3 KiB
Java

package com.hbm.items.machine;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import com.hbm.blocks.ModBlocks;
import com.hbm.inventory.material.Mats;
import com.hbm.inventory.OreDictManager.DictFrame;
import com.hbm.inventory.material.MaterialShapes;
import com.hbm.inventory.material.NTMMaterial;
import com.hbm.items.ItemEnums.EnumCasingType;
import com.hbm.items.ModItems;
import com.hbm.lib.RefStrings;
import com.hbm.util.i18n.I18nUtil;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.IIcon;
import net.minecraftforge.oredict.OreDictionary;
public class ItemMold extends Item {
public static List<Mold> molds = new ArrayList(); //molds in "pretty" order, variable between versions
public static HashMap<Integer, Mold> moldById = new HashMap(); //molds by their static ID -> stack item damage
public HashMap<NTMMaterial, ItemStack> blockOverrides = new HashMap();
public ItemMold() {
this.setHasSubtypes(true);
this.setMaxDamage(0);
blockOverrides.put(Mats.MAT_STONE, new ItemStack(Blocks.stone));
blockOverrides.put(Mats.MAT_OBSIDIAN, new ItemStack(Blocks.obsidian));
int S = 0;
int L = 1;
registerMold(new MoldShape( 0, S, "nugget", MaterialShapes.NUGGET));
registerMold(new MoldShape( 1, S, "billet", MaterialShapes.BILLET));
registerMold(new MoldShape( 2, S, "ingot", MaterialShapes.INGOT));
registerMold(new MoldShape( 3, S, "plate", MaterialShapes.PLATE));
registerMold(new MoldShape( 4, S, "wire", MaterialShapes.WIRE, 8));
registerMold(new MoldShape( 19, S, "plate_cast", MaterialShapes.CASTPLATE));
registerMold(new MoldShape( 20, S, "wire_dense", MaterialShapes.DENSEWIRE));
registerMold(new MoldMulti( 5, S, "blade", MaterialShapes.INGOT.q(3),
Mats.MAT_TITANIUM, new ItemStack(ModItems.blade_titanium),
Mats.MAT_TUNGSTEN, new ItemStack(ModItems.blade_tungsten)));
registerMold(new MoldMulti( 6, S, "blades", MaterialShapes.INGOT.q(4),
Mats.MAT_STEEL, new ItemStack(ModItems.blades_steel),
Mats.MAT_TITANIUM, new ItemStack(ModItems.blades_titanium),
Mats.MAT_ALLOY, new ItemStack(ModItems.blades_advanced_alloy)));
registerMold(new MoldMulti( 7, S, "stamp", MaterialShapes.INGOT.q(4),
Mats.MAT_STONE, new ItemStack(ModItems.stamp_stone_flat),
Mats.MAT_IRON, new ItemStack(ModItems.stamp_iron_flat),
Mats.MAT_STEEL, new ItemStack(ModItems.stamp_steel_flat),
Mats.MAT_TITANIUM, new ItemStack(ModItems.stamp_titanium_flat),
Mats.MAT_OBSIDIAN, new ItemStack(ModItems.stamp_obsidian_flat)));
registerMold(new MoldShape( 8, S, "shell", MaterialShapes.SHELL));
registerMold(new MoldShape( 9, S, "pipe", MaterialShapes.PIPE));
registerMold(new MoldShape( 10, L, "ingots", MaterialShapes.INGOT, 9));
registerMold(new MoldShape( 11, L, "plates", MaterialShapes.PLATE, 9));
registerMold(new MoldShape( 13, L, "plates_cast", MaterialShapes.CASTPLATE, 3));
registerMold(new MoldShape( 21, L, "wires_dense", MaterialShapes.DENSEWIRE, 9));
registerMold(new MoldBlock( 12, L, "block", MaterialShapes.BLOCK));
registerMold(new MoldMulti( 16, S, "c9", MaterialShapes.PLATE.q(1, 4),
Mats.MAT_GUNMETAL, DictFrame.fromOne(ModItems.casing, EnumCasingType.SMALL),
Mats.MAT_WEAPONSTEEL, DictFrame.fromOne(ModItems.casing, EnumCasingType.SMALL_STEEL)));
registerMold(new MoldMulti( 17, S, "c50", MaterialShapes.PLATE.q(1, 2),
Mats.MAT_GUNMETAL, DictFrame.fromOne(ModItems.casing, EnumCasingType.LARGE),
Mats.MAT_WEAPONSTEEL, DictFrame.fromOne(ModItems.casing, EnumCasingType.LARGE_STEEL)));
registerMold(new MoldShape( 22, S, "barrel_light", MaterialShapes.LIGHTBARREL));
registerMold(new MoldShape( 23, S, "barrel_heavy", MaterialShapes.HEAVYBARREL));
registerMold(new MoldShape( 24, S, "receiver_light", MaterialShapes.LIGHTRECEIVER));
registerMold(new MoldShape( 25, S, "receiver_heavy", MaterialShapes.HEAVYRECEIVER));
registerMold(new MoldShape( 26, S, "mechanism", MaterialShapes.MECHANISM));
registerMold(new MoldShape( 27, S, "stock", MaterialShapes.STOCK));
registerMold(new MoldShape( 28, S, "grip", MaterialShapes.GRIP));
}
public void registerMold(Mold mold) {
this.molds.add(mold);
this.moldById.put(mold.id, mold);
}
@Override
@SideOnly(Side.CLIENT)
public void getSubItems(Item item, CreativeTabs tab, List list) {
for(int i = 0; i < molds.size(); i++) {
Mold mold = molds.get(i);
list.add(new ItemStack(item, 1, mold.id));
}
}
protected IIcon[] icons;
@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister reg) {
icons = new IIcon[molds.size()];
for(int i = 0; i < molds.size(); i++) {
Mold mold = molds.get(i);
this.icons[i] = reg.registerIcon(RefStrings.MODID + ":mold_" + mold.name);
}
}
@SideOnly(Side.CLIENT)
public IIcon getIconFromDamage(int meta) {
Mold mold = this.moldById.get(meta);
if(mold != null)
return this.icons[mold.order];
return this.icons[0];
}
@Override
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean bool) {
Mold mold = getMold(stack);
list.add(EnumChatFormatting.YELLOW + mold.getTitle());
if(mold.size == 0) list.add(EnumChatFormatting.GOLD + I18nUtil.resolveKey(ModBlocks.foundry_mold.getUnlocalizedName() + ".name"));
if(mold.size == 1) list.add(EnumChatFormatting.RED + I18nUtil.resolveKey(ModBlocks.foundry_basin.getUnlocalizedName() + ".name"));
}
public Mold getMold(ItemStack stack) {
Mold mold = moldById.get(stack.getItemDamage());
return mold != null ? mold : molds.get(0);
}
public static int nextOrder = 0;
public abstract class Mold {
public int order;
public int id;
public int size;
public String name;
public Mold(int id, int size, String name) {
this.order = nextOrder++;
this.id = id;
this.size = size;
this.name = name;
}
public abstract ItemStack getOutput(NTMMaterial mat);
public abstract int getCost();
public abstract String getTitle();
}
public class MoldShape extends Mold {
public MaterialShapes shape;
public int amount;
public MoldShape(int id, int size, String name, MaterialShapes shape) {
this(id, size, name, shape, 1);
}
public MoldShape(int id, int size, String name, MaterialShapes shape, int amount) {
super(id, size, name);
this.shape = shape;
this.amount = amount;
}
@Override
public ItemStack getOutput(NTMMaterial mat) {
for(String name : mat.names) {
String od = shape.name() + name;
List<ItemStack> ores = OreDictionary.getOres(od);
if(!ores.isEmpty()) {
//prioritize NTM items
for(ItemStack ore : ores) {
String registry = Item.itemRegistry.getNameForObject(ore.getItem());
if(registry.startsWith(RefStrings.MODID)) {
if(registry.contains("fragment")) continue; // deprioritize fragments
ItemStack copy = ore.copy();
copy.stackSize = this.amount;
return copy;
}
}
//...then try whatever comes first
ItemStack copy = ores.get(0).copy();
copy.stackSize = this.amount;
return copy;
}
}
return null;
}
@Override
public int getCost() {
return shape.q(amount);
}
@Override
public String getTitle() {
return I18nUtil.resolveKey("shape." + shape.name()) + " x" + amount;
}
}
public class MoldBlock extends MoldShape {
public MoldBlock(int id, int size, String name, MaterialShapes shape) {
super(id, size, name, shape);
}
@Override
public ItemStack getOutput(NTMMaterial mat) {
ItemStack override = blockOverrides.get(mat);
if(override != null)
return override.copy();
return super.getOutput(mat);
}
}
/* because why not */
public class MoldSingle extends Mold {
public ItemStack out;
public NTMMaterial mat;
public int amount;
public MoldSingle(int id, int size, String name, ItemStack out, NTMMaterial mat, int amount) {
super(id, size, name);
this.out = out;
this.mat = mat;
this.amount = amount;
}
@Override
public ItemStack getOutput(NTMMaterial mat) {
return this.mat == mat ? out.copy() : null;
}
@Override
public int getCost() {
return amount;
}
@Override
public String getTitle() {
return out.getDisplayName() + " x" + this.out.stackSize;
}
}
/* not so graceful but it does the job and it does it well */
public class MoldMulti extends Mold {
public HashMap<NTMMaterial, ItemStack> map = new HashMap();
public int amount;
public int stacksize;
public MoldMulti(int id, int size, String name, int amount, Object... inputs) {
super(id, size, name);
this.amount = amount;
for(int i = 0; i < inputs.length; i += 2) {
map.put((NTMMaterial) inputs[i], (ItemStack) inputs[i + 1]);
if(i == 0) stacksize = (((ItemStack) inputs[i + 1])).stackSize;
}
}
@Override
public ItemStack getOutput(NTMMaterial mat) {
ItemStack out = this.map.get(mat);
if(out != null)
return out.copy();
return out;
}
@Override
public int getCost() {
return amount;
}
@Override
public String getTitle() {
return I18nUtil.resolveKey("shape." + name) + " x" + this.stacksize;
}
}
}