X-Git-Url: http://dolda2000.com/gitweb/?p=kaka%2Fcakelight.git;a=blobdiff_plain;f=src%2Fkaka%2Fcakelight%2FConsole.java;h=120d0f49071262aeb24b81df29c614a0874221c0;hp=0b956aecd1ff641d8ce06fb88068978bad0d71f7;hb=35990bbd6f1aacd5445aa2cb7dfd079d84b6c901;hpb=baaaa10bd2e30428f8ca0f04855a24138e70d097 diff --git a/src/kaka/cakelight/Console.java b/src/kaka/cakelight/Console.java index 0b956ae..120d0f4 100644 --- a/src/kaka/cakelight/Console.java +++ b/src/kaka/cakelight/Console.java @@ -8,11 +8,14 @@ import kaka.cakelight.mode.VideoMode; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; +import java.util.*; public class Console extends Thread { private CakeLight cakelight; private Configuration config; private BufferedReader reader; + private Map commands = new HashMap<>(); + private List commandList = new ArrayList<>(); public static void start(CakeLight cakelight, Configuration config) { new Console(cakelight, config).start(); @@ -22,6 +25,7 @@ public class Console extends Thread { this.cakelight = cakelight; this.config = config; reader = new BufferedReader(new InputStreamReader(System.in)); + register(TwoColorNoiseMode.getCommand()); public CakeLight getCakelight() { return cakelight; @@ -30,6 +34,16 @@ public class Console extends Thread { public Configuration getConfig() { return config; } + + private void register(Command cmd) { + for (String name : cmd.getNames()){ + if (commands.containsKey(name)) { + System.out.println("Command name '" + name + "' is already registered by '" + commands.get(name).getClass() + "'!"); + System.exit(1); + } + commands.put(name, cmd); + } + commandList.add(cmd); } @Override @@ -38,6 +52,18 @@ public class Console extends Thread { System.out.print("> "); try { String input = reader.readLine(); + String[] splitInput = input.split("\\s+", 2); + String name = splitInput[0]; + String[] args = splitInput.length == 2 + ? splitInput[1].split("\\s+") + : new String[]{}; + + Command cmd = commands.get(name); + if (cmd != null) { + cmd.activate(this, args); + continue; + } + if (input.matches("[0-5]")) { cakelight.setMode(new AmbientMode(new String[] {input})); System.out.println("setting ambient mode to " + input); @@ -110,5 +136,9 @@ public class Console extends Thread { System.out.println("Failed to parse color '" + s + "'. Using black instead."); return Color.BLACK; } + + default void output(String text) { + System.out.println("(" + text + ")"); + } } }