X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fkaka%2Fcakelight%2FConsole.java;h=422b7a38147e14ce26ffcdc1231dcf71fe95c4be;hb=fa013e4bfdfe17f97ddeab2596ae8daa03337e4a;hp=caf8195780bbe62ebf1cc958a881ad908fb6b234;hpb=67b0a75891f19e91cc35e23fa56915cfd7cd52de;p=kaka%2Fcakelight.git diff --git a/src/kaka/cakelight/Console.java b/src/kaka/cakelight/Console.java index caf8195..422b7a3 100644 --- a/src/kaka/cakelight/Console.java +++ b/src/kaka/cakelight/Console.java @@ -2,6 +2,7 @@ package kaka.cakelight; import kaka.cakelight.mode.AmbientMode; import kaka.cakelight.mode.SingleColorMode; +import kaka.cakelight.mode.TwoColorNoiseMode; import kaka.cakelight.mode.VideoMode; import java.io.BufferedReader; @@ -21,6 +22,14 @@ public class Console extends Thread { this.cakelight = cakelight; this.config = config; reader = new BufferedReader(new InputStreamReader(System.in)); + + public CakeLight getCakelight() { + return cakelight; + } + + public Configuration getConfig() { + return config; + } } @Override @@ -60,6 +69,9 @@ public class Console extends Thread { String[] split = input.split("\\s+"); config.video.saturation = Double.parseDouble(split[1]); System.out.println("setting saturation to " + config.video.saturation); + } else if (input.matches("(n|noise)(\\s+[a-z0-9]+){2}")) { + TwoColorNoiseMode.getCommand().activate(this, input.split("\\s+")); + System.out.println("setting two-color noise mode"); } } catch (IOException e) { System.out.println("Error reading from command line"); @@ -67,4 +79,9 @@ public class Console extends Thread { } } } + + public interface Command { + String[] getNames(); + void activate(Console console, String[] args); + } }