2017-06-28 21:21:42 +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
|
2019-01-24 22:34:43 +00:00
|
|
|
#include <memory>
|
2019-01-14 10:23:21 +00:00
|
|
|
#include <string>
|
2019-02-11 02:54:16 +00:00
|
|
|
#include "obs/gs/gs-effect.hpp"
|
2019-11-17 13:09:59 +00:00
|
|
|
#include "obs/obs-source-factory.hpp"
|
2019-01-24 22:34:43 +00:00
|
|
|
#include "plugin.hpp"
|
2017-07-03 00:43:33 +00:00
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
// OBS
|
|
|
|
#ifdef _MSC_VER
|
2018-11-07 14:24:25 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4201)
|
2019-01-14 10:23:21 +00:00
|
|
|
#endif
|
2018-04-23 15:53:27 +00:00
|
|
|
#include <obs-source.h>
|
|
|
|
#include <util/platform.h>
|
2019-01-14 10:23:21 +00:00
|
|
|
#ifdef _MSC_VER
|
2018-11-07 14:24:25 +00:00
|
|
|
#pragma warning(pop)
|
2019-01-14 10:23:21 +00:00
|
|
|
#endif
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2018-09-30 16:49:52 +00:00
|
|
|
namespace filter {
|
2019-01-25 16:54:18 +00:00
|
|
|
namespace displacement {
|
2019-11-17 13:09:59 +00:00
|
|
|
class displacement_instance : public obs::source_instance {
|
|
|
|
std::shared_ptr<gs::effect> _effect;
|
2019-01-25 16:54:18 +00:00
|
|
|
|
2019-11-17 13:09:59 +00:00
|
|
|
// Displacement Map
|
|
|
|
std::shared_ptr<gs::texture> _texture;
|
|
|
|
std::string _texture_file;
|
|
|
|
float_t _scale[2];
|
|
|
|
float_t _scale_type;
|
|
|
|
|
|
|
|
// Cache
|
|
|
|
uint32_t _width;
|
|
|
|
uint32_t _height;
|
2019-01-25 16:54:18 +00:00
|
|
|
|
|
|
|
public:
|
2019-11-17 13:09:59 +00:00
|
|
|
displacement_instance(obs_data_t*, obs_source_t*);
|
|
|
|
virtual ~displacement_instance();
|
|
|
|
|
|
|
|
virtual void load(obs_data_t* settings) override;
|
|
|
|
virtual void update(obs_data_t* settings) override;
|
|
|
|
|
|
|
|
virtual void video_tick(float_t) override;
|
|
|
|
virtual void video_render(gs_effect_t*) override;
|
|
|
|
|
|
|
|
std::string get_file();
|
2019-01-25 16:54:18 +00:00
|
|
|
};
|
|
|
|
|
2019-11-17 13:09:59 +00:00
|
|
|
class displacement_factory : public obs::source_factory<filter::displacement::displacement_factory,
|
|
|
|
filter::displacement::displacement_instance> {
|
|
|
|
static std::shared_ptr<filter::displacement::displacement_factory> factory_instance;
|
2019-01-25 16:54:18 +00:00
|
|
|
|
2019-11-17 13:09:59 +00:00
|
|
|
public: // Singleton
|
|
|
|
static void initialize()
|
|
|
|
{
|
|
|
|
factory_instance = std::make_shared<filter::displacement::displacement_factory>();
|
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
|
2019-11-17 13:09:59 +00:00
|
|
|
static void finalize()
|
|
|
|
{
|
|
|
|
factory_instance.reset();
|
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
|
2019-11-17 13:09:59 +00:00
|
|
|
static std::shared_ptr<displacement_factory> get()
|
|
|
|
{
|
|
|
|
return factory_instance;
|
|
|
|
}
|
2019-01-25 16:54:18 +00:00
|
|
|
|
|
|
|
public:
|
2019-11-17 13:09:59 +00:00
|
|
|
displacement_factory();
|
|
|
|
virtual ~displacement_factory();
|
2019-01-25 16:54:18 +00:00
|
|
|
|
2019-11-17 13:09:59 +00:00
|
|
|
virtual const char* get_name() override;
|
|
|
|
|
|
|
|
virtual void get_defaults2(obs_data_t* data) override;
|
|
|
|
|
|
|
|
virtual obs_properties_t* get_properties2(filter::displacement::displacement_instance* data) override;
|
2019-01-25 16:54:18 +00:00
|
|
|
};
|
|
|
|
} // namespace displacement
|
2018-11-07 14:24:25 +00:00
|
|
|
} // namespace filter
|