]> git.sesse.net Git - nageru/blob - nageru/theme.lua
Add get_frame_width() and get_frame_height() to the signals given to the theme, which...
[nageru] / 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 (called “scenes”), setting their parameters and then deciding which
5 -- to show when.
6 --
7 -- Themes are written in Lua, which reflects a simplified form of the Movit API
8 -- where all the low-level details (such as texture formats) and alternatives
9 -- (e.g. turning scaling on or off) are handled by the C++ side and you
10 -- generally just build scenes.
11
12 local state = {
13         transition_start = -2.0,
14         transition_end = -1.0,
15         transition_type = 0,
16         transition_src_signal = 0,
17         transition_dst_signal = 0,
18
19         neutral_colors = {
20                 {0.5, 0.5, 0.5},  -- Input 0.
21                 {0.5, 0.5, 0.5}   -- Input 1.
22         },
23
24         live_signal_num = 0,
25         preview_signal_num = 1
26 }
27
28 -- Valid values for live_signal_num and preview_signal_num.
29 local INPUT0_SIGNAL_NUM = 0
30 local INPUT1_SIGNAL_NUM = 1
31 local SBS_SIGNAL_NUM = 2
32 local STATIC_SIGNAL_NUM = 3
33
34 -- Valid values for transition_type. (Cuts are done directly, so they need no entry.)
35 local NO_TRANSITION = 0
36 local ZOOM_TRANSITION = 1  -- Also for slides.
37 local FADE_TRANSITION = 2
38
39 function make_sbs_input(scene)
40         return {
41                 input = scene:add_input(),
42                 resample_effect = scene:add_effect({ResampleEffect.new(), ResizeEffect.new()}),
43                 wb_effect = scene:add_effect(WhiteBalanceEffect.new()),
44                 padding_effect = scene:add_effect(IntegralPaddingEffect.new())
45         }
46 end
47
48 -- The main live scene.
49 function make_sbs_scene()
50         local scene = Scene.new(16, 9)
51
52         local input0 = make_sbs_input(scene)
53         input0.input:display(0)
54         input0.padding_effect:set_vec4("border_color", 0.0, 0.0, 0.0, 1.0)
55
56         local input1 = make_sbs_input(scene)
57         input1.input:display(1)
58         input1.padding_effect:set_vec4("border_color", 0.0, 0.0, 0.0, 0.0)
59
60         scene:add_effect(OverlayEffect.new(), input0.padding_effect, input1.padding_effect)
61         scene:finalize()
62
63         return {
64                 scene = scene,
65                 input0 = input0,
66                 input1 = input1
67         }
68 end
69 local sbs_scene = make_sbs_scene()
70
71 function make_fade_input(scene)
72         return {
73                 input = scene:add_input(),
74                 resample_effect = scene:add_optional_effect(ResampleEffect.new()),  -- Activated if scaling.
75                 wb_effect = scene:add_optional_effect(WhiteBalanceEffect.new())  -- Activated for video inputs.
76         }
77 end
78
79 -- A scene to fade between two inputs, of which either can be a picture
80 -- or a live input. Only used live.
81 function make_fade_scene()
82         local scene = Scene.new(16, 9)
83         local input0 = make_fade_input(scene)
84         local input1 = make_fade_input(scene)
85         local mix_effect = scene:add_effect(MixEffect.new(), input0.wb_effect, input1.wb_effect)
86         scene:finalize(true)  -- Only used live.
87
88         return {
89                 scene = scene,
90                 input0 = input0,
91                 input1 = input1,
92                 mix_effect = mix_effect
93         }
94 end
95 local fade_scene = make_fade_scene()
96
97 -- A scene to show a single input on screen.
98 local scene = Scene.new(16, 9)
99 local simple_scene = {
100         scene = scene,
101         input = scene:add_input(),
102         resample_effect = scene:add_effect({ResampleEffect.new(), ResizeEffect.new(), IdentityEffect.new()}),
103         wb_effect = scene:add_effect(WhiteBalanceEffect.new())
104 }
105 scene:finalize()
106
107 -- A scene to show a single static picture on screen.
108 local static_image = ImageInput.new("bg.jpeg")  -- Also used as input to other scenes.
109 local static_scene = Scene.new(16, 9)
110 static_scene:add_input(static_image)  -- Note: Locks this input to images only.
111 static_scene:finalize()
112
113 -- Set some global state.
114 Nageru.set_num_channels(4)  -- Can only be called at the start of the program.
115
116 -- Set some global state. Unless marked otherwise, these can only be set once,
117 -- at the start of the program.
118 Nageru.set_num_channels(4)
119
120 -- Sets, for each channel, which signal it corresponds to (starting from 0).
121 -- The information is used for whether right-click on the channel should bring up
122 -- an input selector or not. Only call this for channels that actually correspond
123 -- directly to a signal (ie., live inputs, not live (0) or preview (1)).
124 Nageru.set_channel_signal(2, 0)
125 Nageru.set_channel_signal(3, 1)
126
127 -- Set whether a given channel supports setting white balance. (Default is false.)
128 Nageru.set_supports_wb(2, true)
129 Nageru.set_supports_wb(3, true)
130
131 -- These can be set at any time.
132 Nageru.set_channel_name(SBS_SIGNAL_NUM + 2, "Side-by-side")
133 Nageru.set_channel_name(STATIC_SIGNAL_NUM + 2, "Static picture")
134
135 -- API ENTRY POINT
136 -- Called every frame. Returns the color (if any) to paint around the given
137 -- channel. Returns a CSS color (typically to mark live and preview signals);
138 -- "transparent" is allowed.
139 -- Will never be called for live (0) or preview (1).
140 function channel_color(channel)
141         if state.transition_type ~= NO_TRANSITION then
142                 if channel_involved_in(channel, state.transition_src_signal) or
143                    channel_involved_in(channel, state.transition_dst_signal) then
144                         return "#f00"
145                 end
146         else
147                 if channel_involved_in(channel, state.live_signal_num) then
148                         return "#f00"
149                 end
150         end
151         if channel_involved_in(channel, state.preview_signal_num) then
152                 return "#0f0"
153         end
154         return "transparent"
155 end
156
157 function is_plain_signal(num)
158         return num == INPUT0_SIGNAL_NUM or num == INPUT1_SIGNAL_NUM
159 end
160
161 function channel_involved_in(channel, signal_num)
162         if is_plain_signal(signal_num) then
163                 return channel == (signal_num + 2)
164         end
165         if signal_num == SBS_SIGNAL_NUM then
166                 return (channel == 2 or channel == 3)
167         end
168         if signal_num == STATIC_SIGNAL_NUM then
169                 return (channel == 5)
170         end
171         return false
172 end
173
174 -- API ENTRY POINT
175 -- Gets called with a new gray point when the white balance is changing.
176 -- The color is in linear light (not sRGB gamma).
177 function set_wb(channel, red, green, blue)
178         if is_plain_signal(channel - 2) then
179                 state.neutral_colors[channel - 2 + 1] = { red, green, blue }
180         end
181 end
182
183 function finish_transitions(t)
184         if state.transition_type ~= NO_TRANSITION and t >= state.transition_end then
185                 state.live_signal_num = state.transition_dst_signal
186                 state.transition_type = NO_TRANSITION
187         end
188 end
189
190 function in_transition(t)
191        return t >= state.transition_start and t <= state.transition_end
192 end
193
194 -- API ENTRY POINT
195 -- Called every frame.
196 function get_transitions(t)
197         if in_transition(t) then
198                 -- Transition already in progress, the only thing we can do is really
199                 -- cut to the preview. (TODO: Make an “abort” and/or “finish”, too?)
200                 return {"Cut"}
201         end
202
203         finish_transitions(t)
204
205         if state.live_signal_num == state.preview_signal_num then
206                 -- No transitions possible.
207                 return {}
208         end
209
210         if (is_plain_signal(state.live_signal_num) or state.live_signal_num == STATIC_SIGNAL_NUM) and
211            (is_plain_signal(state.preview_signal_num) or state.preview_signal_num == STATIC_SIGNAL_NUM) then
212                 return {"Cut", "", "Fade"}
213         end
214
215         -- Various zooms.
216         if state.live_signal_num == SBS_SIGNAL_NUM and is_plain_signal(state.preview_signal_num) then
217                 return {"Cut", "Zoom in"}
218         elseif is_plain_signal(state.live_signal_num) and state.preview_signal_num == SBS_SIGNAL_NUM then
219                 return {"Cut", "Zoom out"}
220         end
221
222         return {"Cut"}
223 end
224
225 function swap_preview_live()
226         local temp = state.live_signal_num
227         state.live_signal_num = state.preview_signal_num
228         state.preview_signal_num = temp
229 end
230
231 function start_transition(type_, t, duration)
232         state.transition_start = t
233         state.transition_end = t + duration
234         state.transition_type = type_
235         state.transition_src_signal = state.live_signal_num
236         state.transition_dst_signal = state.preview_signal_num
237         swap_preview_live()
238 end
239
240 -- API ENTRY POINT
241 -- Called when the user clicks a transition button.
242 function transition_clicked(num, t)
243         if num == 0 then
244                 -- Cut.
245                 if in_transition(t) then
246                         -- Ongoing transition; finish it immediately before the cut.
247                         finish_transitions(state.transition_end)
248                 end
249
250                 swap_preview_live()
251         elseif num == 1 then
252                 -- Zoom.
253                 finish_transitions(t)
254
255                 if state.live_signal_num == state.preview_signal_num then
256                         -- Nothing to do.
257                         return
258                 end
259
260                 if is_plain_signal(state.live_signal_num) and is_plain_signal(state.preview_signal_num) then
261                         -- We can't zoom between these. Just make a cut.
262                         io.write("Cutting from " .. state.live_signal_num .. " to " .. state.live_signal_num .. "\n")
263                         swap_preview_live()
264                         return
265                 end
266
267                 if (state.live_signal_num == SBS_SIGNAL_NUM and is_plain_signal(state.preview_signal_num)) or
268                    (state.preview_signal_num == SBS_SIGNAL_NUM and is_plain_signal(state.live_signal_num)) then
269                         start_transition(ZOOM_TRANSITION, t, 1.0)
270                 end
271         elseif num == 2 then
272                 finish_transitions(t)
273
274                 -- Fade.
275                 if (state.live_signal_num ~= state.preview_signal_num) and
276                    (is_plain_signal(state.live_signal_num) or
277                     state.live_signal_num == STATIC_SIGNAL_NUM) and
278                    (is_plain_signal(state.preview_signal_num) or
279                     state.preview_signal_num == STATIC_SIGNAL_NUM) then
280                         start_transition(FADE_TRANSITION, t, 1.0)
281                 else
282                         -- Fades involving SBS are ignored (we have no scene for it).
283                 end
284         end
285 end
286
287 -- API ENTRY POINT
288 function channel_clicked(num)
289         state.preview_signal_num = num
290 end
291
292 function setup_fade_input(state, input, signals, signal_num, width, height)
293         if signal_num == STATIC_SIGNAL_NUM then
294                 input.input:display(static_image)
295                 input.wb_effect:disable()
296
297                 -- We assume this is already correctly scaled at load time.
298                 input.resample_effect:disable()
299         else
300                 input.input:display(signal_num)
301                 input.wb_effect:enable()
302                 set_neutral_color(input.wb_effect, state.neutral_colors[signal_num - INPUT0_SIGNAL_NUM + 1])
303
304                 if (signals:get_width(signal_num) ~= width or signals:get_height(signal_num) ~= height) then
305                         input.resample_effect:enable()
306                         input.resample_effect:set_int("width", width)
307                         input.resample_effect:set_int("height", height)
308                 else
309                         input.resample_effect:disable()
310                 end
311         end
312 end
313
314 function needs_scale(signals, signal_num, width, height)
315         if signal_num == STATIC_SIGNAL_NUM then
316                 -- We assume this is already correctly scaled at load time.
317                 return false
318         end
319         assert(is_plain_signal(signal_num))
320         return (signals:get_width(signal_num) ~= width or signals:get_height(signal_num) ~= height)
321 end
322
323 function setup_simple_input(state, signals, signal_num, width, height, hq)
324         simple_scene.input:display(signal_num)
325         if needs_scale(signals, signal_num, width, height) then
326                 if hq then
327                         simple_scene.resample_effect:choose(ResampleEffect)  -- High-quality resampling.
328                 else
329                         simple_scene.resample_effect:choose(ResizeEffect)  -- Low-quality resampling.
330                 end
331                 simple_scene.resample_effect:set_int("width", width)
332                 simple_scene.resample_effect:set_int("height", height)
333         else
334                 simple_scene.resample_effect:disable()  -- No scaling.
335         end
336         set_neutral_color_from_signal(state, simple_scene.wb_effect, signal_num)
337 end
338
339 -- API ENTRY POINT
340 -- Called every frame. Get the scene for displaying at input <num>,
341 -- where 0 is live, 1 is preview, 2 is the first channel to display
342 -- in the bottom bar, and so on up to num_channels()+1. t is the
343 -- current time in seconds. width and height are the dimensions of
344 -- the output, although you can ignore them if you don't need them
345 -- (they're useful if you want to e.g. know what to resample by).
346 --
347 -- <signals> is basically an exposed InputState, which you can use to
348 -- query for information about the signals at the point of the current
349 -- frame. In particular, you can call get_frame_width() and get_frame_height()
350 -- for any signal number, and use that to e.g. assist in scene selection.
351 -- (You can also use get_width() and get_height(), which return the
352 -- _field_ size. This has half the height for interlaced signals.)
353 --
354 -- You should return scene to use, after having set any parameters you
355 -- want to set (through set_int() etc.). The parameters will be snapshot
356 -- at return time and used during rendering.
357 function get_scene(num, t, width, height, signals)
358         local input_resolution = {}
359         for signal_num=0,1 do
360                 local res = {
361                         width = signals:get_frame_width(signal_num),
362                         height = signals:get_frame_height(signal_num),
363                 }
364                 input_resolution[signal_num] = res
365
366                 local text_res = signals:get_human_readable_resolution(signal_num)
367                 Nageru.set_channel_name(signal_num + 2, "Input " .. (signal_num + 1) .. " (" .. text_res .. ")")
368         end
369
370         if num == 0 then  -- Live.
371                 finish_transitions(t)
372                 if state.transition_type == ZOOM_TRANSITION then
373                         -- Transition in or out of SBS.
374                         prepare_sbs_scene(state, calc_zoom_progress(state, t), state.transition_type, state.transition_src_signal, state.transition_dst_signal, width, height, input_resolution, true)
375                         return sbs_scene.scene
376                 elseif state.transition_type == NO_TRANSITION and state.live_signal_num == SBS_SIGNAL_NUM then
377                         -- Static SBS view.
378                         prepare_sbs_scene(state, 0.0, NO_TRANSITION, 0, SBS_SIGNAL_NUM, width, height, input_resolution, true)
379                         return sbs_scene.scene
380                 elseif state.transition_type == FADE_TRANSITION then
381                         setup_fade_input(state, fade_scene.input0, signals, state.transition_src_signal, width, height)
382                         setup_fade_input(state, fade_scene.input1, signals, state.transition_dst_signal, width, height)
383
384                         local tt = calc_fade_progress(t, state.transition_start, state.transition_end)
385                         fade_scene.mix_effect:set_float("strength_first", 1.0 - tt)
386                         fade_scene.mix_effect:set_float("strength_second", tt)
387
388                         return fade_scene.scene
389                 elseif is_plain_signal(state.live_signal_num) then
390                         setup_simple_input(state, signals, state.live_signal_num, width, height, true)
391                         return simple_scene.scene
392                 elseif state.live_signal_num == STATIC_SIGNAL_NUM then  -- Static picture.
393                         return static_scene
394                 else
395                         assert(false)
396                 end
397         end
398         if num == 1 then  -- Preview.
399                 num = state.preview_signal_num + 2
400         end
401
402         -- Individual preview inputs.
403         if is_plain_signal(num - 2) then
404                 setup_simple_input(state, signals, num - 2, width, height, false)
405                 return simple_scene.scene
406         end
407         if num == SBS_SIGNAL_NUM + 2 then
408                 prepare_sbs_scene(state, 0.0, NO_TRANSITION, 0, SBS_SIGNAL_NUM, width, height, input_resolution, false)
409                 return sbs_scene.scene
410         end
411         if num == STATIC_SIGNAL_NUM + 2 then
412                 return static_scene
413         end
414 end
415
416 function place_rectangle(input, x0, y0, x1, y1, screen_width, screen_height, input_width, input_height, hq)
417         input.padding_effect:set_int("width", screen_width)
418         input.padding_effect:set_int("height", screen_height)
419
420         -- Cull.
421         if x0 > screen_width or x1 < 0.0 or y0 > screen_height or y1 < 0.0 then
422                 input.resample_effect:choose(ResizeEffect)  -- Low-quality resizing.
423                 input.resample_effect:set_int("width", 1)
424                 input.resample_effect:set_int("height", 1)
425                 input.padding_effect:set_int("left", screen_width + 100)
426                 input.padding_effect:set_int("top", screen_height + 100)
427                 return
428         end
429
430         local srcx0 = 0.0
431         local srcx1 = 1.0
432         local srcy0 = 0.0
433         local srcy1 = 1.0
434
435         -- Clip.
436         if x0 < 0 then
437                 srcx0 = -x0 / (x1 - x0)
438                 x0 = 0
439         end
440         if y0 < 0 then
441                 srcy0 = -y0 / (y1 - y0)
442                 y0 = 0
443         end
444         if x1 > screen_width then
445                 srcx1 = (screen_width - x0) / (x1 - x0)
446                 x1 = screen_width
447         end
448         if y1 > screen_height then
449                 srcy1 = (screen_height - y0) / (y1 - y0)
450                 y1 = screen_height
451         end
452
453         if hq then
454                 -- High-quality resampling. Go for the actual effect (returned by choose())
455                 -- since we want to set zoom_*, which will give an error if set on ResizeEffect.
456                 local resample_effect = input.resample_effect:choose(ResampleEffect)
457
458                 local x_subpixel_offset = x0 - math.floor(x0)
459                 local y_subpixel_offset = y0 - math.floor(y0)
460
461                 -- Resampling must be to an integral number of pixels. Round up,
462                 -- and then add an extra pixel so we have some leeway for the border.
463                 local width = math.ceil(x1 - x0) + 1
464                 local height = math.ceil(y1 - y0) + 1
465                 resample_effect:set_int("width", width)
466                 resample_effect:set_int("height", height)
467
468                 -- Correct the discrepancy with zoom. (This will leave a small
469                 -- excess edge of pixels and subpixels, which we'll correct for soon.)
470                 local zoom_x = (x1 - x0) / (width * (srcx1 - srcx0))
471                 local zoom_y = (y1 - y0) / (height * (srcy1 - srcy0))
472                 resample_effect:set_float("zoom_x", zoom_x)
473                 resample_effect:set_float("zoom_y", zoom_y)
474                 resample_effect:set_float("zoom_center_x", 0.0)
475                 resample_effect:set_float("zoom_center_y", 0.0)
476
477                 -- Padding must also be to a whole-pixel offset.
478                 input.padding_effect:set_int("left", math.floor(x0))
479                 input.padding_effect:set_int("top", math.floor(y0))
480
481                 -- Correct _that_ discrepancy by subpixel offset in the resampling.
482                 resample_effect:set_float("left", srcx0 * input_width - x_subpixel_offset / zoom_x)
483                 resample_effect:set_float("top", srcy0 * input_height - y_subpixel_offset / zoom_y)
484
485                 -- Finally, adjust the border so it is exactly where we want it.
486                 input.padding_effect:set_float("border_offset_left", x_subpixel_offset)
487                 input.padding_effect:set_float("border_offset_right", x1 - (math.floor(x0) + width))
488                 input.padding_effect:set_float("border_offset_top", y_subpixel_offset)
489                 input.padding_effect:set_float("border_offset_bottom", y1 - (math.floor(y0) + height))
490         else
491                 -- Lower-quality simple resizing.
492                 input.resample_effect:choose(ResizeEffect)
493
494                 local width = round(x1 - x0)
495                 local height = round(y1 - y0)
496                 input.resample_effect:set_int("width", width)
497                 input.resample_effect:set_int("height", height)
498
499                 -- Padding must also be to a whole-pixel offset.
500                 input.padding_effect:set_int("left", math.floor(x0))
501                 input.padding_effect:set_int("top", math.floor(y0))
502
503                 -- No subpixel stuff.
504                 input.padding_effect:set_float("border_offset_left", 0.0)
505                 input.padding_effect:set_float("border_offset_right", 0.0)
506                 input.padding_effect:set_float("border_offset_top", 0.0)
507                 input.padding_effect:set_float("border_offset_bottom", 0.0)
508         end
509 end
510
511 -- This is broken, of course (even for positive numbers), but Lua doesn't give us access to real rounding.
512 function round(x)
513         return math.floor(x + 0.5)
514 end
515
516 function lerp(a, b, t)
517         return a + (b - a) * t
518 end
519
520 function lerp_pos(a, b, t)
521         return {
522                 x0 = lerp(a.x0, b.x0, t),
523                 y0 = lerp(a.y0, b.y0, t),
524                 x1 = lerp(a.x1, b.x1, t),
525                 y1 = lerp(a.y1, b.y1, t)
526         }
527 end
528
529 function pos_from_top_left(x, y, width, height, screen_width, screen_height)
530         local xs = screen_width / 1280.0
531         local ys = screen_height / 720.0
532         return {
533                 x0 = round(xs * x),
534                 y0 = round(ys * y),
535                 x1 = round(xs * (x + width)),
536                 y1 = round(ys * (y + height))
537         }
538 end
539
540 function prepare_sbs_scene(state, t, transition_type, src_signal, dst_signal, screen_width, screen_height, input_resolution, hq)
541         set_neutral_color(sbs_scene.input0.wb_effect, state.neutral_colors[1])
542         set_neutral_color(sbs_scene.input1.wb_effect, state.neutral_colors[2])
543
544         -- First input is positioned (16,48) from top-left.
545         -- Second input is positioned (16,48) from the bottom-right.
546         local pos0 = pos_from_top_left(16, 48, 848, 477, screen_width, screen_height)
547         local pos1 = pos_from_top_left(1280 - 384 - 16, 720 - 216 - 48, 384, 216, screen_width, screen_height)
548
549         local pos_fs = { x0 = 0, y0 = 0, x1 = screen_width, y1 = screen_height }
550         local affine_param
551         if transition_type == NO_TRANSITION then
552                 -- Static SBS view.
553                 affine_param = { sx = 1.0, sy = 1.0, tx = 0.0, ty = 0.0 }   -- Identity.
554         else
555                 -- Zooming to/from SBS view into or out of a single view.
556                 assert(transition_type == ZOOM_TRANSITION)
557                 local signal, real_t
558                 if src_signal == SBS_SIGNAL_NUM then
559                         signal = dst_signal
560                         real_t = t
561                 else
562                         assert(dst_signal == SBS_SIGNAL_NUM)
563                         signal = src_signal
564                         real_t = 1.0 - t
565                 end
566
567                 if signal == INPUT0_SIGNAL_NUM then
568                         affine_param = find_affine_param(pos0, lerp_pos(pos0, pos_fs, real_t))
569                 elseif signal == INPUT1_SIGNAL_NUM then
570                         affine_param = find_affine_param(pos1, lerp_pos(pos1, pos_fs, real_t))
571                 end
572         end
573
574         -- NOTE: input_resolution is not 1-indexed, unlike usual Lua arrays.
575         place_rectangle_with_affine(sbs_scene.input0, pos0, affine_param, screen_width, screen_height, input_resolution[0].width, input_resolution[0].height, hq)
576         place_rectangle_with_affine(sbs_scene.input1, pos1, affine_param, screen_width, screen_height, input_resolution[1].width, input_resolution[1].height, hq)
577 end
578
579 -- Find the transformation that changes the first rectangle to the second one.
580 function find_affine_param(a, b)
581         local sx = (b.x1 - b.x0) / (a.x1 - a.x0)
582         local sy = (b.y1 - b.y0) / (a.y1 - a.y0)
583         return {
584                 sx = sx,
585                 sy = sy,
586                 tx = b.x0 - a.x0 * sx,
587                 ty = b.y0 - a.y0 * sy
588         }
589 end
590
591 function place_rectangle_with_affine(input, pos, aff, screen_width, screen_height, input_width, input_height, hq)
592         local x0 = pos.x0 * aff.sx + aff.tx
593         local x1 = pos.x1 * aff.sx + aff.tx
594         local y0 = pos.y0 * aff.sy + aff.ty
595         local y1 = pos.y1 * aff.sy + aff.ty
596
597         place_rectangle(input, x0, y0, x1, y1, screen_width, screen_height, input_width, input_height, hq)
598 end
599
600 function set_neutral_color(effect, color)
601         effect:set_vec3("neutral_color", color[1], color[2], color[3])
602 end
603
604 function set_neutral_color_from_signal(state, effect, signal)
605         if is_plain_signal(signal) then
606                 set_neutral_color(effect, state.neutral_colors[signal - INPUT0_SIGNAL_NUM + 1])
607         end
608 end
609
610 function calc_zoom_progress(state, t)
611         if t < state.transition_start then
612                 return 0.0
613         elseif t > state.transition_end then
614                 return 1.0
615         else
616                 local tt = (t - state.transition_start) / (state.transition_end - state.transition_start)
617                 -- Smooth it a bit.
618                 return math.sin(tt * 3.14159265358 * 0.5)
619         end
620 end
621
622 function calc_fade_progress(t, transition_start, transition_end)
623         local tt = (t - transition_start) / (transition_end - transition_start)
624         if tt < 0.0 then
625                 return 0.0
626         elseif tt > 1.0 then
627                 return 1.0
628         end
629
630         -- Make the fade look maybe a tad more natural, by pumping it
631         -- through a sigmoid function.
632         tt = 10.0 * tt - 5.0
633         tt = 1.0 / (1.0 + math.exp(-tt))
634
635         return tt
636 end