]> git.sesse.net Git - nageru/blobdiff - theme.h
Add the two final missing MIDI mappings, namely buttons for toggling limiter and...
[nageru] / theme.h
diff --git a/theme.h b/theme.h
index 473985a22cb3b82ae9e639c994141d64b5a99037..91c5c2e1a11deb2f25229104d4ae581e78f7d91d 100644 (file)
--- a/theme.h
+++ b/theme.h
 #ifndef _THEME_H
 #define _THEME_H 1
 
+#include <epoxy/gl.h>
+#include <lua.hpp>
+#include <movit/effect_chain.h>
+#include <movit/deinterlace_effect.h>
+#include <movit/ycbcr_input.h>
+#include <stdbool.h>
 #include <stdio.h>
-#include <lua.h>
-#include <lauxlib.h>
-
 #include <functional>
 #include <mutex>
+#include <set>
+#include <string>
 #include <utility>
+#include <vector>
 
-#include <movit/effect_chain.h>
-#include <movit/ycbcr_input.h>
+#include "defs.h"
+#include "input_state.h"
+#include "ref_counted_frame.h"
+
+namespace movit {
+class ResourcePool;
+struct ImageFormat;
+struct YCbCrFormat;
+}  // namespace movit
+
+class NonBouncingYCbCrInput : public movit::YCbCrInput {
+public:
+       NonBouncingYCbCrInput(const movit::ImageFormat &image_format,
+                             const movit::YCbCrFormat &ycbcr_format,
+                             unsigned width, unsigned height,
+                             movit::YCbCrInputSplitting ycbcr_input_splitting = movit::YCBCR_INPUT_PLANAR)
+           : movit::YCbCrInput(image_format, ycbcr_format, width, height, ycbcr_input_splitting) {}
+
+       bool override_disable_bounce() const override { return true; }
+};
 
 class Theme {
 public:
-       Theme(const char *filename, movit::ResourcePool *resource_pool);
-       void register_class(const char *class_name, const luaL_Reg *funcs);
+       Theme(const std::string &filename, const std::vector<std::string> &search_dirs, movit::ResourcePool *resource_pool, unsigned num_cards);
+       ~Theme();
 
-       std::pair<movit::EffectChain *, std::function<void()>>
-       get_chain(unsigned num, float t, unsigned width, unsigned height);
+       struct Chain {
+               movit::EffectChain *chain;
+               std::function<void()> setup_chain;
 
-       void set_input_textures(int signal_num, GLuint tex_y, GLuint tex_cbcr) {
-               input_textures[signal_num].tex_y = tex_y;
-               input_textures[signal_num].tex_cbcr = tex_cbcr;
-       }
-       int get_num_channels() { return num_channels; }
+               // May have duplicates.
+               std::vector<RefCountedFrame> input_frames;
+       };
+
+       Chain get_chain(unsigned num, float t, unsigned width, unsigned height, InputState input_state);
+
+       int get_num_channels() const { return num_channels; }
+       int map_signal(int signal_num);
+       void set_signal_mapping(int signal_num, int card_num);
+       std::string get_channel_name(unsigned channel);
+       int get_channel_signal(unsigned channel);
+       bool get_supports_set_wb(unsigned channel);
+       void set_wb(unsigned channel, double r, double g, double b);
+       std::string get_channel_color(unsigned channel);
+
+       std::vector<std::string> get_transition_names(float t);
 
        void connect_signal(movit::YCbCrInput *input, int signal_num);
        void transition_clicked(int transition_num, float t);
+       void channel_clicked(int preview_num);
+
+       movit::ResourcePool *get_resource_pool() const { return resource_pool; }
 
 private:
+       void register_class(const char *class_name, const luaL_Reg *funcs);
+
        std::mutex m;
-       lua_State *L;
+       lua_State *L;  // Protected by <m>.
+       const InputState *input_state;  // Protected by <m>. Only set temporarily, during chain setup.
        movit::ResourcePool *resource_pool;
-       struct {
-               GLuint tex_y = 0, tex_cbcr = 0;
-       } input_textures[16];  // FIXME
        int num_channels;
+       unsigned num_cards;
+
+       std::mutex map_m;
+       std::map<int, int> signal_to_card_mapping;  // Protected by <map_m>.
+
+       friend class LiveInputWrapper;
 };
 
 class LiveInputWrapper {
 public:
-       LiveInputWrapper(Theme *theme, movit::EffectChain *chain);
+       LiveInputWrapper(Theme *theme, movit::EffectChain *chain, bool override_bounce, bool deinterlace);
 
        void connect_signal(int signal_num);
-#if 0
-       {
-               connected_signal_num = signal_num;
-       }
-
-       int get_connected_signal_num() const {
-               return connected_signal_num;
-       }
-#endif
-
-       movit::YCbCrInput *get_input() const
+       movit::Effect *get_effect() const
        {
-               return input;
+               if (deinterlace) {
+                       return deinterlace_effect;
+               } else {
+                       return inputs[0];
+               }
        }
 
 private:
        Theme *theme;  // Not owned by us.
-       movit::YCbCrInput *input;  // Owned by the chain.
-       int connected_signal_num = 0;
+       std::vector<movit::YCbCrInput *> inputs;  // Multiple ones if deinterlacing. Owned by the chain.
+       movit::Effect *deinterlace_effect = nullptr;  // Owned by the chain.
+       bool deinterlace;
 };
 
 #endif  // !defined(_THEME_H)