mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
124 lines
3.2 KiB
C++
124 lines
3.2 KiB
C++
// Modern effects for a modern Streamer
|
|
// Copyright (C) 2019 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 <string>
|
|
#include <vector>
|
|
#include "gfx-shader-param.hpp"
|
|
#include "obs/gs/gs-effect-parameter.hpp"
|
|
|
|
namespace gfx {
|
|
namespace shader {
|
|
enum class basic_field_type {
|
|
Input,
|
|
Slider,
|
|
Enum,
|
|
};
|
|
|
|
basic_field_type get_field_type_from_string(std::string v);
|
|
|
|
struct basic_data {
|
|
union {
|
|
int32_t i32;
|
|
uint32_t ui32;
|
|
float_t f32;
|
|
};
|
|
};
|
|
|
|
struct basic_enum_data {
|
|
std::string name;
|
|
basic_data data;
|
|
};
|
|
|
|
struct basic_parameter : public parameter {
|
|
// Descriptor
|
|
basic_field_type _field_type;
|
|
std::string _suffix;
|
|
std::vector<std::string> _keys;
|
|
std::vector<std::string> _names;
|
|
|
|
protected:
|
|
// Limits
|
|
std::vector<basic_data> _min;
|
|
std::vector<basic_data> _max;
|
|
std::vector<basic_data> _step;
|
|
std::vector<basic_data> _scale;
|
|
|
|
// Enumeration Information
|
|
std::vector<basic_enum_data> _values;
|
|
|
|
public:
|
|
basic_parameter(gs::effect_parameter param, std::string prefix);
|
|
virtual ~basic_parameter();
|
|
|
|
virtual void load_parameter_data(gs::effect_parameter parameter, basic_data& data);
|
|
|
|
public:
|
|
basic_field_type get_field_type();
|
|
|
|
const std::string& get_suffix();
|
|
|
|
const std::string& get_keys(size_t idx);
|
|
|
|
const std::string& get_names(size_t idx);
|
|
};
|
|
|
|
struct bool_parameter : public basic_parameter {
|
|
// std::vector<bool> doesn't allow .data()
|
|
std::vector<uint8_t> _data;
|
|
|
|
public:
|
|
bool_parameter(gs::effect_parameter param, std::string prefix);
|
|
virtual ~bool_parameter();
|
|
|
|
virtual void defaults(obs_data_t* settings);
|
|
|
|
virtual void properties(obs_properties_t* props, obs_data_t* settings) override;
|
|
|
|
virtual void update(obs_data_t* settings) override;
|
|
|
|
virtual void assign() override;
|
|
};
|
|
|
|
struct float_parameter : public basic_parameter {
|
|
std::vector<basic_data> _data;
|
|
|
|
public:
|
|
float_parameter(gs::effect_parameter param, std::string prefix);
|
|
virtual ~float_parameter();
|
|
|
|
virtual void defaults(obs_data_t* settings);
|
|
|
|
virtual void properties(obs_properties_t* props, obs_data_t* settings) override;
|
|
|
|
virtual void update(obs_data_t* settings) override;
|
|
|
|
virtual void assign() override;
|
|
};
|
|
|
|
struct int_parameter : public basic_parameter {
|
|
std::vector<basic_data> _data;
|
|
|
|
public:
|
|
int_parameter(gs::effect_parameter param, std::string prefix);
|
|
virtual ~int_parameter();
|
|
|
|
virtual void properties(obs_properties_t* props, obs_data_t* settings) override;
|
|
};
|
|
|
|
} // namespace shader
|
|
} // namespace gfx
|