X-Git-Url: http://dolda2000.com/gitweb/?p=kaka%2Fcakelight.git;a=blobdiff_plain;f=src%2Fkaka%2Fcakelight%2FConsole.java;h=422b7a38147e14ce26ffcdc1231dcf71fe95c4be;hp=7f8b8eeb53954c9ad97e0036103a36e0ffc66c5a;hb=fa013e4bfdfe17f97ddeab2596ae8daa03337e4a;hpb=e2721d511abab891e138bc87ab6b6cf2a90bdf19 diff --git a/src/kaka/cakelight/Console.java b/src/kaka/cakelight/Console.java index 7f8b8ee..422b7a3 100644 --- a/src/kaka/cakelight/Console.java +++ b/src/kaka/cakelight/Console.java @@ -22,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 @@ -62,7 +70,7 @@ public class Console extends Thread { 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(cakelight, config, input.split("\\s+")); + TwoColorNoiseMode.getCommand().activate(this, input.split("\\s+")); System.out.println("setting two-color noise mode"); } } catch (IOException e) { @@ -74,6 +82,6 @@ public class Console extends Thread { public interface Command { String[] getNames(); - void activate(CakeLight cakelight, Configuration config, String[] args); + void activate(Console console, String[] args); } }