2017-11-06 11:36:01 +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-15 10:39:57 +00:00
|
|
|
#include "gfx/shader/gfx-shader.hpp"
|
2019-08-07 15:15:46 +00:00
|
|
|
#include "obs/gs/gs-rendertarget.hpp"
|
2020-03-28 17:54:56 +00:00
|
|
|
#include "obs/obs-source-factory.hpp"
|
2019-08-07 10:43:23 +00:00
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
namespace streamfx::filter::shader {
|
2020-03-28 17:54:56 +00:00
|
|
|
class shader_instance : public obs::source_instance {
|
|
|
|
std::shared_ptr<gfx::shader::shader> _fx;
|
|
|
|
std::shared_ptr<gs::rendertarget> _rt;
|
2019-08-07 10:43:23 +00:00
|
|
|
|
2020-03-28 17:54:56 +00:00
|
|
|
public:
|
|
|
|
shader_instance(obs_data_t* data, obs_source_t* self);
|
|
|
|
virtual ~shader_instance();
|
2019-08-07 10:43:23 +00:00
|
|
|
|
2020-08-10 01:29:05 +00:00
|
|
|
virtual uint32_t get_width() override;
|
|
|
|
virtual uint32_t get_height() override;
|
2017-11-06 11:36:01 +00:00
|
|
|
|
2020-03-28 17:54:56 +00:00
|
|
|
void properties(obs_properties_t* props);
|
2017-11-06 11:36:01 +00:00
|
|
|
|
2020-03-28 17:54:56 +00:00
|
|
|
virtual void load(obs_data_t* data) override;
|
2020-08-10 01:29:05 +00:00
|
|
|
virtual void migrate(obs_data_t* data, uint64_t version) override;
|
2020-03-28 17:54:56 +00:00
|
|
|
virtual void update(obs_data_t* data) override;
|
2017-11-06 11:36:01 +00:00
|
|
|
|
2020-03-28 17:54:56 +00:00
|
|
|
virtual void video_tick(float_t sec_since_last) override;
|
|
|
|
virtual void video_render(gs_effect_t* effect) override;
|
2020-07-05 21:00:09 +00:00
|
|
|
|
|
|
|
void activate() override;
|
|
|
|
void deactivate() override;
|
2020-03-28 17:54:56 +00:00
|
|
|
};
|
2019-08-07 15:37:52 +00:00
|
|
|
|
2020-03-28 17:54:56 +00:00
|
|
|
class shader_factory : public obs::source_factory<filter::shader::shader_factory, filter::shader::shader_instance> {
|
|
|
|
public:
|
|
|
|
shader_factory();
|
|
|
|
virtual ~shader_factory();
|
2018-04-09 11:28:13 +00:00
|
|
|
|
2020-03-28 17:54:56 +00:00
|
|
|
virtual const char* get_name() override;
|
2018-04-09 11:28:13 +00:00
|
|
|
|
2020-03-28 17:54:56 +00:00
|
|
|
virtual void get_defaults2(obs_data_t* data) override;
|
2018-11-07 14:24:25 +00:00
|
|
|
|
2020-03-28 17:54:56 +00:00
|
|
|
virtual obs_properties_t* get_properties2(filter::shader::shader_instance* data) override;
|
2020-04-05 16:52:06 +00:00
|
|
|
|
|
|
|
public: // Singleton
|
|
|
|
static void initialize();
|
|
|
|
|
|
|
|
static void finalize();
|
|
|
|
|
|
|
|
static std::shared_ptr<shader_factory> get();
|
2020-03-28 17:54:56 +00:00
|
|
|
};
|
2020-04-05 16:52:06 +00:00
|
|
|
} // namespace streamfx::filter::shader
|