2019-04-27 14:10:16 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-04-02 15:02:01 +00:00
|
|
|
#include "common.hpp"
|
2019-12-03 19:11:27 +00:00
|
|
|
#include <list>
|
|
|
|
#include <map>
|
2019-04-27 14:10:16 +00:00
|
|
|
#include "gfx/gfx-source-texture.hpp"
|
|
|
|
#include "obs/gs/gs-effect.hpp"
|
2019-12-03 19:11:27 +00:00
|
|
|
#include "obs/obs-source-factory.hpp"
|
2019-04-27 14:10:16 +00:00
|
|
|
#include "obs/obs-source-tracker.hpp"
|
|
|
|
#include "obs/obs-source.hpp"
|
2020-11-29 03:22:42 +00:00
|
|
|
#include "obs/obs-tools.hpp"
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
namespace streamfx::filter::dynamic_mask {
|
2020-08-10 01:29:05 +00:00
|
|
|
enum class channel : int8_t { Invalid = -1, Red, Green, Blue, Alpha };
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
class dynamic_mask_instance : public obs::source_instance {
|
|
|
|
std::map<std::tuple<channel, channel, std::string>, std::string> _translation_map;
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::effect _effect;
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2021-06-08 02:38:24 +00:00
|
|
|
bool _have_filter_texture;
|
|
|
|
std::shared_ptr<streamfx::obs::gs::rendertarget> _filter_rt;
|
|
|
|
std::shared_ptr<streamfx::obs::gs::texture> _filter_texture;
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
bool _have_input_texture;
|
|
|
|
std::shared_ptr<obs::deprecated_source> _input;
|
|
|
|
std::shared_ptr<streamfx::gfx::source_texture> _input_capture;
|
|
|
|
std::shared_ptr<streamfx::obs::gs::texture> _input_texture;
|
|
|
|
std::shared_ptr<obs::tools::visible_source> _input_vs;
|
|
|
|
std::shared_ptr<obs::tools::active_source> _input_ac;
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2021-06-08 02:38:24 +00:00
|
|
|
bool _have_final_texture;
|
|
|
|
std::shared_ptr<streamfx::obs::gs::rendertarget> _final_rt;
|
|
|
|
std::shared_ptr<streamfx::obs::gs::texture> _final_texture;
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
struct channel_data {
|
|
|
|
float_t value = 0.0;
|
|
|
|
float_t scale = 1.0;
|
2020-04-08 21:38:42 +00:00
|
|
|
vec4 values = {0, 0, 0, 0};
|
2020-01-13 21:40:15 +00:00
|
|
|
};
|
|
|
|
std::map<channel, channel_data> _channels;
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
struct _precalc {
|
|
|
|
vec4 base;
|
|
|
|
vec4 scale;
|
|
|
|
matrix4 matrix;
|
|
|
|
} _precalc;
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
public:
|
|
|
|
dynamic_mask_instance(obs_data_t* data, obs_source_t* self);
|
|
|
|
virtual ~dynamic_mask_instance();
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
virtual void load(obs_data_t* settings) override;
|
2020-08-10 01:29:05 +00:00
|
|
|
virtual void migrate(obs_data_t* data, uint64_t version) override;
|
2020-04-05 04:02:03 +00:00
|
|
|
virtual void update(obs_data_t* settings) override;
|
2020-01-13 21:40:15 +00:00
|
|
|
virtual void save(obs_data_t* settings) override;
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
void input_renamed(obs::deprecated_source* src, std::string old_name, std::string new_name);
|
2019-04-27 14:10:16 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
virtual void video_tick(float_t _time) override;
|
|
|
|
virtual void video_render(gs_effect_t* effect) override;
|
2020-11-29 03:22:42 +00:00
|
|
|
|
|
|
|
void enum_active_sources(obs_source_enum_proc_t enum_callback, void* param) override;
|
|
|
|
void enum_all_sources(obs_source_enum_proc_t enum_callback, void* param) override;
|
|
|
|
|
|
|
|
void show() override;
|
|
|
|
void hide() override;
|
|
|
|
void activate() override;
|
|
|
|
void deactivate() override;
|
2021-10-17 09:39:05 +00:00
|
|
|
|
|
|
|
bool acquire(std::string_view name);
|
|
|
|
void release();
|
2020-01-13 21:40:15 +00:00
|
|
|
};
|
2019-12-03 19:11:27 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
class dynamic_mask_factory : public obs::source_factory<filter::dynamic_mask::dynamic_mask_factory,
|
|
|
|
filter::dynamic_mask::dynamic_mask_instance> {
|
|
|
|
std::list<std::string> _translation_cache;
|
2019-12-03 19:11:27 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
public:
|
|
|
|
dynamic_mask_factory();
|
|
|
|
virtual ~dynamic_mask_factory() override;
|
2019-12-03 19:11:27 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
virtual const char* get_name() override;
|
2019-12-03 19:11:27 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
virtual void get_defaults2(obs_data_t* data) override;
|
2019-12-03 19:11:27 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
virtual obs_properties_t* get_properties2(filter::dynamic_mask::dynamic_mask_instance* data) override;
|
2019-12-03 19:11:27 +00:00
|
|
|
|
2020-01-13 21:40:15 +00:00
|
|
|
std::string translate_string(const char* format, ...);
|
2020-04-05 16:52:06 +00:00
|
|
|
|
2021-04-16 23:43:30 +00:00
|
|
|
#ifdef ENABLE_FRONTEND
|
|
|
|
static bool on_manual_open(obs_properties_t* props, obs_property_t* property, void* data);
|
|
|
|
#endif
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
public: // Singleton
|
|
|
|
static void initialize();
|
|
|
|
|
|
|
|
static void finalize();
|
|
|
|
|
|
|
|
static std::shared_ptr<dynamic_mask_factory> get();
|
2020-01-13 21:40:15 +00:00
|
|
|
};
|
2020-04-05 16:52:06 +00:00
|
|
|
} // namespace streamfx::filter::dynamic_mask
|