2017-07-03 00:46:33 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
2018-04-28 11:59:54 +00:00
|
|
|
* Copyright (C) 2017-2018 Michael Fabian Dirks
|
2017-07-03 00:46:33 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "filter-blur.hpp"
|
2020-04-05 04:13:14 +00:00
|
|
|
#include "strings.hpp"
|
2019-01-14 22:52:57 +00:00
|
|
|
#include <cfloat>
|
2019-01-14 10:23:21 +00:00
|
|
|
#include <cinttypes>
|
2019-01-14 22:52:57 +00:00
|
|
|
#include <cmath>
|
2018-09-30 18:50:00 +00:00
|
|
|
#include <map>
|
2019-09-04 01:03:41 +00:00
|
|
|
#include <stdexcept>
|
2019-04-02 01:05:05 +00:00
|
|
|
#include "gfx/blur/gfx-blur-box-linear.hpp"
|
|
|
|
#include "gfx/blur/gfx-blur-box.hpp"
|
|
|
|
#include "gfx/blur/gfx-blur-dual-filtering.hpp"
|
|
|
|
#include "gfx/blur/gfx-blur-gaussian-linear.hpp"
|
|
|
|
#include "gfx/blur/gfx-blur-gaussian.hpp"
|
2019-04-02 22:16:13 +00:00
|
|
|
#include "obs/gs/gs-helper.hpp"
|
2019-02-11 02:54:16 +00:00
|
|
|
#include "obs/obs-source-tracker.hpp"
|
2021-09-07 02:22:46 +00:00
|
|
|
#include "util/util-logging.hpp"
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#define ST_PREFIX "<%s> "
|
|
|
|
#define D_LOG_ERROR(x, ...) P_LOG_ERROR(ST_PREFIX##x, __FUNCTION_SIG__, __VA_ARGS__)
|
|
|
|
#define D_LOG_WARNING(x, ...) P_LOG_WARN(ST_PREFIX##x, __FUNCTION_SIG__, __VA_ARGS__)
|
|
|
|
#define D_LOG_INFO(x, ...) P_LOG_INFO(ST_PREFIX##x, __FUNCTION_SIG__, __VA_ARGS__)
|
|
|
|
#define D_LOG_DEBUG(x, ...) P_LOG_DEBUG(ST_PREFIX##x, __FUNCTION_SIG__, __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define ST_PREFIX "<filter::blur> "
|
|
|
|
#define D_LOG_ERROR(...) P_LOG_ERROR(ST_PREFIX __VA_ARGS__)
|
|
|
|
#define D_LOG_WARNING(...) P_LOG_WARN(ST_PREFIX __VA_ARGS__)
|
|
|
|
#define D_LOG_INFO(...) P_LOG_INFO(ST_PREFIX __VA_ARGS__)
|
|
|
|
#define D_LOG_DEBUG(...) P_LOG_DEBUG(ST_PREFIX __VA_ARGS__)
|
|
|
|
#endif
|
2017-07-03 00:46:33 +00:00
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
// OBS
|
|
|
|
#ifdef _MSC_VER
|
2018-09-30 18:50:00 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4201)
|
2019-01-14 10:23:21 +00:00
|
|
|
#endif
|
|
|
|
#include <callback/signal.h>
|
|
|
|
#include <graphics/graphics.h>
|
|
|
|
#include <graphics/matrix4.h>
|
|
|
|
#include <util/platform.h>
|
|
|
|
#ifdef _MSC_VER
|
2018-09-30 18:50:00 +00:00
|
|
|
#pragma warning(pop)
|
2019-01-14 10:23:21 +00:00
|
|
|
#endif
|
2017-07-03 00:46:33 +00:00
|
|
|
|
2018-09-30 18:50:00 +00:00
|
|
|
// Translation Strings
|
2021-06-08 03:30:43 +00:00
|
|
|
#define ST_I18N "Filter.Blur"
|
|
|
|
|
|
|
|
#define ST_I18N_TYPE "Filter.Blur.Type"
|
|
|
|
#define ST_KEY_TYPE "Filter.Blur.Type"
|
|
|
|
#define ST_I18N_SUBTYPE "Filter.Blur.SubType"
|
|
|
|
#define ST_KEY_SUBTYPE "Filter.Blur.SubType"
|
|
|
|
#define ST_I18N_SIZE "Filter.Blur.Size"
|
|
|
|
#define ST_KEY_SIZE "Filter.Blur.Size"
|
|
|
|
#define ST_I18N_ANGLE "Filter.Blur.Angle"
|
|
|
|
#define ST_KEY_ANGLE "Filter.Blur.Angle"
|
2019-08-04 14:20:26 +00:00
|
|
|
#define ST_CENTER "Filter.Blur.Center"
|
2021-06-08 03:30:43 +00:00
|
|
|
#define ST_I18N_CENTER_X "Filter.Blur.Center.X"
|
|
|
|
#define ST_KEY_CENTER_X "Filter.Blur.Center.X"
|
|
|
|
#define ST_I18N_CENTER_Y "Filter.Blur.Center.Y"
|
|
|
|
#define ST_KEY_CENTER_Y "Filter.Blur.Center.Y"
|
|
|
|
#define ST_I18N_STEPSCALE "Filter.Blur.StepScale"
|
|
|
|
#define ST_KEY_STEPSCALE "Filter.Blur.StepScale"
|
|
|
|
#define ST_I18N_STEPSCALE_X "Filter.Blur.StepScale.X"
|
|
|
|
#define ST_KEY_STEPSCALE_X "Filter.Blur.StepScale.X"
|
|
|
|
#define ST_I18N_STEPSCALE_Y "Filter.Blur.StepScale.Y"
|
|
|
|
#define ST_KEY_STEPSCALE_Y "Filter.Blur.StepScale.Y"
|
|
|
|
#define ST_I18N_MASK "Filter.Blur.Mask"
|
|
|
|
#define ST_KEY_MASK "Filter.Blur.Mask"
|
|
|
|
#define ST_I18N_MASK_TYPE "Filter.Blur.Mask.Type"
|
|
|
|
#define ST_KEY_MASK_TYPE "Filter.Blur.Mask.Type"
|
|
|
|
#define ST_I18N_MASK_TYPE_REGION "Filter.Blur.Mask.Type.Region"
|
|
|
|
#define ST_I18N_MASK_TYPE_IMAGE "Filter.Blur.Mask.Type.Image"
|
|
|
|
#define ST_I18N_MASK_TYPE_SOURCE "Filter.Blur.Mask.Type.Source"
|
|
|
|
#define ST_I18N_MASK_REGION_LEFT "Filter.Blur.Mask.Region.Left"
|
|
|
|
#define ST_KEY_MASK_REGION_LEFT "Filter.Blur.Mask.Region.Left"
|
|
|
|
#define ST_I18N_MASK_REGION_RIGHT "Filter.Blur.Mask.Region.Right"
|
|
|
|
#define ST_KEY_MASK_REGION_RIGHT "Filter.Blur.Mask.Region.Right"
|
|
|
|
#define ST_I18N_MASK_REGION_TOP "Filter.Blur.Mask.Region.Top"
|
|
|
|
#define ST_KEY_MASK_REGION_TOP "Filter.Blur.Mask.Region.Top"
|
|
|
|
#define ST_I18N_MASK_REGION_BOTTOM "Filter.Blur.Mask.Region.Bottom"
|
|
|
|
#define ST_KEY_MASK_REGION_BOTTOM "Filter.Blur.Mask.Region.Bottom"
|
|
|
|
#define ST_I18N_MASK_REGION_FEATHER "Filter.Blur.Mask.Region.Feather"
|
|
|
|
#define ST_KEY_MASK_REGION_FEATHER "Filter.Blur.Mask.Region.Feather"
|
|
|
|
#define ST_I18N_MASK_REGION_FEATHER_SHIFT "Filter.Blur.Mask.Region.Feather.Shift"
|
|
|
|
#define ST_KEY_MASK_REGION_FEATHER_SHIFT "Filter.Blur.Mask.Region.Feather.Shift"
|
|
|
|
#define ST_I18N_MASK_REGION_INVERT "Filter.Blur.Mask.Region.Invert"
|
|
|
|
#define ST_KEY_MASK_REGION_INVERT "Filter.Blur.Mask.Region.Invert"
|
|
|
|
#define ST_I18N_MASK_IMAGE "Filter.Blur.Mask.Image"
|
|
|
|
#define ST_KEY_MASK_IMAGE "Filter.Blur.Mask.Image"
|
|
|
|
#define ST_I18N_MASK_SOURCE "Filter.Blur.Mask.Source"
|
|
|
|
#define ST_KEY_MASK_SOURCE "Filter.Blur.Mask.Source"
|
|
|
|
#define ST_I18N_MASK_COLOR "Filter.Blur.Mask.Color"
|
|
|
|
#define ST_KEY_MASK_COLOR "Filter.Blur.Mask.Color"
|
|
|
|
#define ST_I18N_MASK_ALPHA "Filter.Blur.Mask.Alpha"
|
|
|
|
#define ST_KEY_MASK_ALPHA "Filter.Blur.Mask.Alpha"
|
|
|
|
#define ST_I18N_MASK_MULTIPLIER "Filter.Blur.Mask.Multiplier"
|
|
|
|
#define ST_KEY_MASK_MULTIPLIER "Filter.Blur.Mask.Multiplier"
|
2018-04-28 11:59:54 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
using namespace streamfx::filter::blur;
|
2020-01-13 21:40:15 +00:00
|
|
|
|
2021-04-16 23:43:30 +00:00
|
|
|
static constexpr std::string_view HELP_URL = "https://github.com/Xaymar/obs-StreamFX/wiki/Filter-Blur";
|
|
|
|
|
2019-04-02 01:05:05 +00:00
|
|
|
struct local_blur_type_t {
|
2021-06-08 02:47:04 +00:00
|
|
|
std::function<::streamfx::gfx::blur::ifactory&()> fn;
|
|
|
|
const char* name;
|
2019-04-02 01:05:05 +00:00
|
|
|
};
|
|
|
|
struct local_blur_subtype_t {
|
2021-06-08 02:47:04 +00:00
|
|
|
::streamfx::gfx::blur::type type;
|
|
|
|
const char* name;
|
2017-07-06 04:02:41 +00:00
|
|
|
};
|
2017-12-13 23:24:37 +00:00
|
|
|
|
2019-04-19 07:42:15 +00:00
|
|
|
static std::map<std::string, local_blur_type_t> list_of_types = {
|
2021-06-08 02:47:04 +00:00
|
|
|
{"box", {&::streamfx::gfx::blur::box_factory::get, S_BLUR_TYPE_BOX}},
|
|
|
|
{"box_linear", {&::streamfx::gfx::blur::box_linear_factory::get, S_BLUR_TYPE_BOX_LINEAR}},
|
|
|
|
{"gaussian", {&::streamfx::gfx::blur::gaussian_factory::get, S_BLUR_TYPE_GAUSSIAN}},
|
|
|
|
{"gaussian_linear", {&::streamfx::gfx::blur::gaussian_linear_factory::get, S_BLUR_TYPE_GAUSSIAN_LINEAR}},
|
|
|
|
{"dual_filtering", {&::streamfx::gfx::blur::dual_filtering_factory::get, S_BLUR_TYPE_DUALFILTERING}},
|
2019-04-02 01:05:05 +00:00
|
|
|
};
|
2019-04-19 07:42:15 +00:00
|
|
|
static std::map<std::string, local_blur_subtype_t> list_of_subtypes = {
|
2021-06-08 02:47:04 +00:00
|
|
|
{"area", {::streamfx::gfx::blur::type::Area, S_BLUR_SUBTYPE_AREA}},
|
|
|
|
{"directional", {::streamfx::gfx::blur::type::Directional, S_BLUR_SUBTYPE_DIRECTIONAL}},
|
|
|
|
{"rotational", {::streamfx::gfx::blur::type::Rotational, S_BLUR_SUBTYPE_ROTATIONAL}},
|
|
|
|
{"zoom", {::streamfx::gfx::blur::type::Zoom, S_BLUR_SUBTYPE_ZOOM}},
|
2019-04-02 01:05:05 +00:00
|
|
|
};
|
2017-07-18 14:47:29 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
blur_instance::blur_instance(obs_data_t* settings, obs_source_t* self)
|
2019-12-03 19:37:57 +00:00
|
|
|
: obs::source_instance(settings, self), _source_rendered(false), _output_rendered(false)
|
2019-01-25 16:54:18 +00:00
|
|
|
{
|
2019-04-02 01:05:05 +00:00
|
|
|
{
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gctx = streamfx::obs::gs::context();
|
2017-07-03 00:46:33 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
// Create RenderTargets
|
2021-06-08 02:38:24 +00:00
|
|
|
this->_source_rt = std::make_shared<streamfx::obs::gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
|
|
|
this->_output_rt = std::make_shared<streamfx::obs::gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
2019-12-03 19:37:57 +00:00
|
|
|
|
|
|
|
// Load Effects
|
|
|
|
{
|
2021-11-07 13:37:05 +00:00
|
|
|
auto file = streamfx::data_file_path("effects/mask.effect");
|
2019-12-03 19:37:57 +00:00
|
|
|
try {
|
2021-06-08 02:38:24 +00:00
|
|
|
_effect_mask = streamfx::obs::gs::effect::create(file);
|
2021-11-07 13:37:05 +00:00
|
|
|
} catch (std::exception& ex) {
|
|
|
|
DLOG_ERROR("Error loading '%s': %s", file.generic_u8string().c_str(), ex.what());
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-28 00:08:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
update(settings);
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
blur_instance::~blur_instance() {}
|
2019-01-28 00:08:13 +00:00
|
|
|
|
2021-06-08 02:38:24 +00:00
|
|
|
bool blur_instance::apply_mask_parameters(streamfx::obs::gs::effect effect, gs_texture_t* original_texture,
|
2020-04-05 16:52:06 +00:00
|
|
|
gs_texture_t* blurred_texture)
|
2019-01-25 16:54:18 +00:00
|
|
|
{
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("image_orig")) {
|
|
|
|
effect.get_parameter("image_orig").set_texture(original_texture);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("image_blur")) {
|
|
|
|
effect.get_parameter("image_blur").set_texture(blurred_texture);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2018-12-23 18:54:57 +00:00
|
|
|
|
2019-01-25 16:54:18 +00:00
|
|
|
// Region
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_mask.type == mask_type::Region) {
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_region_left")) {
|
|
|
|
effect.get_parameter("mask_region_left").set_float(_mask.region.left);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_region_right")) {
|
|
|
|
effect.get_parameter("mask_region_right").set_float(_mask.region.right);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_region_top")) {
|
|
|
|
effect.get_parameter("mask_region_top").set_float(_mask.region.top);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_region_bottom")) {
|
|
|
|
effect.get_parameter("mask_region_bottom").set_float(_mask.region.bottom);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_region_feather")) {
|
|
|
|
effect.get_parameter("mask_region_feather").set_float(_mask.region.feather);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_region_feather_shift")) {
|
|
|
|
effect.get_parameter("mask_region_feather_shift").set_float(_mask.region.feather_shift);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-23 18:54:57 +00:00
|
|
|
|
2019-01-25 16:54:18 +00:00
|
|
|
// Image
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_mask.type == mask_type::Image) {
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_image")) {
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_mask.image.texture) {
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("mask_image").set_texture(_mask.image.texture);
|
2018-12-23 18:54:57 +00:00
|
|
|
} else {
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("mask_image").set_texture(nullptr);
|
2018-12-23 18:54:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2018-12-23 18:54:57 +00:00
|
|
|
|
2019-01-25 16:54:18 +00:00
|
|
|
// Source
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_mask.type == mask_type::Source) {
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_image")) {
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_mask.source.texture) {
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("mask_image").set_texture(_mask.source.texture);
|
2018-12-23 18:54:57 +00:00
|
|
|
} else {
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("mask_image").set_texture(nullptr);
|
2018-12-23 18:54:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2018-12-23 18:54:57 +00:00
|
|
|
|
2019-01-25 16:54:18 +00:00
|
|
|
// Shared
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_color")) {
|
|
|
|
effect.get_parameter("mask_color").set_float4(_mask.color.r, _mask.color.g, _mask.color.b, _mask.color.a);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2019-12-15 10:39:57 +00:00
|
|
|
if (effect.has_parameter("mask_multiplier")) {
|
|
|
|
effect.get_parameter("mask_multiplier").set_float(_mask.multiplier);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2018-12-23 17:27:24 +00:00
|
|
|
|
2019-01-25 16:54:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-12-23 17:27:24 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void blur_instance::load(obs_data_t* settings)
|
2019-12-03 19:37:57 +00:00
|
|
|
{
|
2020-04-05 04:02:03 +00:00
|
|
|
update(settings);
|
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2020-08-10 01:29:05 +00:00
|
|
|
void blur_instance::migrate(obs_data_t* settings, uint64_t version)
|
2020-04-05 04:02:03 +00:00
|
|
|
{
|
2019-12-03 19:37:57 +00:00
|
|
|
// Now we use a fall-through switch to gradually upgrade each known version change.
|
|
|
|
switch (version) {
|
2020-04-05 04:02:03 +00:00
|
|
|
case 0:
|
2019-12-03 19:37:57 +00:00
|
|
|
/// Blur Type
|
|
|
|
int64_t old_blur = obs_data_get_int(settings, "Filter.Blur.Type");
|
|
|
|
if (old_blur == 0) { // Box
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_TYPE, "box");
|
2019-12-03 19:37:57 +00:00
|
|
|
} else if (old_blur == 1) { // Gaussian
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_TYPE, "gaussian");
|
2019-12-03 19:37:57 +00:00
|
|
|
} else if (old_blur == 2) { // Bilateral, no longer included.
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_TYPE, "box");
|
2019-12-03 19:37:57 +00:00
|
|
|
} else if (old_blur == 3) { // Box Linear
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_TYPE, "box_linear");
|
2019-12-03 19:37:57 +00:00
|
|
|
} else if (old_blur == 4) { // Gaussian Linear
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_TYPE, "gaussian_linear");
|
2019-12-03 19:37:57 +00:00
|
|
|
} else {
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_TYPE, "box");
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
obs_data_unset_user_value(settings, "Filter.Blur.Type");
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
/// Directional Blur
|
|
|
|
bool directional = obs_data_get_bool(settings, "Filter.Blur.Directional");
|
|
|
|
if (directional) {
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_SUBTYPE, "directional");
|
2019-12-03 19:37:57 +00:00
|
|
|
} else {
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_SUBTYPE, "area");
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
obs_data_unset_user_value(settings, "Filter.Blur.Directional");
|
|
|
|
|
|
|
|
/// Directional Blur Angle
|
|
|
|
double_t angle = obs_data_get_double(settings, "Filter.Blur.Directional.Angle");
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_double(settings, ST_KEY_ANGLE, angle);
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_data_unset_user_value(settings, "Filter.Blur.Directional.Angle");
|
2019-04-02 01:05:05 +00:00
|
|
|
}
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void blur_instance::update(obs_data_t* settings)
|
2019-12-03 19:37:57 +00:00
|
|
|
{
|
|
|
|
{ // Blur Type
|
2021-06-08 03:30:43 +00:00
|
|
|
const char* blur_type = obs_data_get_string(settings, ST_KEY_TYPE);
|
|
|
|
const char* blur_subtype = obs_data_get_string(settings, ST_KEY_SUBTYPE);
|
|
|
|
const char* last_blur_type = obs_data_get_string(settings, ST_KEY_TYPE ".last");
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
auto type_found = list_of_types.find(blur_type);
|
|
|
|
if (type_found != list_of_types.end()) {
|
|
|
|
auto subtype_found = list_of_subtypes.find(blur_subtype);
|
|
|
|
if (subtype_found != list_of_subtypes.end()) {
|
|
|
|
if ((strcmp(last_blur_type, blur_type) != 0) || (_blur->get_type() != subtype_found->second.type)) {
|
|
|
|
if (type_found->second.fn().is_type_supported(subtype_found->second.type)) {
|
|
|
|
_blur = type_found->second.fn().create(subtype_found->second.type);
|
|
|
|
}
|
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
{ // Blur Parameters
|
2021-06-08 03:30:43 +00:00
|
|
|
this->_blur_size = obs_data_get_double(settings, ST_KEY_SIZE);
|
|
|
|
this->_blur_angle = obs_data_get_double(settings, ST_KEY_ANGLE);
|
|
|
|
this->_blur_center.first = obs_data_get_double(settings, ST_KEY_CENTER_X) / 100.0;
|
|
|
|
this->_blur_center.second = obs_data_get_double(settings, ST_KEY_CENTER_Y) / 100.0;
|
2019-04-15 10:54:19 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
// Scaling
|
2021-06-08 03:30:43 +00:00
|
|
|
this->_blur_step_scaling = obs_data_get_bool(settings, ST_KEY_STEPSCALE);
|
|
|
|
this->_blur_step_scale.first = obs_data_get_double(settings, ST_KEY_STEPSCALE_X) / 100.0;
|
|
|
|
this->_blur_step_scale.second = obs_data_get_double(settings, ST_KEY_STEPSCALE_Y) / 100.0;
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
2019-04-15 10:54:19 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
{ // Masking
|
2021-06-08 03:30:43 +00:00
|
|
|
_mask.enabled = obs_data_get_bool(settings, ST_KEY_MASK);
|
2019-12-03 19:37:57 +00:00
|
|
|
if (_mask.enabled) {
|
2021-06-08 03:30:43 +00:00
|
|
|
_mask.type = static_cast<mask_type>(obs_data_get_int(settings, ST_KEY_MASK_TYPE));
|
2019-12-03 19:37:57 +00:00
|
|
|
switch (_mask.type) {
|
|
|
|
case mask_type::Region:
|
2021-06-08 03:30:43 +00:00
|
|
|
_mask.region.left = float_t(obs_data_get_double(settings, ST_KEY_MASK_REGION_LEFT) / 100.0);
|
|
|
|
_mask.region.top = float_t(obs_data_get_double(settings, ST_KEY_MASK_REGION_TOP) / 100.0);
|
|
|
|
_mask.region.right = 1.0f - float_t(obs_data_get_double(settings, ST_KEY_MASK_REGION_RIGHT) / 100.0);
|
|
|
|
_mask.region.bottom = 1.0f - float_t(obs_data_get_double(settings, ST_KEY_MASK_REGION_BOTTOM) / 100.0);
|
|
|
|
_mask.region.feather = float_t(obs_data_get_double(settings, ST_KEY_MASK_REGION_FEATHER) / 100.0);
|
2019-12-03 19:37:57 +00:00
|
|
|
_mask.region.feather_shift =
|
2021-06-08 03:30:43 +00:00
|
|
|
float_t(obs_data_get_double(settings, ST_KEY_MASK_REGION_FEATHER_SHIFT) / 100.0);
|
|
|
|
_mask.region.invert = obs_data_get_bool(settings, ST_KEY_MASK_REGION_INVERT);
|
2019-12-03 19:37:57 +00:00
|
|
|
break;
|
|
|
|
case mask_type::Image:
|
2021-06-08 03:30:43 +00:00
|
|
|
_mask.image.path = obs_data_get_string(settings, ST_KEY_MASK_IMAGE);
|
2019-12-03 19:37:57 +00:00
|
|
|
break;
|
|
|
|
case mask_type::Source:
|
2021-06-08 03:30:43 +00:00
|
|
|
_mask.source.name = obs_data_get_string(settings, ST_KEY_MASK_SOURCE);
|
2019-12-03 19:37:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((_mask.type == mask_type::Image) || (_mask.type == mask_type::Source)) {
|
2021-06-08 03:30:43 +00:00
|
|
|
uint32_t color = static_cast<uint32_t>(obs_data_get_int(settings, ST_KEY_MASK_COLOR));
|
2020-08-10 01:29:05 +00:00
|
|
|
_mask.color.r = ((color >> 0) & 0xFF) / 255.0f;
|
|
|
|
_mask.color.g = ((color >> 8) & 0xFF) / 255.0f;
|
|
|
|
_mask.color.b = ((color >> 16) & 0xFF) / 255.0f;
|
2021-06-08 03:30:43 +00:00
|
|
|
_mask.color.a = static_cast<float_t>(obs_data_get_double(settings, ST_KEY_MASK_ALPHA));
|
|
|
|
_mask.multiplier = float_t(obs_data_get_double(settings, ST_KEY_MASK_MULTIPLIER));
|
2019-04-02 01:05:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void blur_instance::video_tick(float)
|
2019-12-03 19:37:57 +00:00
|
|
|
{
|
|
|
|
// Blur
|
|
|
|
if (_blur) {
|
|
|
|
_blur->set_size(_blur_size);
|
|
|
|
if (_blur_step_scaling) {
|
|
|
|
_blur->set_step_scale(_blur_step_scale.first, _blur_step_scale.second);
|
|
|
|
} else {
|
|
|
|
_blur->set_step_scale(1.0, 1.0);
|
|
|
|
}
|
2021-06-08 02:47:04 +00:00
|
|
|
if ((_blur->get_type() == ::streamfx::gfx::blur::type::Directional)
|
|
|
|
|| (_blur->get_type() == ::streamfx::gfx::blur::type::Rotational)) {
|
|
|
|
auto obj = std::dynamic_pointer_cast<::streamfx::gfx::blur::base_angle>(_blur);
|
2019-12-03 19:37:57 +00:00
|
|
|
obj->set_angle(_blur_angle);
|
|
|
|
}
|
2021-06-08 02:47:04 +00:00
|
|
|
if ((_blur->get_type() == ::streamfx::gfx::blur::type::Zoom)
|
|
|
|
|| (_blur->get_type() == ::streamfx::gfx::blur::type::Rotational)) {
|
|
|
|
auto obj = std::dynamic_pointer_cast<::streamfx::gfx::blur::base_center>(_blur);
|
2019-12-03 19:37:57 +00:00
|
|
|
obj->set_center(_blur_center.first, _blur_center.second);
|
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
}
|
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
// Load Mask
|
|
|
|
if (_mask.type == mask_type::Image) {
|
|
|
|
if (_mask.image.path_old != _mask.image.path) {
|
|
|
|
try {
|
2021-06-08 02:38:24 +00:00
|
|
|
_mask.image.texture = std::make_shared<streamfx::obs::gs::texture>(_mask.image.path);
|
2019-12-03 19:37:57 +00:00
|
|
|
_mask.image.path_old = _mask.image.path;
|
|
|
|
} catch (...) {
|
2020-07-25 14:51:22 +00:00
|
|
|
DLOG_ERROR("<filter-blur> Instance '%s' failed to load image '%s'.", obs_source_get_name(_self),
|
2020-07-12 16:41:50 +00:00
|
|
|
_mask.image.path.c_str());
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (_mask.type == mask_type::Source) {
|
|
|
|
if (_mask.source.name_old != _mask.source.name) {
|
|
|
|
try {
|
2021-06-08 02:47:04 +00:00
|
|
|
_mask.source.source_texture = std::make_shared<streamfx::gfx::source_texture>(_mask.source.name, _self);
|
2019-12-03 19:37:57 +00:00
|
|
|
_mask.source.is_scene = (obs_scene_from_source(_mask.source.source_texture->get_object()) != nullptr);
|
|
|
|
_mask.source.name_old = _mask.source.name;
|
|
|
|
} catch (...) {
|
2020-07-25 14:51:22 +00:00
|
|
|
DLOG_ERROR("<filter-blur> Instance '%s' failed to grab source '%s'.", obs_source_get_name(_self),
|
2020-07-12 16:41:50 +00:00
|
|
|
_mask.source.name.c_str());
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
_source_rendered = false;
|
|
|
|
_output_rendered = false;
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void blur_instance::video_render(gs_effect_t* effect)
|
2019-04-02 01:05:05 +00:00
|
|
|
{
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_source_t* parent = obs_filter_get_parent(this->_self);
|
|
|
|
obs_source_t* target = obs_filter_get_target(this->_self);
|
|
|
|
gs_effect_t* defaultEffect = obs_get_base_effect(obs_base_effect::OBS_EFFECT_DEFAULT);
|
2020-08-10 01:29:05 +00:00
|
|
|
uint32_t baseW = obs_source_get_base_width(target);
|
|
|
|
uint32_t baseH = obs_source_get_base_height(target);
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
// Verify that we can actually run first.
|
|
|
|
if (!target || !parent || !this->_self || !this->_blur || (baseW == 0) || (baseH == 0)) {
|
|
|
|
obs_source_skip_video_filter(this->_self);
|
|
|
|
return;
|
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2020-04-25 23:04:04 +00:00
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::debug_marker gdmp{streamfx::obs::gs::debug_color_source, "Blur '%s'",
|
|
|
|
obs_source_get_name(_self)};
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
2020-04-25 09:37:15 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
if (!_source_rendered) {
|
|
|
|
// Source To Texture
|
|
|
|
{
|
2020-04-25 23:04:04 +00:00
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::debug_marker gdm{streamfx::obs::gs::debug_color_cache, "Cache"};
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
if (obs_source_process_filter_begin(this->_self, GS_RGBA, OBS_ALLOW_DIRECT_RENDERING)) {
|
|
|
|
{
|
|
|
|
auto op = this->_source_rt->render(baseW, baseH);
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
gs_blend_state_push();
|
|
|
|
gs_reset_blend_state();
|
|
|
|
gs_enable_blending(false);
|
|
|
|
gs_blend_function(GS_BLEND_ONE, GS_BLEND_ZERO);
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
gs_set_cull_mode(GS_NEITHER);
|
|
|
|
gs_enable_color(true, true, true, true);
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
gs_enable_depth_test(false);
|
|
|
|
gs_depth_function(GS_ALWAYS);
|
2019-01-25 16:54:18 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
gs_enable_stencil_test(false);
|
|
|
|
gs_enable_stencil_write(false);
|
|
|
|
gs_stencil_function(GS_STENCIL_BOTH, GS_ALWAYS);
|
|
|
|
gs_stencil_op(GS_STENCIL_BOTH, GS_KEEP, GS_KEEP, GS_KEEP);
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
// Orthographic Camera and clear RenderTarget.
|
2020-07-12 16:41:50 +00:00
|
|
|
gs_ortho(0, static_cast<float>(baseW), 0, static_cast<float>(baseH), -1., 1.);
|
2019-12-03 19:37:57 +00:00
|
|
|
//gs_clear(GS_CLEAR_COLOR | GS_CLEAR_DEPTH, &black, 0, 0);
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
// Render
|
|
|
|
obs_source_process_filter_end(this->_self, defaultEffect, baseW, baseH);
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
gs_blend_state_pop();
|
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
_source_texture = this->_source_rt->get_texture();
|
|
|
|
if (!_source_texture) {
|
|
|
|
obs_source_skip_video_filter(this->_self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
obs_source_skip_video_filter(this->_self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
_source_rendered = true;
|
2019-04-02 01:05:05 +00:00
|
|
|
}
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
if (!_output_rendered) {
|
2020-04-25 23:04:04 +00:00
|
|
|
{
|
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::debug_marker gdm{streamfx::obs::gs::debug_color_convert, "Blur"};
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
_blur->set_input(_source_texture);
|
|
|
|
_output_texture = _blur->render();
|
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
|
2019-01-27 23:00:45 +00:00
|
|
|
// Mask
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_mask.enabled) {
|
2020-04-25 23:04:04 +00:00
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::debug_marker gdm{streamfx::obs::gs::debug_color_convert, "Mask"};
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-27 23:00:45 +00:00
|
|
|
gs_blend_state_push();
|
|
|
|
gs_reset_blend_state();
|
|
|
|
gs_enable_color(true, true, true, true);
|
|
|
|
gs_enable_blending(false);
|
|
|
|
gs_enable_depth_test(false);
|
|
|
|
gs_enable_stencil_test(false);
|
|
|
|
gs_enable_stencil_write(false);
|
|
|
|
gs_set_cull_mode(GS_NEITHER);
|
|
|
|
gs_depth_function(GS_ALWAYS);
|
|
|
|
gs_blend_function(GS_BLEND_ONE, GS_BLEND_ZERO);
|
|
|
|
gs_stencil_function(GS_STENCIL_BOTH, GS_ALWAYS);
|
|
|
|
gs_stencil_op(GS_STENCIL_BOTH, GS_ZERO, GS_ZERO, GS_ZERO);
|
|
|
|
|
|
|
|
std::string technique = "";
|
2019-08-04 14:20:26 +00:00
|
|
|
switch (this->_mask.type) {
|
2019-12-15 10:39:57 +00:00
|
|
|
case mask_type::Region:
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_mask.region.feather > std::numeric_limits<float_t>::epsilon()) {
|
|
|
|
if (this->_mask.region.invert) {
|
2019-01-27 23:00:45 +00:00
|
|
|
technique = "RegionFeatherInverted";
|
|
|
|
} else {
|
|
|
|
technique = "RegionFeather";
|
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
} else {
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_mask.region.invert) {
|
2019-01-27 23:00:45 +00:00
|
|
|
technique = "RegionInverted";
|
|
|
|
} else {
|
|
|
|
technique = "Region";
|
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2019-01-27 23:00:45 +00:00
|
|
|
break;
|
2019-12-15 10:39:57 +00:00
|
|
|
case mask_type::Image:
|
|
|
|
case mask_type::Source:
|
2019-01-27 23:00:45 +00:00
|
|
|
technique = "Image";
|
|
|
|
break;
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2018-12-22 21:07:33 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_mask.source.source_texture) {
|
2020-08-10 01:29:05 +00:00
|
|
|
uint32_t source_width = obs_source_get_width(this->_mask.source.source_texture->get_object());
|
|
|
|
uint32_t source_height = obs_source_get_height(this->_mask.source.source_texture->get_object());
|
2018-09-30 18:50:00 +00:00
|
|
|
|
2019-01-27 23:00:45 +00:00
|
|
|
if (source_width == 0) {
|
|
|
|
source_width = baseW;
|
|
|
|
}
|
|
|
|
if (source_height == 0) {
|
|
|
|
source_height = baseH;
|
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
if (this->_mask.source.is_scene) {
|
2019-01-27 23:00:45 +00:00
|
|
|
obs_video_info ovi;
|
|
|
|
if (obs_get_video_info(&ovi)) {
|
|
|
|
source_width = ovi.base_width;
|
|
|
|
source_height = ovi.base_height;
|
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2018-09-30 18:50:00 +00:00
|
|
|
|
2020-04-25 23:04:04 +00:00
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::debug_marker gdm{streamfx::obs::gs::debug_color_capture, "Capture '%s'",
|
|
|
|
obs_source_get_name(_mask.source.source_texture->get_object())};
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
this->_mask.source.texture = this->_mask.source.source_texture->render(source_width, source_height);
|
2019-01-27 23:00:45 +00:00
|
|
|
}
|
2018-09-30 20:48:47 +00:00
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
apply_mask_parameters(_effect_mask, _source_texture->get_object(), _output_texture->get_object());
|
2018-09-30 18:50:00 +00:00
|
|
|
|
2019-01-27 23:00:45 +00:00
|
|
|
try {
|
2019-08-04 14:20:26 +00:00
|
|
|
auto op = this->_output_rt->render(baseW, baseH);
|
2020-05-02 16:36:57 +00:00
|
|
|
gs_ortho(0, 1, 0, 1, -1, 1);
|
2018-12-23 01:00:30 +00:00
|
|
|
|
2019-01-27 23:00:45 +00:00
|
|
|
// Render
|
2019-12-15 10:39:57 +00:00
|
|
|
while (gs_effect_loop(_effect_mask.get_object(), technique.c_str())) {
|
2020-05-02 16:36:57 +00:00
|
|
|
streamfx::gs_draw_fullscreen_tri();
|
2019-01-27 23:00:45 +00:00
|
|
|
}
|
2019-04-02 01:05:05 +00:00
|
|
|
} catch (const std::exception&) {
|
2019-01-27 23:00:45 +00:00
|
|
|
gs_blend_state_pop();
|
2019-08-04 14:20:26 +00:00
|
|
|
obs_source_skip_video_filter(this->_self);
|
2019-01-27 23:00:45 +00:00
|
|
|
return;
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
|
|
|
gs_blend_state_pop();
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
if (!(_output_texture = this->_output_rt->get_texture())) {
|
|
|
|
obs_source_skip_video_filter(this->_self);
|
2019-01-27 23:00:45 +00:00
|
|
|
return;
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
2018-09-30 22:54:36 +00:00
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
_output_rendered = true;
|
2018-09-30 22:54:36 +00:00
|
|
|
}
|
|
|
|
|
2019-04-02 01:05:05 +00:00
|
|
|
// Draw source
|
2019-01-25 16:54:18 +00:00
|
|
|
{
|
2020-04-25 23:04:04 +00:00
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::debug_marker gdm{streamfx::obs::gs::debug_color_render, "Render"};
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-25 16:54:18 +00:00
|
|
|
// It is important that we do not modify the blend state here, as it is set correctly by OBS
|
2019-04-02 01:05:05 +00:00
|
|
|
gs_set_cull_mode(GS_NEITHER);
|
2019-01-25 16:54:18 +00:00
|
|
|
gs_enable_color(true, true, true, true);
|
|
|
|
gs_enable_depth_test(false);
|
2019-04-02 01:05:05 +00:00
|
|
|
gs_depth_function(GS_ALWAYS);
|
2019-01-25 16:54:18 +00:00
|
|
|
gs_enable_stencil_test(false);
|
|
|
|
gs_enable_stencil_write(false);
|
|
|
|
gs_stencil_function(GS_STENCIL_BOTH, GS_ALWAYS);
|
|
|
|
gs_stencil_op(GS_STENCIL_BOTH, GS_ZERO, GS_ZERO, GS_ZERO);
|
|
|
|
|
|
|
|
gs_effect_t* finalEffect = effect ? effect : defaultEffect;
|
|
|
|
const char* technique = "Draw";
|
2018-09-30 18:50:00 +00:00
|
|
|
|
2019-01-25 16:54:18 +00:00
|
|
|
gs_eparam_t* param = gs_effect_get_param_by_name(finalEffect, "image");
|
|
|
|
if (!param) {
|
2020-07-25 14:51:22 +00:00
|
|
|
DLOG_ERROR("<filter-blur:%s> Failed to set image param.", obs_source_get_name(this->_self));
|
2019-08-04 14:20:26 +00:00
|
|
|
obs_source_skip_video_filter(_self);
|
2019-04-02 01:05:05 +00:00
|
|
|
return;
|
2019-01-25 16:54:18 +00:00
|
|
|
} else {
|
2019-08-04 14:20:26 +00:00
|
|
|
gs_effect_set_texture(param, _output_texture->get_object());
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
|
|
|
while (gs_effect_loop(finalEffect, technique)) {
|
2019-08-04 14:20:26 +00:00
|
|
|
gs_draw_sprite(_output_texture->get_object(), 0, baseW, baseH);
|
2019-01-25 16:54:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-03 00:46:33 +00:00
|
|
|
}
|
2019-12-03 19:37:57 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
blur_factory::blur_factory()
|
2019-12-03 19:37:57 +00:00
|
|
|
{
|
2021-06-08 02:16:33 +00:00
|
|
|
_info.id = S_PREFIX "filter-blur";
|
2019-12-03 19:37:57 +00:00
|
|
|
_info.type = OBS_SOURCE_TYPE_FILTER;
|
2019-12-14 20:33:06 +00:00
|
|
|
_info.output_flags = OBS_SOURCE_VIDEO;
|
|
|
|
|
2019-12-17 22:52:10 +00:00
|
|
|
set_resolution_enabled(false);
|
2019-12-14 20:33:06 +00:00
|
|
|
finish_setup();
|
2020-06-14 02:53:15 +00:00
|
|
|
register_proxy("obs-stream-effects-filter-blur");
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
blur_factory::~blur_factory() {}
|
2019-12-03 19:37:57 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
const char* blur_factory::get_name()
|
2019-12-03 19:37:57 +00:00
|
|
|
{
|
2021-06-08 03:30:43 +00:00
|
|
|
return D_TRANSLATE(ST_I18N);
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void blur_factory::get_defaults2(obs_data_t* settings)
|
2019-12-03 19:37:57 +00:00
|
|
|
{
|
|
|
|
// Type, Subtype
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_default_string(settings, ST_KEY_TYPE, "box");
|
|
|
|
obs_data_set_default_string(settings, ST_KEY_SUBTYPE, "area");
|
2019-12-03 19:37:57 +00:00
|
|
|
|
|
|
|
// Parameters
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_default_int(settings, ST_KEY_SIZE, 5);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_ANGLE, 0.);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_CENTER_X, 50.);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_CENTER_Y, 50.);
|
|
|
|
obs_data_set_default_bool(settings, ST_KEY_STEPSCALE, false);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_STEPSCALE_X, 1.);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_STEPSCALE_Y, 1.);
|
2019-12-03 19:37:57 +00:00
|
|
|
|
|
|
|
// Masking
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_default_bool(settings, ST_KEY_MASK, false);
|
|
|
|
obs_data_set_default_int(settings, ST_KEY_MASK_TYPE, static_cast<int64_t>(mask_type::Region));
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_MASK_REGION_LEFT, 0.0);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_MASK_REGION_RIGHT, 0.0);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_MASK_REGION_TOP, 0.0);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_MASK_REGION_BOTTOM, 0.0);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_MASK_REGION_FEATHER, 0.0);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_MASK_REGION_FEATHER_SHIFT, 0.0);
|
|
|
|
obs_data_set_default_bool(settings, ST_KEY_MASK_REGION_INVERT, false);
|
|
|
|
obs_data_set_default_string(settings, ST_KEY_MASK_IMAGE, streamfx::data_file_path("white.png").u8string().c_str());
|
|
|
|
obs_data_set_default_string(settings, ST_KEY_MASK_SOURCE, "");
|
|
|
|
obs_data_set_default_int(settings, ST_KEY_MASK_COLOR, 0xFFFFFFFFull);
|
|
|
|
obs_data_set_default_double(settings, ST_KEY_MASK_MULTIPLIER, 1.0);
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool modified_properties(void*, obs_properties_t* props, obs_property* prop, obs_data_t* settings) noexcept
|
|
|
|
try {
|
|
|
|
obs_property_t* p;
|
|
|
|
const char* propname = obs_property_name(prop);
|
2021-06-08 03:30:43 +00:00
|
|
|
const char* vtype = obs_data_get_string(settings, ST_KEY_TYPE);
|
|
|
|
const char* vsubtype = obs_data_get_string(settings, ST_KEY_SUBTYPE);
|
2019-12-03 19:37:57 +00:00
|
|
|
|
|
|
|
// Find new Type
|
|
|
|
auto type_found = list_of_types.find(vtype);
|
|
|
|
if (type_found == list_of_types.end()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find new Subtype
|
|
|
|
auto subtype_found = list_of_subtypes.find(vsubtype);
|
|
|
|
if (subtype_found == list_of_subtypes.end()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blur Type
|
2021-06-08 03:30:43 +00:00
|
|
|
if (strcmp(propname, ST_KEY_TYPE) == 0) {
|
|
|
|
obs_property_t* prop_subtype = obs_properties_get(props, ST_KEY_SUBTYPE);
|
2019-12-03 19:37:57 +00:00
|
|
|
|
|
|
|
/// Disable unsupported items.
|
2020-04-08 21:38:42 +00:00
|
|
|
std::size_t subvalue_idx = 0;
|
|
|
|
for (std::size_t idx = 0, edx = obs_property_list_item_count(prop_subtype); idx < edx; idx++) {
|
2019-12-03 19:37:57 +00:00
|
|
|
const char* subtype = obs_property_list_item_string(prop_subtype, idx);
|
|
|
|
bool disabled = false;
|
|
|
|
|
|
|
|
auto subtype_found_idx = list_of_subtypes.find(subtype);
|
|
|
|
if (subtype_found_idx != list_of_subtypes.end()) {
|
|
|
|
disabled = !type_found->second.fn().is_type_supported(subtype_found_idx->second.type);
|
|
|
|
} else {
|
|
|
|
disabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
obs_property_list_item_disable(prop_subtype, idx, disabled);
|
|
|
|
if (strcmp(subtype, vsubtype) == 0) {
|
|
|
|
subvalue_idx = idx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Ensure that there is a valid item selected.
|
|
|
|
if (obs_property_list_item_disabled(prop_subtype, subvalue_idx)) {
|
2020-04-08 21:38:42 +00:00
|
|
|
for (std::size_t idx = 0, edx = obs_property_list_item_count(prop_subtype); idx < edx; idx++) {
|
2019-12-03 19:37:57 +00:00
|
|
|
if (!obs_property_list_item_disabled(prop_subtype, idx)) {
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_data_set_string(settings, ST_KEY_SUBTYPE, obs_property_list_item_string(prop_subtype, idx));
|
2019-12-03 19:37:57 +00:00
|
|
|
|
|
|
|
// Find new Subtype
|
|
|
|
auto subtype_found2 = list_of_subtypes.find(vsubtype);
|
|
|
|
if (subtype_found2 == list_of_subtypes.end()) {
|
|
|
|
subtype_found = list_of_subtypes.end();
|
|
|
|
} else {
|
|
|
|
subtype_found = subtype_found2;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blur Sub-Type
|
|
|
|
{
|
2021-06-08 02:47:04 +00:00
|
|
|
bool has_angle_support = (subtype_found->second.type == ::streamfx::gfx::blur::type::Directional)
|
|
|
|
|| (subtype_found->second.type == ::streamfx::gfx::blur::type::Rotational);
|
|
|
|
bool has_center_support = (subtype_found->second.type == ::streamfx::gfx::blur::type::Rotational)
|
|
|
|
|| (subtype_found->second.type == ::streamfx::gfx::blur::type::Zoom);
|
2019-12-03 19:37:57 +00:00
|
|
|
bool has_stepscale_support = type_found->second.fn().is_step_scale_supported(subtype_found->second.type);
|
2021-06-08 03:30:43 +00:00
|
|
|
bool show_scaling = obs_data_get_bool(settings, ST_KEY_STEPSCALE) && has_stepscale_support;
|
2019-12-03 19:37:57 +00:00
|
|
|
|
|
|
|
/// Size
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_get(props, ST_KEY_SIZE);
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_property_float_set_limits(p, type_found->second.fn().get_min_size(subtype_found->second.type),
|
|
|
|
type_found->second.fn().get_max_size(subtype_found->second.type),
|
|
|
|
type_found->second.fn().get_step_size(subtype_found->second.type));
|
|
|
|
|
|
|
|
/// Angle
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_get(props, ST_KEY_ANGLE);
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_property_set_visible(p, has_angle_support);
|
|
|
|
obs_property_float_set_limits(p, type_found->second.fn().get_min_angle(subtype_found->second.type),
|
|
|
|
type_found->second.fn().get_max_angle(subtype_found->second.type),
|
|
|
|
type_found->second.fn().get_step_angle(subtype_found->second.type));
|
|
|
|
|
|
|
|
/// Center, Radius
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_CENTER_X), has_center_support);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_CENTER_Y), has_center_support);
|
2019-12-03 19:37:57 +00:00
|
|
|
|
|
|
|
/// Step Scaling
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_STEPSCALE), has_stepscale_support);
|
|
|
|
p = obs_properties_get(props, ST_KEY_STEPSCALE_X);
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_property_set_visible(p, show_scaling);
|
|
|
|
obs_property_float_set_limits(p, type_found->second.fn().get_min_step_scale_x(subtype_found->second.type),
|
|
|
|
type_found->second.fn().get_max_step_scale_x(subtype_found->second.type),
|
|
|
|
type_found->second.fn().get_step_step_scale_x(subtype_found->second.type));
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_get(props, ST_KEY_STEPSCALE_Y);
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_property_set_visible(p, show_scaling);
|
|
|
|
obs_property_float_set_limits(p, type_found->second.fn().get_min_step_scale_x(subtype_found->second.type),
|
|
|
|
type_found->second.fn().get_max_step_scale_x(subtype_found->second.type),
|
|
|
|
type_found->second.fn().get_step_step_scale_x(subtype_found->second.type));
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // Masking
|
2021-06-08 02:47:04 +00:00
|
|
|
using namespace ::streamfx::gfx::blur;
|
2021-06-08 03:30:43 +00:00
|
|
|
bool show_mask = obs_data_get_bool(settings, ST_KEY_MASK);
|
|
|
|
mask_type mtype = static_cast<mask_type>(obs_data_get_int(settings, ST_KEY_MASK_TYPE));
|
2019-12-03 19:37:57 +00:00
|
|
|
bool show_region = (mtype == mask_type::Region) && show_mask;
|
|
|
|
bool show_image = (mtype == mask_type::Image) && show_mask;
|
|
|
|
bool show_source = (mtype == mask_type::Source) && show_mask;
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_TYPE), show_mask);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_REGION_LEFT), show_region);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_REGION_TOP), show_region);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_REGION_RIGHT), show_region);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_REGION_BOTTOM), show_region);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_REGION_FEATHER), show_region);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_REGION_FEATHER_SHIFT), show_region);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_REGION_INVERT), show_region);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_IMAGE), show_image);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_SOURCE), show_source);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_COLOR), show_image || show_source);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_ALPHA), show_image || show_source);
|
|
|
|
obs_property_set_visible(obs_properties_get(props, ST_KEY_MASK_MULTIPLIER), show_image || show_source);
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} catch (...) {
|
2020-07-25 14:51:22 +00:00
|
|
|
DLOG_ERROR("Unexpected exception in modified_properties callback.");
|
2019-12-03 19:37:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
obs_properties_t* blur_factory::get_properties2(blur_instance* data)
|
2019-12-03 19:37:57 +00:00
|
|
|
{
|
|
|
|
obs_properties_t* pr = obs_properties_create();
|
|
|
|
obs_property_t* p = NULL;
|
|
|
|
|
2021-04-16 23:43:30 +00:00
|
|
|
#ifdef ENABLE_FRONTEND
|
|
|
|
{
|
|
|
|
obs_properties_add_button2(pr, S_MANUAL_OPEN, D_TRANSLATE(S_MANUAL_OPEN),
|
|
|
|
streamfx::filter::blur::blur_factory::on_manual_open, nullptr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-12-03 19:37:57 +00:00
|
|
|
// Blur Type and Sub-Type
|
|
|
|
{
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_list(pr, ST_KEY_TYPE, D_TRANSLATE(ST_I18N_TYPE), OBS_COMBO_TYPE_LIST,
|
|
|
|
OBS_COMBO_FORMAT_STRING);
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_property_set_modified_callback2(p, modified_properties, this);
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_TYPE_BOX), "box");
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_TYPE_BOX_LINEAR), "box_linear");
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_TYPE_GAUSSIAN), "gaussian");
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_TYPE_GAUSSIAN_LINEAR), "gaussian_linear");
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_TYPE_DUALFILTERING), "dual_filtering");
|
|
|
|
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_list(pr, ST_KEY_SUBTYPE, D_TRANSLATE(ST_I18N_SUBTYPE), OBS_COMBO_TYPE_LIST,
|
2019-12-03 19:37:57 +00:00
|
|
|
OBS_COMBO_FORMAT_STRING);
|
|
|
|
obs_property_set_modified_callback2(p, modified_properties, this);
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_SUBTYPE_AREA), "area");
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_SUBTYPE_DIRECTIONAL), "directional");
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_SUBTYPE_ROTATIONAL), "rotational");
|
|
|
|
obs_property_list_add_string(p, D_TRANSLATE(S_BLUR_SUBTYPE_ZOOM), "zoom");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blur Parameters
|
|
|
|
{
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_SIZE, D_TRANSLATE(ST_I18N_SIZE), 1, 32767, 1);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_ANGLE, D_TRANSLATE(ST_I18N_ANGLE), -180.0, 180.0, 0.01);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_CENTER_X, D_TRANSLATE(ST_I18N_CENTER_X), 0.00, 100.0, 0.01);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_CENTER_Y, D_TRANSLATE(ST_I18N_CENTER_Y), 0.00, 100.0, 0.01);
|
2019-12-03 19:37:57 +00:00
|
|
|
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_bool(pr, ST_KEY_STEPSCALE, D_TRANSLATE(ST_I18N_STEPSCALE));
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_property_set_modified_callback2(p, modified_properties, this);
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_STEPSCALE_X, D_TRANSLATE(ST_I18N_STEPSCALE_X), 0.0, 1000.0,
|
|
|
|
0.01);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_STEPSCALE_Y, D_TRANSLATE(ST_I18N_STEPSCALE_Y), 0.0, 1000.0,
|
|
|
|
0.01);
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Masking
|
|
|
|
{
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_bool(pr, ST_KEY_MASK, D_TRANSLATE(ST_I18N_MASK));
|
2019-12-03 19:37:57 +00:00
|
|
|
obs_property_set_modified_callback2(p, modified_properties, this);
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_list(pr, ST_KEY_MASK_TYPE, D_TRANSLATE(ST_I18N_MASK_TYPE), OBS_COMBO_TYPE_LIST,
|
2019-12-03 19:37:57 +00:00
|
|
|
OBS_COMBO_FORMAT_INT);
|
|
|
|
obs_property_set_modified_callback2(p, modified_properties, this);
|
2021-06-08 03:30:43 +00:00
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_I18N_MASK_TYPE_REGION), static_cast<int64_t>(mask_type::Region));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_I18N_MASK_TYPE_IMAGE), static_cast<int64_t>(mask_type::Image));
|
|
|
|
obs_property_list_add_int(p, D_TRANSLATE(ST_I18N_MASK_TYPE_SOURCE), static_cast<int64_t>(mask_type::Source));
|
2019-12-03 19:37:57 +00:00
|
|
|
/// Region
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_MASK_REGION_LEFT, D_TRANSLATE(ST_I18N_MASK_REGION_LEFT), 0.0,
|
|
|
|
100.0, 0.01);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_MASK_REGION_TOP, D_TRANSLATE(ST_I18N_MASK_REGION_TOP), 0.0,
|
|
|
|
100.0, 0.01);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_MASK_REGION_RIGHT, D_TRANSLATE(ST_I18N_MASK_REGION_RIGHT), 0.0,
|
|
|
|
100.0, 0.01);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_MASK_REGION_BOTTOM, D_TRANSLATE(ST_I18N_MASK_REGION_BOTTOM), 0.0,
|
|
|
|
100.0, 0.01);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_MASK_REGION_FEATHER, D_TRANSLATE(ST_I18N_MASK_REGION_FEATHER),
|
|
|
|
0.0, 50.0, 0.01);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_MASK_REGION_FEATHER_SHIFT,
|
|
|
|
D_TRANSLATE(ST_I18N_MASK_REGION_FEATHER_SHIFT), -100.0, 100.0, 0.01);
|
|
|
|
p = obs_properties_add_bool(pr, ST_KEY_MASK_REGION_INVERT, D_TRANSLATE(ST_I18N_MASK_REGION_INVERT));
|
2019-12-03 19:37:57 +00:00
|
|
|
/// Image
|
|
|
|
{
|
|
|
|
std::string filter =
|
|
|
|
translate_string("%s (%s);;* (*.*)", D_TRANSLATE(S_FILETYPE_IMAGES), S_FILEFILTERS_TEXTURE);
|
|
|
|
_translation_cache.push_back(filter);
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_path(pr, ST_KEY_MASK_IMAGE, D_TRANSLATE(ST_I18N_MASK_IMAGE), OBS_PATH_FILE,
|
2019-12-03 19:37:57 +00:00
|
|
|
_translation_cache.back().c_str(), nullptr);
|
|
|
|
}
|
|
|
|
/// Source
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_list(pr, ST_KEY_MASK_SOURCE, D_TRANSLATE(ST_I18N_MASK_SOURCE), OBS_COMBO_TYPE_LIST,
|
2019-12-03 19:37:57 +00:00
|
|
|
OBS_COMBO_FORMAT_STRING);
|
|
|
|
obs_property_list_add_string(p, "", "");
|
|
|
|
obs::source_tracker::get()->enumerate(
|
|
|
|
[&p](std::string name, obs_source_t*) {
|
|
|
|
obs_property_list_add_string(p, std::string(name + " (Source)").c_str(), name.c_str());
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
obs::source_tracker::filter_video_sources);
|
|
|
|
obs::source_tracker::get()->enumerate(
|
|
|
|
[&p](std::string name, obs_source_t*) {
|
|
|
|
obs_property_list_add_string(p, std::string(name + " (Scene)").c_str(), name.c_str());
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
obs::source_tracker::filter_scenes);
|
|
|
|
|
|
|
|
/// Shared
|
2021-06-08 03:30:43 +00:00
|
|
|
p = obs_properties_add_color(pr, ST_KEY_MASK_COLOR, D_TRANSLATE(ST_I18N_MASK_COLOR));
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_MASK_ALPHA, D_TRANSLATE(ST_I18N_MASK_ALPHA), 0.0, 100.0, 0.1);
|
|
|
|
p = obs_properties_add_float_slider(pr, ST_KEY_MASK_MULTIPLIER, D_TRANSLATE(ST_I18N_MASK_MULTIPLIER), 0.0, 10.0,
|
|
|
|
0.01);
|
2019-12-03 19:37:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return pr;
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
std::string blur_factory::translate_string(const char* format, ...)
|
2019-12-03 19:37:57 +00:00
|
|
|
{
|
|
|
|
va_list vargs;
|
|
|
|
va_start(vargs, format);
|
|
|
|
std::vector<char> buffer(2048);
|
2020-04-08 21:38:42 +00:00
|
|
|
std::size_t len = static_cast<size_t>(vsnprintf(buffer.data(), buffer.size(), format, vargs));
|
2019-12-03 19:37:57 +00:00
|
|
|
va_end(vargs);
|
|
|
|
return std::string(buffer.data(), buffer.data() + len);
|
|
|
|
}
|
2020-04-05 16:52:06 +00:00
|
|
|
|
2021-04-16 23:43:30 +00:00
|
|
|
#ifdef ENABLE_FRONTEND
|
|
|
|
bool blur_factory::on_manual_open(obs_properties_t* props, obs_property_t* property, void* data)
|
2021-09-07 02:22:46 +00:00
|
|
|
try {
|
2021-04-16 23:43:30 +00:00
|
|
|
streamfx::open_url(HELP_URL);
|
|
|
|
return false;
|
2021-09-07 02:22:46 +00:00
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
D_LOG_ERROR("Failed to open manual due to error: %s", ex.what());
|
|
|
|
return false;
|
|
|
|
} catch (...) {
|
|
|
|
D_LOG_ERROR("Failed to open manual due to unknown error.", "");
|
|
|
|
return false;
|
2021-04-16 23:43:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
std::shared_ptr<blur_factory> _filter_blur_factory_instance = nullptr;
|
|
|
|
|
|
|
|
void streamfx::filter::blur::blur_factory::initialize()
|
2021-09-07 02:22:46 +00:00
|
|
|
try {
|
2020-04-05 16:52:06 +00:00
|
|
|
if (!_filter_blur_factory_instance)
|
|
|
|
_filter_blur_factory_instance = std::make_shared<blur_factory>();
|
2021-09-07 02:22:46 +00:00
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
D_LOG_ERROR("Failed to initialize due to error: %s", ex.what());
|
|
|
|
} catch (...) {
|
|
|
|
D_LOG_ERROR("Failed to initialize due to unknown error.", "");
|
2020-04-05 16:52:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::filter::blur::blur_factory::finalize()
|
|
|
|
{
|
|
|
|
_filter_blur_factory_instance.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<blur_factory> streamfx::filter::blur::blur_factory::get()
|
|
|
|
{
|
|
|
|
return _filter_blur_factory_instance;
|
|
|
|
}
|