Commit | Line | Data |
---|---|---|
cd28f68c TW |
1 | package kaka.cakelight; |
2 | ||
3 | import java.io.BufferedReader; | |
4 | import java.io.IOException; | |
5 | import java.io.InputStreamReader; | |
2b49e4e2 TW |
6 | import java.util.ArrayList; |
7 | import java.util.HashMap; | |
8 | import java.util.List; | |
9 | import java.util.Map; | |
cd28f68c TW |
10 | |
11 | public class Console extends Thread { | |
12 | private CakeLight cakelight; | |
13 | private Configuration config; | |
35990bbd TW |
14 | private Map<String, Command> commands = new HashMap<>(); |
15 | private List<Command> commandList = new ArrayList<>(); | |
cd28f68c | 16 | |
f1a6a6a5 TW |
17 | public static Console start(CakeLight cakelight, Configuration config) { |
18 | Console console = new Console(cakelight, config); | |
19 | console.start(); | |
20 | return console; | |
cd28f68c TW |
21 | } |
22 | ||
23 | private Console(CakeLight cakelight, Configuration config) { | |
24 | this.cakelight = cakelight; | |
25 | this.config = config; | |
be3f2496 | 26 | register(new HelpCommand()); |
2b49e4e2 TW |
27 | register(Commands.quit()); |
28 | register(Commands.video()); | |
29 | register(Commands.color()); | |
30 | register(Commands.brightness()); | |
31 | register(Commands.gamma()); | |
32 | register(Commands.saturation()); | |
33 | register(Commands.ambientMode()); | |
34 | register(Commands.twoColorNoiseMode()); | |
40a06a9b | 35 | register(Commands.sunriseMode()); |
be3f2496 | 36 | } |
fa013e4b TW |
37 | |
38 | public CakeLight getCakelight() { | |
39 | return cakelight; | |
40 | } | |
41 | ||
42 | public Configuration getConfig() { | |
43 | return config; | |
44 | } | |
35990bbd | 45 | |
be3f2496 TW |
46 | private class HelpCommand implements Command { |
47 | @Override | |
48 | public String[] getNames() { | |
49 | return new String[] {"?", "h", "help"}; | |
50 | } | |
51 | ||
52 | @Override | |
53 | public void activate(Console console, String[] args) { | |
54 | for (Command c : commandList) { | |
55 | System.out.println(String.join("|", c.getNames())); | |
56 | } | |
57 | } | |
58 | } | |
59 | ||
35990bbd TW |
60 | private void register(Command cmd) { |
61 | for (String name : cmd.getNames()){ | |
62 | if (commands.containsKey(name)) { | |
63 | System.out.println("Command name '" + name + "' is already registered by '" + commands.get(name).getClass() + "'!"); | |
64 | System.exit(1); | |
65 | } | |
66 | commands.put(name, cmd); | |
67 | } | |
68 | commandList.add(cmd); | |
cd28f68c TW |
69 | } |
70 | ||
71 | @Override | |
72 | public void run() { | |
9f2bc172 TW |
73 | try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) { |
74 | while (true) { | |
75 | System.out.print("> "); | |
f1a6a6a5 TW |
76 | String input = reader.readLine(); |
77 | handleInput(input); | |
f1a6a6a5 | 78 | } |
9f2bc172 TW |
79 | } catch (IOException e) { |
80 | System.out.println("Error reading from command line"); | |
81 | } | |
cd28f68c | 82 | } |
eca6fd31 | 83 | |
f1a6a6a5 TW |
84 | void handleInput(String input) { |
85 | String[] splitInput = input.split("\\s+", 2); | |
86 | String name = splitInput[0]; | |
87 | String[] args = splitInput.length == 2 | |
88 | ? splitInput[1].split("\\s+") | |
89 | : new String[]{}; | |
90 | ||
91 | Command cmd = commands.get(name); | |
92 | if (cmd != null) { | |
93 | cmd.activate(this, args); | |
94 | } else { | |
95 | out("no command named '" + name + "'"); | |
96 | } | |
97 | } | |
98 | ||
2b49e4e2 TW |
99 | void out(String text) { |
100 | System.out.println("(" + text + ")"); | |
101 | } | |
baaaa10b | 102 | |
2b49e4e2 TW |
103 | Color parseColor(String s) { |
104 | switch (s.toLowerCase()) { | |
105 | case "r": return Color.rgb(255, 0, 0); | |
106 | case "g": return Color.rgb(0, 255, 0); | |
107 | case "b": return Color.rgb(0, 0, 255); | |
108 | default: // assume hexadecimal | |
109 | if (s.startsWith("#")) { | |
110 | s = s.substring(1); | |
111 | } | |
112 | if (s.length() == 3) { | |
113 | return Color.rgb( | |
114 | Integer.parseInt(s.substring(0, 1), 16) * 16 + Integer.parseInt(s.substring(0, 1), 16), | |
115 | Integer.parseInt(s.substring(1, 2), 16) * 16 + Integer.parseInt(s.substring(1, 2), 16), | |
116 | Integer.parseInt(s.substring(2, 3), 16) * 16 + Integer.parseInt(s.substring(2, 3), 16) | |
117 | ); | |
118 | } else if (s.length() == 6) { | |
119 | return Color.rgb( | |
120 | Integer.parseInt(s.substring(0, 2), 16), | |
121 | Integer.parseInt(s.substring(2, 4), 16), | |
122 | Integer.parseInt(s.substring(4, 6), 16) | |
123 | ); | |
124 | } | |
baaaa10b | 125 | } |
2b49e4e2 TW |
126 | System.out.println("Failed to parse color '" + s + "'. Using black instead."); |
127 | return Color.BLACK; | |
128 | } | |
35990bbd | 129 | |
2b49e4e2 TW |
130 | public interface Command { |
131 | String[] getNames(); | |
132 | void activate(Console console, String[] args); | |
eca6fd31 | 133 | } |
cd28f68c | 134 | } |