Push and pop modes
[kaka/cakelight.git] / src / kaka / cakelight / CakeLight.java
1 package kaka.cakelight;
2
3 import kaka.cakelight.mode.Mode;
4 import org.jnativehook.GlobalScreen;
5 import org.jnativehook.NativeHookException;
6 import org.jnativehook.keyboard.NativeKeyAdapter;
7 import org.jnativehook.keyboard.NativeKeyEvent;
8 import org.jnativehook.mouse.NativeMouseEvent;
9 import org.jnativehook.mouse.NativeMouseMotionAdapter;
10
11 import java.util.Objects;
12 import java.util.Stack;
13
14 public class CakeLight {
15     private Configuration config;
16     private Stack<Mode> modes = new Stack<>();
17     private LedController ledController;
18
19     public CakeLight(Configuration config, LedController ledController) {
20         this.config = config;
21         this.ledController = ledController;
22         Color.calculateGammaCorrection(config.gamma);
23     }
24
25     public void setMode(Mode mode) {
26         cleanup();
27         pushMode(mode);
28     }
29
30     public void cleanup() {
31         while (popMode() != null);
32     }
33
34     public void pushMode(Mode mode) {
35         Objects.requireNonNull(mode);
36         if (!modes.isEmpty()) {
37             pauseMode(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 Mode popMode() {
45         if (!modes.isEmpty()) {
46             Mode mode = modes.pop();
47             stopMode(mode);
48             if (!modes.isEmpty()) {
49                 resumeMode(modes.peek());
50             }
51             return mode;
52         }
53         return null;
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 pauseMode(Mode mode) {
63         mode.pause();
64     }
65
66     private void resumeMode(Mode mode) {
67         mode.resume();
68     }
69
70     private void stopMode(Mode mode) {
71         mode.setFrameListener(ledFrame -> {}); // To avoid any frame being sent to the controller while the thread is exiting
72         mode.exit();
73     }
74
75     public void startLoop() {
76         Console console = Console.start(this, config);
77         PipeController.start(console);
78 //        initNativeHook();
79         // TODO
80 //        FrameGrabber grabber = FrameGrabber.from(config);
81 //        grabber.prepare();
82 //        VideoFrame frame = grabber.grabFrame();
83 //        double time = 0;
84 //        for (int i = 0; i < 100; i++) {
85 //            time += timeIt("frame", () -> grabber.grabFrame());
86 //        }
87 //        System.out.println("time = " + time);
88 //        grabber.close();
89 //      byte[] data = frame.getData();
90 //      saveFile(data, "/home/kaka/test.img");
91     }
92
93     private void initNativeHook() {
94         try {
95             GlobalScreen.registerNativeHook();
96             GlobalScreen.addNativeKeyListener(new NativeKeyAdapter() {
97                 @Override
98                 public void nativeKeyPressed(NativeKeyEvent e) {
99                     System.out.println("key code = " + e.getKeyCode() + ", key text = '" + NativeKeyEvent.getKeyText(e.getKeyCode()) + "'");
100                 }
101             });
102             GlobalScreen.addNativeMouseMotionListener(new NativeMouseMotionAdapter() {
103                 @Override
104                 public void nativeMouseMoved(NativeMouseEvent e) {
105                     System.out.println("mouse point = " + e.getPoint());
106                 }
107             });
108         } catch (NativeHookException e) {
109             e.printStackTrace();
110         }
111     }
112
113     public void turnOff() {
114         cleanup();
115         ledController.onFrame(LedFrame.from(config).fillColor(0, 0, 0));
116     }
117 }