summaryrefslogtreecommitdiff
path: root/src/main/java/gmail
diff options
context:
space:
mode:
authorLance5057 <Lance5057@gmail.com>2015-08-12 02:55:37 -0500
committerLance5057 <Lance5057@gmail.com>2015-08-12 02:55:37 -0500
commit8aebbe3f2cabe013bc2bbdf400e084629d58a672 (patch)
treee24f158218a6e77787e80ad895f751fae81d8645 /src/main/java/gmail
parent93b7f5b337187a95011b336c7bdc1201d24dd18c (diff)
Broadsword Graphics - Part 1
Diffstat (limited to 'src/main/java/gmail')
-rw-r--r--src/main/java/gmail/Lance5057/TD_Config.java6
-rw-r--r--src/main/java/gmail/Lance5057/TinkersDefense.java21
-rw-r--r--src/main/java/gmail/Lance5057/gui/Gui_FinishingAnvil.java126
-rw-r--r--src/main/java/gmail/Lance5057/items/Injector.java57
4 files changed, 159 insertions, 51 deletions
diff --git a/src/main/java/gmail/Lance5057/TD_Config.java b/src/main/java/gmail/Lance5057/TD_Config.java
index c8a86ed..6ad1f44 100644
--- a/src/main/java/gmail/Lance5057/TD_Config.java
+++ b/src/main/java/gmail/Lance5057/TD_Config.java
@@ -17,6 +17,8 @@ public class TD_Config
public int CrestMirrorsID;
public int CrestLegendsID;
+ public int MaterialIndex;
+
public TD_Config(FMLPreInitializationEvent e)
{
Configuration config = new Configuration(e.getSuggestedConfigurationFile());
@@ -32,6 +34,10 @@ public class TD_Config
CrestMirrorsID = config.get("Modifier Configs", "Crest of Mirrors ID", 20).getInt();
CrestLegendsID = config.get("Modifier Configs", "Crest of Legends ID", 21).getInt();
+ MaterialIndex = config.get("Material Index", "Highest material ID -\n TDefense - 204\n MFR - 1001\n ExtraTIC - 1024", 204).getInt();
+
+
+
config.save();
}
}
diff --git a/src/main/java/gmail/Lance5057/TinkersDefense.java b/src/main/java/gmail/Lance5057/TinkersDefense.java
index 63111d6..99bbd3b 100644
--- a/src/main/java/gmail/Lance5057/TinkersDefense.java
+++ b/src/main/java/gmail/Lance5057/TinkersDefense.java
@@ -354,9 +354,6 @@ public class TinkersDefense {
public void init(FMLInitializationEvent e) {
System.out.print(Reference.MOD_ID);
- tcInject = new Injector(0);
- GameRegistry.registerItem(tcInject, "debugger");
-
StencilBuilder.registerStencil(50, woodPattern, 0); // rivets
StencilBuilder.registerStencil(51, woodPattern, 1); // clasp
StencilBuilder.registerStencil(52, woodPattern, 2); // armorplate
@@ -428,9 +425,9 @@ public class TinkersDefense {
// Aeonsteel
- pb.registerMaterialSet("AeonSteel", new ItemStack(
+ pb.registerMaterialSet("aeonsteel", new ItemStack(
TinkerTools.toolShard, 1, 10), new ItemStack(
- TinkerTools.toolRod, 1, 10), 10);
+ TinkerTools.toolRod, 1, 10), config.AeonsteelMatID);
TConstructClientRegistry.addMaterialRenderMapping(config.AeonsteelMatID, "tinker",
"aeonsteel", true);
@@ -471,7 +468,13 @@ public class TinkersDefense {
new FluidStack[] {
new FluidStack(TinkerSmeltery.moltenAlumiteFluid, 144),
new FluidStack(TinkerSmeltery.moltenCobaltFluid, 144) });
+
+
// Queen's Gold
+ pb.registerMaterialSet("queensgold", new ItemStack(
+ TinkerTools.toolShard, 1, 10), new ItemStack(
+ TinkerTools.toolRod, 1, 10), config.QueensGoldMatID);
+
TConstructClientRegistry.addMaterialRenderMapping(config.QueensGoldMatID, "tinker",
"queensgold", true);
TConstructRegistry.addToolMaterial(config.QueensGoldMatID, "QueensGold", 3, 100, 500, 2,
@@ -509,6 +512,10 @@ public class TinkersDefense {
new FluidStack(TinkerSmeltery.moltenEmeraldFluid, 80) });
// Dogbearium
+ pb.registerMaterialSet("dogbearium", new ItemStack(
+ TinkerTools.toolShard, 1, 10), new ItemStack(
+ TinkerTools.toolRod, 1, 10), config.DogbeariumMatID);
+
TConstructClientRegistry.addMaterialRenderMapping(config.DogbeariumMatID, "tinker",
"dogbearium", true);
TConstructRegistry.addToolMaterial(config.DogbeariumMatID, "Dogbearium", 4, 600, 800, 2,
@@ -557,8 +564,8 @@ public class TinkersDefense {
TConstructRegistry.addToolRecipe(tool_wrench, TinkerTools.handGuard,
TinkerTools.toolRod, TinkerTools.binding);
-
-
+ tcInject = new Injector(0);
+ GameRegistry.registerItem(tcInject, "debugger");
}
@EventHandler
diff --git a/src/main/java/gmail/Lance5057/gui/Gui_FinishingAnvil.java b/src/main/java/gmail/Lance5057/gui/Gui_FinishingAnvil.java
index d268b02..a083b71 100644
--- a/src/main/java/gmail/Lance5057/gui/Gui_FinishingAnvil.java
+++ b/src/main/java/gmail/Lance5057/gui/Gui_FinishingAnvil.java
@@ -18,6 +18,7 @@ import net.minecraft.inventory.Container;
import net.minecraft.inventory.Slot;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
+import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.ResourceLocation;
public class Gui_FinishingAnvil extends GuiContainer
@@ -26,6 +27,7 @@ public class Gui_FinishingAnvil extends GuiContainer
private float ySize_lo;
private ItemStack bigCopy;
+ private Boolean isNull = true;
private ItemStack editItem;
private RenderItem bigRender = new RenderItem_FinishingAnvil(this);
@@ -34,9 +36,16 @@ public class Gui_FinishingAnvil extends GuiContainer
private int leftButtonPosX = 0;
private int leftButtonPosY = 0;
- private int xIcon_one, yIcon_one;
- private int xIcon_two, yIcon_two;
- private int xIcon_three, yIcon_three;
+ private int xLIcon_one, yLIcon_one;
+ private int xLIcon_two, yLIcon_two;
+ private int xLIcon_three, yLIcon_three;
+ private int leftSelect = 0;
+
+ private int rightButtonPosX = 0;
+ private int rightButtonPosY = 2;
+ private int xRIcon_one, yRIcon_one;
+ private int xRIcon_two, yRIcon_two;
+ private int xRIcon_three, yRIcon_three;
private static final ResourceLocation iconLocation = new ResourceLocation("tinkersdefense", "textures/gui/finishinganvil.png");
@@ -60,26 +69,80 @@ public class Gui_FinishingAnvil extends GuiContainer
this.buttonList.add(new GuiButton(7 ,this.guiLeft+120, this.guiTop+10, 10, 10,"▲"));
this.buttonList.add(new GuiButton(8 ,this.guiLeft+120, this.guiTop+59, 10, 10,"▼"));
+
+ this.buttonList.add(new GuiButton(9 ,this.guiLeft+130, this.guiTop+10, 20, 20,""));
+ this.buttonList.add(new GuiButton(10 ,this.guiLeft+130, this.guiTop+30, 20, 20,""));
+ this.buttonList.add(new GuiButton(11 ,this.guiLeft+130, this.guiTop+50, 20, 20,""));
- //((GuiButton)this.buttonList.get(0)).displayString = "9";
}
@Override
protected void actionPerformed(GuiButton button)
{
+ NBTTagCompound tags = bigCopy.getTagCompound().getCompoundTag("InfiTool");
switch(button.id)
{
case 1: if(this.leftButtonPosX > 0) this.leftButtonPosX--; break;
case 2: this.leftButtonPosX++; break;
+
+ case 3:
+ inventory.inventory[0] = null;
+ inventory.inventory[0] = bigCopy;
+ break;
+
+ case 4: leftSelect = 0; break;
+ case 5: leftSelect = 1; break;
+ case 6: leftSelect = 2; break;
+
+ case 7: if(this.rightButtonPosX > 0) this.rightButtonPosX--; break;
+ case 8: this.rightButtonPosX++; break;
+
+ case 9:
+ if(bigCopy.getTagCompound().getCompoundTag("InfiTool").hasKey("RenderHead"))
+ {
+ bigCopy.getTagCompound().getCompoundTag("InfiTool").setInteger("RenderHead", bigCopy.getTagCompound().getCompoundTag("InfiTool").getInteger("Head") * rightButtonPosX + 1);
+ }
+ break;
+
+ case 10:
+ if(tags.hasKey("RenderHead"))
+ {
+ int test = tags.getInteger("Head");
+ int test2 = test + ((rightButtonPosX + 1) * TinkersDefense.config.MaterialIndex);
+ //bigCopy.getTagCompound().getCompoundTag("InfiTool").setInteger("Head", bigCopy.getTagCompound().getCompoundTag("InfiTool").getInteger("Head") + ((rightButtonPosX + 1) * TinkersDefense.config.MaterialIndex));
+ bigCopy.getTagCompound().getCompoundTag("InfiTool").setInteger("RenderHead", bigCopy.getTagCompound().getCompoundTag("InfiTool").getInteger("Head") + ((rightButtonPosX + 1) * TinkersDefense.config.MaterialIndex));
+ }
+ break;
+
+ case 11:
+ if(tags.hasKey("RenderHead"))
+ {
+ tags.setInteger("RenderHead", tags.getInteger("Head") * (rightButtonPosX + 3));
+ tags.setInteger("Head", tags.getInteger("Head") * (rightButtonPosX + 3));
+
+ }
+ break;
}
}
public void drawScreen(int par1, int par2, float par3)
{
- if(inventory.getStackInSlot(0) != null //&&
+ if(bigCopy != null)
+ if(bigCopy.getTagCompound().getCompoundTag("InfiTool").hasKey("RenderHead"))
+ {
+ ((GuiButton)this.buttonList.get(2)).displayString = Integer.toString(bigCopy.getTagCompound().getCompoundTag("InfiTool").getInteger("RenderHead"));
+ }
+
+ if(inventory.getStackInSlot(0) != null && isNull == true
/*inventory.getStackInSlot(0).getItem() != this.bigCopy*/)
+ {
this.bigCopy = inventory.getStackInSlot(0).copy();
- else
+ isNull = false;
+ }
+ else if(inventory.getStackInSlot(0) == null)
+ {
this.bigCopy = null;
+ isNull = true;
+ }
super.drawScreen(par1, par2, par3);
this.xSize_lo = (float)par1;
this.ySize_lo = (float)par2;
@@ -89,12 +152,19 @@ public class Gui_FinishingAnvil extends GuiContainer
{
this.forGui = new ResourceLocation("tinkersdefense", "textures/gui/finishinganvil.png");
- this.xIcon_one = 0;
- this.yIcon_one = 176;
- this.xIcon_two = 0;
- this.yIcon_two = 176;
- this.xIcon_three = 0;
- this.yIcon_three = 176;
+ this.xLIcon_one = 0;
+ this.yLIcon_one = 176;
+ this.xLIcon_two = 0;
+ this.yLIcon_two = 176;
+ this.xLIcon_three = 0;
+ this.yLIcon_three = 176;
+
+ this.xRIcon_one = 0;
+ this.yRIcon_one = 176;
+ this.xRIcon_two = 0;
+ this.yRIcon_two = 176;
+ this.xRIcon_three = 0;
+ this.yRIcon_three = 176;
if(inventory.getStackInSlot(0) != null)
{
@@ -106,20 +176,34 @@ public class Gui_FinishingAnvil extends GuiContainer
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
this.forGui = new ResourceLocation("tinkersdefense","textures/gui/"+((ToolCore)editItem.getItem()).getDefaultFolder()+".png");
- this.xIcon_one = 16;
- this.yIcon_one = 0;
- this.xIcon_two = 32;
- this.yIcon_two = 0;
- this.xIcon_three = 48;
- this.yIcon_three = 0;
+ this.xLIcon_one = 32;
+ this.yLIcon_one = 0;
+ this.xLIcon_two = 48;
+ this.yLIcon_two = 0;
+ this.xLIcon_three = 64;
+ this.yLIcon_three = 0;
+
+ this.xRIcon_one = 0;
+ this.yRIcon_one = 0;
+ this.xRIcon_two = 16;
+ this.yRIcon_two = 0;
+ this.xRIcon_three = 32;
+ this.yRIcon_three = 0;
}
}
this.mc.getTextureManager().bindTexture(this.forGui);
- this.drawTexturedModalRect(7,12,this.xIcon_one+(this.leftButtonPosX*16),this.yIcon_one+(this.leftButtonPosY*16),16,16);
- this.drawTexturedModalRect(7,32,this.xIcon_two+(this.leftButtonPosX*16),this.yIcon_two+(this.leftButtonPosY*16),16,16);
- this.drawTexturedModalRect(7,52,this.xIcon_three+(this.leftButtonPosX*16),this.yIcon_three+(this.leftButtonPosY*16),16,16);
+ if(inventory.getStackInSlot(0) != null)
+ this.drawTexturedModalRect(7,12 + (leftSelect * 20),16,0,16,16);
+
+ this.drawTexturedModalRect(7,12,this.xLIcon_one+(this.leftButtonPosX*16),this.yLIcon_one+(this.leftButtonPosY*16),16,16);
+ this.drawTexturedModalRect(7,32,this.xLIcon_two+(this.leftButtonPosX*16),this.yLIcon_two+(this.leftButtonPosY*16),16,16);
+ this.drawTexturedModalRect(7,52,this.xLIcon_three+(this.leftButtonPosX*16),this.yLIcon_three+(this.leftButtonPosY*16),16,16);
+ this.drawTexturedModalRect(132,12,this.xRIcon_one+(this.rightButtonPosX*16),this.yRIcon_one+(this.rightButtonPosY*16),16,16);
+ this.drawTexturedModalRect(132,32,this.xRIcon_two+(this.rightButtonPosX*16),this.yRIcon_two+(this.rightButtonPosY*16),16,16);
+ this.drawTexturedModalRect(132,52,this.xRIcon_three+(this.rightButtonPosX*16),this.yRIcon_three+(this.rightButtonPosY*16),16,16);
+
bigRender.renderItemAndEffectIntoGUI(fontRendererObj, this.mc.getTextureManager(), bigCopy, 23, 5);
}
diff --git a/src/main/java/gmail/Lance5057/items/Injector.java b/src/main/java/gmail/Lance5057/items/Injector.java
index f475e6e..fc979fa 100644
--- a/src/main/java/gmail/Lance5057/items/Injector.java
+++ b/src/main/java/gmail/Lance5057/items/Injector.java
@@ -1,5 +1,7 @@
package gmail.Lance5057.items;
+import gmail.Lance5057.TinkersDefense;
+
import java.util.Map;
import tconstruct.library.crafting.PatternBuilder;
@@ -11,9 +13,9 @@ import net.minecraft.item.Item;
public class Injector extends ToolCore
{
+
public Injector(int baseDamage) {
super(baseDamage);
- // TODO Auto-generated constructor stub
}
String[] heads;
@@ -21,32 +23,41 @@ public class Injector extends ToolCore
String[] handles;
String[] extras;
- @Override
- public void registerIcons(IIconRegister iconRegister)
- {
- Inject(TinkerTools.broadsword, iconRegister);
- }
-
- protected void Inject(ToolCore tc, IIconRegister iconRegister)
+ protected void loadHeads(IIconRegister iconRegister)
{
- tc.accessoryStrings.clear();
- tc.accessoryIcons.clear();
+ heads = new String[6];
- PatternBuilder pb = PatternBuilder.instance;
- for(Map.Entry<String, MaterialSet> entry : pb.materialSets.entrySet())
+ heads[0] = "_tapered_blade";
+// heads[1] = "_dull_blade";
+// heads[2] = "_glass_blade";
+// heads[3] = "_plumed_blade";
+// heads[4] = "_widebase_blade";
+// heads[5] = "_tapered_blade";
+
+ for(int i = 0; i<heads.length; i++)
{
- String test = entry.getKey();
- String icon = "tinkersdefense:";
- icon += tc.getDefaultFolder() + "/";
- icon += test + "_smallguard";
- //toolIcons[i] = icon;
- tc.accessoryStrings.put(entry.getValue().materialID, icon);
+ PatternBuilder pb = PatternBuilder.instance;
+ for(Map.Entry<String, MaterialSet> entry : pb.materialSets.entrySet())
+ {
+ String test = entry.getKey();
+ String icon = "tinker:";
+ icon += TinkerTools.broadsword.getDefaultFolder() + "/";
+ icon += test + heads[i];
+ //toolIcons[i] = icon;
+ headStrings.put(entry.getValue().materialID+TinkersDefense.config.MaterialIndex, icon);
+ }
+
+ addIcons(headStrings, headIcons, iconRegister, heads[i], false);
+ TinkerTools.broadsword.headStrings.putAll(headStrings);
+ TinkerTools.broadsword.headIcons.putAll(headIcons);
}
-
- //tc.accessoryStrings.put(0, "tinkersdefense:broadsword/_smallguard");
-
- tc.registerIcons(iconRegister);
}
+
+ @Override
+ public void registerIcons (IIconRegister iconRegister)
+ {
+ loadHeads(iconRegister);
+ }
@Override
public Item getAccessoryItem() {
@@ -57,7 +68,7 @@ public class Injector extends ToolCore
@Override
public String getDefaultFolder() {
// TODO Auto-generated method stub
- return null;
+ return "broadsword";
}
@Override