Super simple start

This commit is contained in:
Nathan Adams
2014-09-16 12:08:15 +02:00
parent 4801ab8dc9
commit c73607ba36
9 changed files with 160 additions and 0 deletions
@@ -0,0 +1,33 @@
package net.minecraft.commands;
import com.google.common.collect.Maps;
import net.minecraft.commands.builder.CommandBuilder;
import net.minecraft.commands.exceptions.CommandException;
import net.minecraft.commands.exceptions.UnknownCommandException;
import java.util.Map;
public class CommandDispatcher {
private final Map<String, Runnable> commands = Maps.newHashMap();
public CommandBuilder createCommand(final String name) {
return new CommandBuilder() {
@Override
public void onFinish() {
if (commands.containsKey(name)) {
throw new IllegalArgumentException("New command " + name + " conflicts with existing command " + name);
}
commands.put(name, getCommandExecutor());
}
};
}
public void execute(String command) throws CommandException {
Runnable runnable = commands.get(command);
if (runnable == null) {
throw new UnknownCommandException();
}
runnable.run();
}
}