2019-08-07 16:06:48 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "source-shader.hpp"
|
|
|
|
#include "strings.hpp"
|
2020-04-05 04:13:14 +00:00
|
|
|
#include <stdexcept>
|
2019-08-07 16:06:48 +00:00
|
|
|
#include "utility.hpp"
|
|
|
|
|
|
|
|
#define ST "Source.Shader"
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
using namespace streamfx::source::shader;
|
2020-01-13 21:40:15 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
shader_instance::shader_instance(obs_data_t* data, obs_source_t* self) : obs::source_instance(data, self), _fx()
|
2019-08-07 16:06:48 +00:00
|
|
|
{
|
2020-04-05 16:52:06 +00:00
|
|
|
_fx = std::make_shared<::gfx::shader::shader>(self, ::gfx::shader::shader_mode::Source);
|
2019-08-07 16:43:34 +00:00
|
|
|
|
2019-08-07 16:06:48 +00:00
|
|
|
update(data);
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
shader_instance::~shader_instance() {}
|
2019-08-07 16:06:48 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
std::uint32_t shader_instance::get_width()
|
2019-08-07 16:06:48 +00:00
|
|
|
{
|
2019-12-18 05:38:34 +00:00
|
|
|
return _fx->width();
|
2019-08-07 16:06:48 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
std::uint32_t shader_instance::get_height()
|
2019-08-07 16:06:48 +00:00
|
|
|
{
|
2019-12-18 05:38:34 +00:00
|
|
|
return _fx->height();
|
2019-08-07 16:06:48 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void shader_instance::properties(obs_properties_t* props)
|
2019-08-07 16:06:48 +00:00
|
|
|
{
|
|
|
|
_fx->properties(props);
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void shader_instance::load(obs_data_t* data)
|
2019-08-07 18:39:55 +00:00
|
|
|
{
|
2019-12-18 05:38:34 +00:00
|
|
|
_fx->update(data);
|
2019-08-07 18:39:55 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void shader_instance::update(obs_data_t* data)
|
2019-08-07 16:06:48 +00:00
|
|
|
{
|
|
|
|
_fx->update(data);
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void shader_instance::video_tick(float_t sec_since_last)
|
2019-08-07 16:06:48 +00:00
|
|
|
{
|
2019-08-07 16:43:34 +00:00
|
|
|
if (_fx->tick(sec_since_last)) {
|
|
|
|
obs_data_t* data = obs_source_get_settings(_self);
|
2019-12-18 05:38:34 +00:00
|
|
|
_fx->update(data);
|
2019-08-07 16:43:34 +00:00
|
|
|
obs_data_release(data);
|
|
|
|
}
|
|
|
|
|
2020-03-31 22:09:21 +00:00
|
|
|
obs_video_info ovi;
|
|
|
|
obs_get_video_info(&ovi);
|
|
|
|
_fx->set_size(ovi.base_width, ovi.base_height);
|
2019-08-07 16:06:48 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void shader_instance::video_render(gs_effect_t* effect)
|
2019-08-07 16:06:48 +00:00
|
|
|
{
|
2019-12-18 05:38:34 +00:00
|
|
|
if (!_fx) {
|
2019-08-07 16:06:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-31 22:09:21 +00:00
|
|
|
_fx->prepare_render();
|
2019-12-18 05:38:34 +00:00
|
|
|
_fx->render();
|
|
|
|
}
|
2019-08-07 16:43:34 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
shader_factory::shader_factory()
|
2019-12-18 05:38:34 +00:00
|
|
|
{
|
|
|
|
_info.id = "obs-stream-effects-source-shader";
|
|
|
|
_info.type = OBS_SOURCE_TYPE_INPUT;
|
|
|
|
_info.output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW;
|
|
|
|
|
|
|
|
finish_setup();
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
shader_factory::~shader_factory() {}
|
2019-12-18 05:38:34 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
const char* shader_factory::get_name()
|
2019-12-18 05:38:34 +00:00
|
|
|
{
|
|
|
|
return D_TRANSLATE(ST);
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void shader_factory::get_defaults2(obs_data_t* data)
|
2020-03-31 20:34:22 +00:00
|
|
|
{
|
2020-04-05 16:52:06 +00:00
|
|
|
::gfx::shader::shader::defaults(data);
|
2020-03-31 20:34:22 +00:00
|
|
|
}
|
2019-12-18 05:38:34 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
obs_properties_t* shader_factory::get_properties2(shader_instance* data)
|
2019-12-18 05:38:34 +00:00
|
|
|
{
|
|
|
|
auto pr = obs_properties_create();
|
|
|
|
obs_properties_set_param(pr, data, nullptr);
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
reinterpret_cast<shader_instance*>(data)->properties(pr);
|
2019-08-07 16:06:48 +00:00
|
|
|
}
|
2019-12-18 05:38:34 +00:00
|
|
|
|
|
|
|
return pr;
|
2019-08-07 16:06:48 +00:00
|
|
|
}
|
2020-04-05 16:52:06 +00:00
|
|
|
|
|
|
|
std::shared_ptr<shader_factory> _source_shader_factory_instance = nullptr;
|
|
|
|
|
|
|
|
void streamfx::source::shader::shader_factory::initialize()
|
|
|
|
{
|
|
|
|
if (!_source_shader_factory_instance)
|
|
|
|
_source_shader_factory_instance = std::make_shared<shader_factory>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::source::shader::shader_factory::finalize()
|
|
|
|
{
|
|
|
|
_source_shader_factory_instance.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<shader_factory> streamfx::source::shader::shader_factory::get()
|
|
|
|
{
|
|
|
|
return _source_shader_factory_instance;
|
|
|
|
}
|