/* * 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 */ #include "gs-effect-pass.hpp" #include #include gs::effect_pass::effect_pass(gs_epass_t* pass, std::shared_ptr* parent) : _parent(parent) { reset(pass, [](void*) {}); } gs::effect_pass::~effect_pass() {} std::string gs::effect_pass::name() { const char* name_c = get()->name; size_t name_len = strnlen_s(name_c, 256); return name_c ? std::string(name_c, name_c + name_len) : std::string(); } size_t gs::effect_pass::count_vertex_parameters() { return static_cast(get()->vertshader_params.num); } gs::effect_parameter gs::effect_pass::get_vertex_parameter(size_t idx) { if (idx >= count_vertex_parameters()) return nullptr; return gs::effect_parameter((get()->vertshader_params.array + idx)->eparam, this); } gs::effect_parameter gs::effect_pass::get_vertex_parameter(std::string name) { for (size_t idx = 0; idx < count_vertex_parameters(); idx++) { auto ptr = get()->vertshader_params.array + idx; if (strcmp(ptr->eparam->name, name.c_str()) == 0) return gs::effect_parameter(ptr->eparam, this); } return nullptr; } bool gs::effect_pass::has_vertex_parameter(std::string name) { return (get_vertex_parameter(name) != nullptr); } bool gs::effect_pass::has_vertex_parameter(std::string name, gs::effect_parameter::type type) { if (auto el = get_vertex_parameter(name); el != nullptr) { return el.get_type() == type; } return false; } size_t gs::effect_pass::count_pixel_parameters() { return static_cast(get()->pixelshader_params.num); } gs::effect_parameter gs::effect_pass::get_pixel_parameter(size_t idx) { if (idx >= count_pixel_parameters()) return nullptr; return gs::effect_parameter((get()->pixelshader_params.array + idx)->eparam, this); } gs::effect_parameter gs::effect_pass::get_pixel_parameter(std::string name) { for (size_t idx = 0; idx < count_pixel_parameters(); idx++) { auto ptr = get()->pixelshader_params.array + idx; if (strcmp(ptr->eparam->name, name.c_str()) == 0) return gs::effect_parameter(ptr->eparam, this); } return nullptr; } bool gs::effect_pass::has_pixel_parameter(std::string name) { return (get_pixel_parameter(name) != nullptr); } bool gs::effect_pass::has_pixel_parameter(std::string name, gs::effect_parameter::type type) { if (auto el = get_pixel_parameter(name); el != nullptr) { return el.get_type() == type; } return false; }