Use stack of modes instead of just one
[kaka/cakelight.git] / src / kaka / cakelight / CakeLight.java
CommitLineData
4a2d6056
TW
1package kaka.cakelight;
2
67b0a758 3import kaka.cakelight.mode.Mode;
8ff7ee5a
TW
4import org.jnativehook.GlobalScreen;
5import org.jnativehook.NativeHookException;
6import org.jnativehook.keyboard.NativeKeyAdapter;
7import org.jnativehook.keyboard.NativeKeyEvent;
8import org.jnativehook.mouse.NativeMouseEvent;
9import org.jnativehook.mouse.NativeMouseMotionAdapter;
10
fc040bcb
TW
11import java.util.Objects;
12import java.util.Stack;
13
4a2d6056
TW
14public class CakeLight {
15 private Configuration config;
fc040bcb 16 private Stack<Mode> modes = new Stack<>();
03b67a73 17 private LedController ledController;
4a2d6056 18
6b569670 19 public CakeLight(Configuration config, LedController ledController) {
4a2d6056 20 this.config = config;
6b569670 21 this.ledController = ledController;
38c759f8 22 Color.calculateGammaCorrection(config.gamma);
4a2d6056
TW
23 }
24
25 public void setMode(Mode mode) {
26 cleanup();
fc040bcb 27 pushMode(mode);
4a2d6056
TW
28 }
29
30 public void cleanup() {
fc040bcb
TW
31 while (popMode());
32 }
33
34 public void pushMode(Mode mode) {
35 Objects.requireNonNull(mode);
36 if (!modes.isEmpty()) {
37 stopMode(modes.peek());
38 }
39 modes.push(mode);
40 startMode(mode);
41 // TODO: create a composite fading mode of top of stack and new mode
42 }
43
44 public boolean popMode() {
45 if (!modes.isEmpty()) {
46 Mode mode = modes.pop();
47 stopMode(mode);
48 if (!modes.isEmpty()) {
49 startMode(modes.peek());
50 }
51 return true;
4a2d6056 52 }
fc040bcb
TW
53 return false;
54 // TODO: create a composite fading mode of popped mode and top of stack, unless doing cleanup
55 }
56
57 private void startMode(Mode mode) {
58 mode.setFrameListener(ledController::onFrame);
59 mode.enter(config);
60 }
61
62 private void stopMode(Mode mode) {
63 mode.setFrameListener(ledFrame -> {}); // To avoid any frame being sent to the controller while the thread is exiting
64 mode.exit();
4a2d6056
TW
65 }
66
67 public void startLoop() {
f1a6a6a5
TW
68 Console console = Console.start(this, config);
69 PipeController.start(console);
82687249 70// initNativeHook();
4a2d6056
TW
71 // TODO
72// FrameGrabber grabber = FrameGrabber.from(config);
73// grabber.prepare();
adc29b9a 74// VideoFrame frame = grabber.grabFrame();
4a2d6056
TW
75// double time = 0;
76// for (int i = 0; i < 100; i++) {
77// time += timeIt("frame", () -> grabber.grabFrame());
78// }
79// System.out.println("time = " + time);
80// grabber.close();
81// byte[] data = frame.getData();
82// saveFile(data, "/home/kaka/test.img");
83 }
a276d5ab 84
8ff7ee5a
TW
85 private void initNativeHook() {
86 try {
87 GlobalScreen.registerNativeHook();
88 GlobalScreen.addNativeKeyListener(new NativeKeyAdapter() {
89 @Override
90 public void nativeKeyPressed(NativeKeyEvent e) {
91 System.out.println("key code = " + e.getKeyCode() + ", key text = '" + NativeKeyEvent.getKeyText(e.getKeyCode()) + "'");
92 }
93 });
94 GlobalScreen.addNativeMouseMotionListener(new NativeMouseMotionAdapter() {
95 @Override
96 public void nativeMouseMoved(NativeMouseEvent e) {
97 System.out.println("mouse point = " + e.getPoint());
98 }
99 });
100 } catch (NativeHookException e) {
101 e.printStackTrace();
102 }
103 }
104
a276d5ab
TW
105 public void turnOff() {
106 cleanup();
6e568391 107 ledController.onFrame(LedFrame.from(config).fillColor(0, 0, 0));
a276d5ab 108 }
4a2d6056 109}