]> git.sesse.net Git - nageru/blob - theme.lua
Improve the help in the theme a bit.
[nageru] / theme.lua
1 -- The theme is what decides what's actually shown on screen, what kind of
2 -- transitions are available (if any), and what kind of inputs there are,
3 -- if any. In general, it drives the entire display logic by creating Movit
4 -- chains, setting their parameters and then deciding which to show when.
5 --
6 -- Themes are written in Lua, which reflects a simplified form of the Movit API
7 -- where all the low-level details (such as texture formats) are handled by the
8 -- C++ side and you generally just build chains.
9 io.write("hello from lua\n");
10
11 local live_signal_num = 0;
12 local preview_signal_num = 1;
13
14 -- The main live chain. Currently just about input 0 with some color correction.
15 local main_chain = EffectChain.new(16, 9);
16 local input0 = main_chain:add_live_input();
17 input0:connect_signal(0);
18 local wb_effect = main_chain:add_effect(WhiteBalanceEffect.new(), input0);
19 main_chain:finalize(true);
20 -- local input1 = main_chain.add_input(Inputs.create(1));
21 -- local resample_effect = main_chain.add_effect(ResampleEffect.new(), input0);
22 -- local padding_effect = main_chain.add_effect(IntegralPaddingEffect.new());
23
24 -- A chain to show a single input on screen.
25 local simple_chain = EffectChain.new(16, 9);
26 local simple_chain_input = simple_chain:add_live_input();
27 simple_chain_input:connect_signal(0);  -- First input card. Can be changed whenever you want.
28 simple_chain:finalize(false);
29
30 -- Returns the number of outputs in addition to the live (0) and preview (1).
31 -- Called only once, at the start of the program.
32 function num_channels()
33         return 2;
34 end
35
36 -- Called every frame.
37 function get_transitions()
38         return {"Cut", "Fade", "Zoom!"};
39 end
40
41 function transition_clicked(num, t)
42         -- Only a cut for now.
43         local temp = live_signal_num;
44         live_signal_num = preview_signal_num;
45         preview_signal_num = temp;
46 end
47
48 function channel_clicked(num, t)
49         -- Presumably change the preview here.
50         io.write("STUB: channel_clicked\n");
51 end
52
53 -- Called every frame. Get the chain for displaying at input <num>,
54 -- where 0 is live, 1 is preview, 2 is the first channel to display
55 -- in the bottom bar, and so on up to num_channels()+1. t is the 
56 -- current time in seconds. width and height are the dimensions of
57 -- the output, although you can ignore them if you don't need them
58 -- (they're useful if you want to e.g. know what to resample by).
59 --
60 -- You should return two objects; the chain itself, and then a
61 -- function (taking no parameters) that is run just before rendering.
62 -- The function needs to call connect_signal on any inputs, so that
63 -- it gets updated video data for the given frame. (You are allowed
64 -- to switch which input your input is getting from between frames,
65 -- but not calling connect_signal results in undefined behavior.)
66 -- If you want to change any parameters in the chain, this is also
67 -- the right place.
68 --
69 -- NOTE: The chain returned must be finalized with the Y'CbCr flag
70 -- if and only if num==0.
71 function get_chain(num, t, width, height)
72         if num == 0 then  -- Live.
73                 prepare = function()
74                         input0:connect_signal(live_signal_num);
75                         wb_effect:set_float("output_color_temperature", 3500.0 + t * 100.0);
76                 end
77                 return main_chain, prepare;
78         end
79         if num == 1 then  -- Preview.
80                 prepare = function()
81                         simple_chain_input:connect_signal(preview_signal_num);
82                 end
83                 return simple_chain, prepare;
84         end
85         if num == 2 then
86                 prepare = function()
87                         simple_chain_input:connect_signal(0);
88                 end
89                 return simple_chain, prepare;
90         end
91         if num == 3 then
92                 prepare = function()
93                         simple_chain_input:connect_signal(1);
94                 end
95                 return simple_chain, prepare;
96         end
97 end
98