]> git.sesse.net Git - nageru/blob - theme.h
Wire the transition names through to the UI.
[nageru] / theme.h
1 #ifndef _THEME_H
2 #define _THEME_H 1
3
4 #include <stdio.h>
5 #include <lua.h>
6 #include <lauxlib.h>
7
8 #include <functional>
9 #include <mutex>
10 #include <utility>
11
12 #include <movit/effect_chain.h>
13 #include <movit/ycbcr_input.h>
14
15 class Theme {
16 public:
17         Theme(const char *filename, movit::ResourcePool *resource_pool);
18         void register_class(const char *class_name, const luaL_Reg *funcs);
19
20         std::pair<movit::EffectChain *, std::function<void()>>
21         get_chain(unsigned num, float t, unsigned width, unsigned height);
22
23         void set_input_textures(int signal_num, GLuint tex_y, GLuint tex_cbcr) {
24                 input_textures[signal_num].tex_y = tex_y;
25                 input_textures[signal_num].tex_cbcr = tex_cbcr;
26         }
27         int get_num_channels() { return num_channels; }
28
29         std::vector<std::string> get_transition_names(float t);
30
31         void connect_signal(movit::YCbCrInput *input, int signal_num);
32         void transition_clicked(int transition_num, float t);
33         void channel_clicked(int preview_num);
34
35 private:
36         std::mutex m;
37         lua_State *L;
38         movit::ResourcePool *resource_pool;
39         struct {
40                 GLuint tex_y = 0, tex_cbcr = 0;
41         } input_textures[16];  // FIXME
42         int num_channels;
43 };
44
45 class LiveInputWrapper {
46 public:
47         LiveInputWrapper(Theme *theme, movit::EffectChain *chain);
48
49         void connect_signal(int signal_num);
50         movit::YCbCrInput *get_input() const
51         {
52                 return input;
53         }
54
55 private:
56         Theme *theme;  // Not owned by us.
57         movit::YCbCrInput *input;  // Owned by the chain.
58         int connected_signal_num = 0;
59 };
60
61 #endif  // !defined(_THEME_H)