2013-08-23 16:59:50 +02:00
|
|
|
package com.pahimar.ee3.command;
|
|
|
|
|
|
|
|
import net.minecraft.command.ICommandSender;
|
|
|
|
import net.minecraft.command.WrongUsageException;
|
|
|
|
import net.minecraft.util.ChatMessageComponent;
|
|
|
|
|
|
|
|
import com.pahimar.ee3.configuration.ConfigurationHandler;
|
|
|
|
import com.pahimar.ee3.configuration.ConfigurationSettings;
|
|
|
|
import com.pahimar.ee3.lib.Commands;
|
|
|
|
import com.pahimar.ee3.lib.Strings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Equivalent-Exchange-3
|
|
|
|
*
|
|
|
|
* CommandParticles
|
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class CommandParticles {
|
|
|
|
|
|
|
|
public static void processCommand(ICommandSender commandSender, String[] args) {
|
|
|
|
|
|
|
|
String subCommand;
|
|
|
|
|
|
|
|
if (args.length > 0) {
|
|
|
|
subCommand = args[0];
|
|
|
|
|
|
|
|
if (subCommand.toLowerCase().equals(Commands.COMMAND_ON)) {
|
|
|
|
processOnCommand(commandSender);
|
|
|
|
}
|
|
|
|
else if (subCommand.toLowerCase().equals(Commands.COMMAND_OFF)) {
|
|
|
|
processOffCommand(commandSender);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw new WrongUsageException(Commands.COMMAND_PARTICLES_USAGE, new Object[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw new WrongUsageException(Commands.COMMAND_PARTICLES_USAGE, new Object[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void processOnCommand(ICommandSender commandSender) {
|
|
|
|
|
|
|
|
ConfigurationSettings.ENABLE_PARTICLE_FX = true;
|
|
|
|
ConfigurationHandler.set(ConfigurationHandler.CATEGORY_GRAPHICS, ConfigurationSettings.ENABLE_PARTICLE_FX_CONFIGNAME, Strings.TRUE);
|
2013-09-04 03:33:10 +02:00
|
|
|
commandSender.sendChatToPlayer(ChatMessageComponent.createFromTranslationKey(Commands.COMMAND_PARTICLES_TURNED_ON));
|
2013-08-23 16:59:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void processOffCommand(ICommandSender commandSender) {
|
|
|
|
|
|
|
|
ConfigurationSettings.ENABLE_PARTICLE_FX = false;
|
|
|
|
ConfigurationHandler.set(ConfigurationHandler.CATEGORY_GRAPHICS, ConfigurationSettings.ENABLE_PARTICLE_FX_CONFIGNAME, Strings.FALSE);
|
2013-09-04 03:33:10 +02:00
|
|
|
commandSender.sendChatToPlayer(ChatMessageComponent.createFromTranslationKey(Commands.COMMAND_PARTICLES_TURNED_OFF));
|
2013-08-23 16:59:50 +02:00
|
|
|
}
|
|
|
|
}
|