]> git.sesse.net Git - nageru/blob - theme.h
Hook up PaddingEffect.
[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         void connect_signal(movit::YCbCrInput *input, int signal_num);
30         void transition_clicked(int transition_num, float t);
31
32 private:
33         std::mutex m;
34         lua_State *L;
35         movit::ResourcePool *resource_pool;
36         struct {
37                 GLuint tex_y = 0, tex_cbcr = 0;
38         } input_textures[16];  // FIXME
39         int num_channels;
40 };
41
42 class LiveInputWrapper {
43 public:
44         LiveInputWrapper(Theme *theme, movit::EffectChain *chain);
45
46         void connect_signal(int signal_num);
47         movit::YCbCrInput *get_input() const
48         {
49                 return input;
50         }
51
52 private:
53         Theme *theme;  // Not owned by us.
54         movit::YCbCrInput *input;  // Owned by the chain.
55         int connected_signal_num = 0;
56 };
57
58 #endif  // !defined(_THEME_H)