103 lines
2.5 KiB
Java
Raw Normal View History

2013-06-14 21:21:14 -07:00
package mods.tinker.tconstruct.modifiers;
import java.util.Arrays;
import java.util.List;
import mods.tinker.tconstruct.library.tools.ToolCore;
import mods.tinker.tconstruct.library.tools.ToolMod;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
public class ModPiston extends ToolMod
{
String tooltipName;
int increase;
int max;
public ModPiston(ItemStack[] items, int effect, int inc)
{
super(items, effect, "Piston");
tooltipName = "\u00a77Knockback";
increase = inc;
2013-06-16 23:35:14 -07:00
max = 10;
2013-06-14 21:21:14 -07:00
}
@Override
protected boolean canModify (ItemStack tool, ItemStack[] input)
{
ToolCore toolItem = (ToolCore) tool.getItem();
if (!validType(toolItem))
return false;
NBTTagCompound tags = tool.getTagCompound().getCompoundTag("InfiTool");
if (!tags.hasKey(key))
return tags.getInteger("Modifiers") > 0;
int keyPair[] = tags.getIntArray(key);
if (keyPair[0] + increase <= keyPair[1])
return true;
else if (keyPair[0] == keyPair[1])
return tags.getInteger("Modifiers") > 0;
else
return false;
}
@Override
public void modify (ItemStack[] input, ItemStack tool)
{
NBTTagCompound tags = tool.getTagCompound().getCompoundTag("InfiTool");
if (tags.hasKey(key))
{
int[] keyPair = tags.getIntArray(key);
if (keyPair[0] % max == 0)
{
keyPair[0] += increase;
keyPair[1] += max;
tags.setIntArray(key, keyPair);
int modifiers = tags.getInteger("Modifiers");
modifiers -= 1;
tags.setInteger("Modifiers", modifiers);
}
else
{
keyPair[0] += increase;
tags.setIntArray(key, keyPair);
}
updateModTag(tool, keyPair);
}
else
{
int modifiers = tags.getInteger("Modifiers");
modifiers -= 1;
tags.setInteger("Modifiers", modifiers);
String modName = "\u00a74Knockback ("+increase+"/"+max+")";
int tooltipIndex = addToolTip(tool, tooltipName, modName);
int[] keyPair = new int[] { increase, max, tooltipIndex };
tags.setIntArray(key, keyPair);
}
float knockback = tags.getFloat("Knockback");
2013-06-16 23:35:14 -07:00
knockback += 0.1 * increase;
2013-06-14 21:21:14 -07:00
tags.setFloat("Knockback", knockback);
}
void updateModTag(ItemStack tool, int[] keys)
{
NBTTagCompound tags = tool.getTagCompound().getCompoundTag("InfiTool");
String tip = "ModifierTip"+keys[2];
String modName = "\u00a77Knockback ("+keys[0]+"/"+keys[1]+")";
tags.setString(tip, modName);
}
public boolean validType(ToolCore tool)
{
List list = Arrays.asList(tool.toolCategories());
return list.contains("weapon");
}
}