2014-09-04 21:28:43 +02:00
|
|
|
package com.pahimar.ee3.command;
|
|
|
|
|
2014-09-10 04:52:46 +02:00
|
|
|
import com.pahimar.ee3.api.EnergyValue;
|
|
|
|
import com.pahimar.ee3.exchange.EnergyValueRegistry;
|
|
|
|
import com.pahimar.ee3.exchange.WrappedStack;
|
2014-09-11 22:13:39 +02:00
|
|
|
import com.pahimar.ee3.network.PacketHandler;
|
2014-09-15 22:06:20 +02:00
|
|
|
import com.pahimar.ee3.network.message.MessageSetEnergyValue;
|
|
|
|
import com.pahimar.ee3.reference.Files;
|
2014-09-09 21:59:07 +02:00
|
|
|
import com.pahimar.ee3.util.LogHelper;
|
2014-09-15 22:06:20 +02:00
|
|
|
import com.pahimar.ee3.util.SerializationHelper;
|
|
|
|
import net.minecraft.command.CommandBase;
|
2014-09-09 21:59:07 +02:00
|
|
|
import net.minecraft.command.ICommandSender;
|
|
|
|
import net.minecraft.command.WrongUsageException;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.JsonToNBT;
|
|
|
|
import net.minecraft.nbt.NBTBase;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
|
|
|
|
import java.util.List;
|
2014-09-15 22:06:20 +02:00
|
|
|
import java.util.Map;
|
2014-09-09 21:59:07 +02:00
|
|
|
|
2014-09-15 22:06:20 +02:00
|
|
|
public class CommandSetValue extends CommandBase
|
2014-09-04 21:28:43 +02:00
|
|
|
{
|
2014-09-09 21:59:07 +02:00
|
|
|
@Override
|
|
|
|
public String getCommandName()
|
|
|
|
{
|
2014-09-15 22:06:20 +02:00
|
|
|
return "ee3-set-value";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getCommandUsage(ICommandSender commandSender)
|
|
|
|
{
|
|
|
|
return "command.ee3.set-value.usage";
|
2014-09-09 21:59:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void processCommand(ICommandSender commandSender, String[] args)
|
|
|
|
{
|
|
|
|
if (args.length < 3)
|
|
|
|
{
|
2014-09-11 22:13:39 +02:00
|
|
|
throw new WrongUsageException("command.ee3.set-value.usage");
|
2014-09-09 21:59:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Item item = getItemByText(commandSender, args[1]);
|
|
|
|
double energyValue = 0;
|
|
|
|
int metaData = 0;
|
|
|
|
|
|
|
|
if (args.length >= 3)
|
|
|
|
{
|
|
|
|
energyValue = parseDoubleWithMin(commandSender, args[2], 0);
|
|
|
|
}
|
|
|
|
else if (args.length >= 4)
|
|
|
|
{
|
|
|
|
metaData = parseInt(commandSender, args[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ItemStack itemStack = new ItemStack(item, 1, metaData);
|
|
|
|
|
|
|
|
if (args.length >= 5)
|
|
|
|
{
|
|
|
|
String stringNBTData = func_147178_a(commandSender, args, 4).getUnformattedText();
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
NBTBase nbtBase = JsonToNBT.func_150315_a(stringNBTData);
|
|
|
|
|
|
|
|
if (!(nbtBase instanceof NBTTagCompound))
|
|
|
|
{
|
2014-09-11 22:13:39 +02:00
|
|
|
func_152373_a(commandSender, this, "command.ee3.set-value.tagError", new Object[]{"Not a valid tag"});
|
2014-09-09 21:59:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
itemStack.setTagCompound((NBTTagCompound) nbtBase);
|
|
|
|
}
|
2014-09-10 03:12:59 +02:00
|
|
|
catch (Exception exception)
|
2014-09-09 21:59:07 +02:00
|
|
|
{
|
2014-09-11 22:13:39 +02:00
|
|
|
func_152373_a(commandSender, this, "command.ee3.set-value.tagError", new Object[]{exception.getMessage()});
|
2014-09-09 21:59:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-09-10 04:52:46 +02:00
|
|
|
|
2014-09-11 22:13:39 +02:00
|
|
|
WrappedStack wrappedStack = new WrappedStack(itemStack);
|
|
|
|
EnergyValue newEnergyValue = new EnergyValue(energyValue);
|
|
|
|
|
|
|
|
if (wrappedStack != null && newEnergyValue != null && Float.compare(newEnergyValue.getEnergyValue(), 0) > 0)
|
|
|
|
{
|
2014-09-15 22:06:20 +02:00
|
|
|
if (args[0].equalsIgnoreCase("pre"))
|
|
|
|
{
|
2014-09-16 05:01:37 +02:00
|
|
|
// TODO Mark that the server needs to regen values on next startup
|
2014-09-15 22:06:20 +02:00
|
|
|
Map<WrappedStack, EnergyValue> preAssignedValues = SerializationHelper.readEnergyValueStackMapFromJsonFile(Files.PRE_ASSIGNED_ENERGY_VALUES);
|
|
|
|
preAssignedValues.put(wrappedStack, newEnergyValue);
|
|
|
|
SerializationHelper.writeEnergyValueStackMapToJsonFile(Files.PRE_ASSIGNED_ENERGY_VALUES, preAssignedValues);
|
|
|
|
}
|
|
|
|
else if (args[0].equalsIgnoreCase("post"))
|
|
|
|
{
|
|
|
|
EnergyValueRegistry.getInstance().setEnergyValue(wrappedStack, newEnergyValue);
|
|
|
|
Map<WrappedStack, EnergyValue> postAssignedValues = SerializationHelper.readEnergyValueStackMapFromJsonFile(Files.POST_ASSIGNED_ENERGY_VALUES);
|
|
|
|
postAssignedValues.put(wrappedStack, newEnergyValue);
|
|
|
|
SerializationHelper.writeEnergyValueStackMapToJsonFile(Files.POST_ASSIGNED_ENERGY_VALUES, postAssignedValues);
|
|
|
|
PacketHandler.INSTANCE.sendToAll(new MessageSetEnergyValue(wrappedStack, newEnergyValue));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Notify admins and log the value change
|
|
|
|
func_152373_a(commandSender, this, "command.ee3.set-value.success", new Object[]{commandSender.getCommandSenderName(), args[0], wrappedStack.toString(), newEnergyValue.toString()});
|
2014-09-11 22:13:39 +02:00
|
|
|
LogHelper.info(String.format("%s set the EnergyValue of %s to %s", commandSender.getCommandSenderName(), wrappedStack, newEnergyValue));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new WrongUsageException("command.ee3.set-value.usage");
|
|
|
|
}
|
2014-09-09 21:59:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List addTabCompletionOptions(ICommandSender commandSender, String[] args)
|
|
|
|
{
|
2014-09-15 22:06:20 +02:00
|
|
|
if (args.length == 1)
|
|
|
|
{
|
|
|
|
return getListOfStringsMatchingLastWord(args, "pre", "post");
|
|
|
|
}
|
|
|
|
else if (args.length == 2)
|
|
|
|
{
|
|
|
|
return getListOfStringsFromIterableMatchingLastWord(args, Item.itemRegistry.getKeys());
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2014-09-09 21:59:07 +02:00
|
|
|
}
|
2014-09-04 21:28:43 +02:00
|
|
|
}
|