obs-StreamFX/source/sources/source-shader.hpp

73 lines
2.3 KiB
C++
Raw Normal View History

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
*/
#pragma once
#include "common.hpp"
#include "gfx/shader/gfx-shader.hpp"
2019-08-07 16:06:48 +00:00
#include "obs/gs/gs-rendertarget.hpp"
#include "obs/obs-source-factory.hpp"
2019-08-07 16:06:48 +00:00
#include "plugin.hpp"
namespace streamfx::source::shader {
2020-01-13 21:40:15 +00:00
class shader_instance : public obs::source_instance {
2021-06-08 02:47:04 +00:00
std::shared_ptr<streamfx::gfx::shader::shader> _fx;
2019-08-07 16:06:48 +00:00
2020-01-13 21:40:15 +00:00
public:
shader_instance(obs_data_t* data, obs_source_t* self);
virtual ~shader_instance();
2019-08-07 16:06:48 +00:00
virtual uint32_t get_width() override;
virtual uint32_t get_height() override;
2019-08-07 16:06:48 +00:00
2020-01-13 21:40:15 +00:00
void properties(obs_properties_t* props);
2019-08-07 16:06:48 +00:00
2020-01-13 21:40:15 +00:00
virtual void load(obs_data_t* data) override;
virtual void update(obs_data_t* data) override;
2020-01-13 21:40:15 +00:00
virtual void video_tick(float_t sec_since_last) override;
virtual void video_render(gs_effect_t* effect) override;
void activate() override;
void deactivate() override;
2020-01-13 21:40:15 +00:00
};
2019-08-07 16:06:48 +00:00
2020-01-13 21:40:15 +00:00
class shader_factory : public obs::source_factory<source::shader::shader_factory, source::shader::shader_instance> {
public:
shader_factory();
virtual ~shader_factory();
2019-08-07 16:06:48 +00:00
2020-01-13 21:40:15 +00:00
virtual const char* get_name() override;
2019-08-07 16:06:48 +00:00
2020-01-13 21:40:15 +00:00
virtual void get_defaults2(obs_data_t* data) override;
2020-01-13 21:40:15 +00:00
virtual obs_properties_t* get_properties2(source::shader::shader_instance* data) override;
#ifdef ENABLE_FRONTEND
static bool on_manual_open(obs_properties_t* props, obs_property_t* property, void* data);
#endif
public: // Singleton
static void initialize();
static void finalize();
static std::shared_ptr<shader_factory> get();
2020-01-13 21:40:15 +00:00
};
} // namespace streamfx::source::shader