obs-StreamFX/source/gfx/shader/gfx-shader-param-basic.hpp

131 lines
3.4 KiB
C++
Raw Normal View History

2019-12-18 05:37:38 +00:00
// 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 "common.hpp"
#include <vector>
2019-12-18 05:37:38 +00:00
#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 {
2020-04-08 21:38:42 +00:00
int32_t i32;
std::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();
2020-04-08 21:38:42 +00:00
const std::string& get_keys(std::size_t idx);
2020-04-08 21:38:42 +00:00
const std::string& get_names(std::size_t idx);
};
struct bool_parameter : public basic_parameter {
// std::vector<bool> doesn't allow .data()
2020-04-08 21:38:42 +00:00
std::vector<std::uint8_t> _data;
2019-12-18 05:37:38 +00:00
public:
bool_parameter(gs::effect_parameter param, std::string prefix);
virtual ~bool_parameter();
virtual void defaults(obs_data_t* settings);
2019-12-18 05:37:38 +00:00
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;
2019-12-18 05:37:38 +00:00
public:
float_parameter(gs::effect_parameter param, std::string prefix);
virtual ~float_parameter();
virtual void defaults(obs_data_t* settings);
2019-12-18 05:37:38 +00:00
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;
2019-12-18 05:37:38 +00:00
public:
int_parameter(gs::effect_parameter param, std::string prefix);
virtual ~int_parameter();
virtual void defaults(obs_data_t* settings);
2019-12-18 05:37:38 +00:00
virtual void properties(obs_properties_t* props, obs_data_t* settings) override;
virtual void update(obs_data_t* settings) override;
virtual void assign() override;
2019-12-18 05:37:38 +00:00
};
} // namespace shader
} // namespace gfx