1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
#include "filter-selection.hpp"
#include "obs-module-helper.hpp"
#include "selection-helpers.hpp"
#include "source-helpers.hpp"
#include "ui-helpers.hpp"
#include "variable.hpp"
namespace advss {
constexpr std::string_view typeSaveName = "type";
constexpr std::string_view nameSaveName = "name";
void FilterSelection::Save(obs_data_t *obj, const char *name) const
{
auto data = obs_data_create();
obs_data_set_int(data, typeSaveName.data(), static_cast<int>(_type));
switch (_type) {
case Type::SOURCE:
obs_data_set_string(data, nameSaveName.data(),
_filter ? GetWeakSourceName(_filter).c_str()
: _filterName.c_str());
break;
case Type::VARIABLE: {
auto var = _variable.lock();
if (!var) {
break;
}
obs_data_set_string(data, nameSaveName.data(),
var->Name().c_str());
break;
}
default:
break;
}
obs_data_set_obj(obj, name, data);
obs_data_release(data);
}
void FilterSelection::Load(obs_data_t *obj, const SourceSelection &source,
const char *name)
{
auto data = obs_data_get_obj(obj, name);
_type = static_cast<Type>(obs_data_get_int(data, typeSaveName.data()));
_filterName = obs_data_get_string(data, nameSaveName.data());
switch (_type) {
case Type::SOURCE:
_filter = GetWeakFilterByName(source.GetSource(),
_filterName.c_str());
break;
case Type::VARIABLE:
_variable = GetWeakVariableByName(_filterName);
break;
default:
break;
}
if (!obs_data_has_user_value(data, typeSaveName.data())) {
LoadFallback(obj, source, name);
}
obs_data_release(data);
}
void FilterSelection::LoadFallback(obs_data_t *obj,
const SourceSelection &source,
const char *name)
{
blog(LOG_INFO, "Falling back to Load() without variable support");
_type = Type::SOURCE;
_filter = GetWeakFilterByName(source.GetSource(), name);
_filterName = obs_data_get_string(obj, name);
}
static std::vector<OBSWeakSource> getFiltersOfSource(OBSWeakSource source)
{
if (!source) {
return {};
}
auto enumFilters = [](obs_source_t *, obs_source_t *filter, void *ptr) {
auto filters =
reinterpret_cast<std::vector<OBSWeakSource> *>(ptr);
OBSWeakSourceAutoRelease weakFilter =
obs_source_get_weak_source(filter);
filters->emplace_back(weakFilter);
};
std::vector<OBSWeakSource> filters;
OBSSourceAutoRelease s = obs_weak_source_get_source(source);
obs_source_enum_filters(s, enumFilters, &filters);
return filters;
}
std::vector<OBSWeakSource>
FilterSelection::GetFilters(const SourceSelection &source) const
{
switch (_type) {
case Type::ALL:
return getFiltersOfSource(source.GetSource());
case Type::SOURCE:
return {GetWeakFilterByName(
source.GetSource(),
_filter ? GetWeakSourceName(_filter).c_str()
: _filterName.c_str())};
case Type::VARIABLE: {
auto var = _variable.lock();
if (!var) {
return {};
}
return {GetWeakFilterByName(source.GetSource(),
var->Value().c_str())};
}
default:
break;
}
return {};
}
void FilterSelection::ResolveVariables()
{
if (_type != Type::VARIABLE) {
return;
}
_type = Type::SOURCE;
auto var = _variable.lock();
if (!var) {
_filterName = "";
return;
}
_filterName = var->Value();
}
std::string FilterSelection::ToString(bool resolve) const
{
switch (_type) {
case Type::ALL:
return obs_module_text("AdvSceneSwitcher.filterSelection.all");
case Type::SOURCE:
return _filter ? GetWeakSourceName(_filter) : _filterName;
case Type::VARIABLE: {
auto var = _variable.lock();
if (!var) {
return "";
}
if (resolve) {
return var->Name() + "[" + var->Value() + "]";
}
return var->Name();
}
default:
break;
}
return "";
}
FilterSelection FilterSelectionWidget::CurrentSelection()
{
FilterSelection s;
const int idx = currentIndex();
const auto name = currentText();
if (idx == -1 || name.isEmpty()) {
return s;
}
if (idx < _allEndIdx) {
s._type = FilterSelection::Type::ALL;
} else if (idx < _variablesEndIdx) {
s._type = FilterSelection::Type::VARIABLE;
s._variable = GetWeakVariableByQString(name);
} else if (idx < _filterEndIdx) {
s._type = FilterSelection::Type::SOURCE;
s._filter = GetWeakSourceByQString(name);
s._filterName = name.toStdString();
}
return s;
}
void FilterSelectionWidget::Reset()
{
auto previousSelection = _currentSelection;
PopulateSelection();
SetFilter(_source, previousSelection);
}
static QStringList getFilterNames(OBSWeakSource weakSource)
{
if (!weakSource) {
return {};
}
QStringList list;
auto enumFilters = [](obs_source_t *, obs_source_t *filter, void *ptr) {
auto name = obs_source_get_name(filter);
QStringList *list = reinterpret_cast<QStringList *>(ptr);
*list << QString(name);
};
auto s = obs_weak_source_get_source(weakSource);
obs_source_enum_filters(s, enumFilters, &list);
obs_source_release(s);
return list;
}
void FilterSelectionWidget::PopulateSelection()
{
const QSignalBlocker b(this);
clear();
AddSelectionGroup(
this,
{obs_module_text("AdvSceneSwitcher.filterSelection.all")});
_allEndIdx = count();
if (_addVariables) {
const QStringList variables = GetVariablesNameList();
AddSelectionGroup(this, variables);
}
_variablesEndIdx = count();
AddSelectionGroup(this, getFilterNames(_source.GetSource()));
_filterEndIdx = count();
// Remove last separator
removeItem(count() - 1);
setCurrentIndex(-1);
}
FilterSelectionWidget::FilterSelectionWidget(QWidget *parent,
SourceSelectionWidget *sources,
bool addVariables)
: FilterComboBox(parent,
obs_module_text("AdvSceneSwitcher.selectFilter")),
_addVariables(addVariables)
{
setDuplicatesEnabled(true);
QWidget::connect(this, SIGNAL(currentIndexChanged(int)), this,
SLOT(SelectionChanged(int)));
QWidget::connect(sources,
SIGNAL(SourceChanged(const SourceSelection &)), this,
SLOT(SourceChanged(const SourceSelection &)));
// Variables
QWidget::connect(VariableSignalManager::Instance(),
SIGNAL(Add(const QString &)), this,
SLOT(ItemAdd(const QString &)));
QWidget::connect(VariableSignalManager::Instance(),
SIGNAL(Remove(const QString &)), this,
SLOT(ItemRemove(const QString &)));
QWidget::connect(VariableSignalManager::Instance(),
SIGNAL(Rename(const QString &, const QString &)), this,
SLOT(ItemRename(const QString &, const QString &)));
}
void FilterSelectionWidget::SetFilter(const SourceSelection &source,
const FilterSelection &filter)
{
_source = source;
PopulateSelection();
int idx = -1;
switch (filter.GetType()) {
case FilterSelection::Type::ALL:
idx = findText(obs_module_text(
"AdvSceneSwitcher.filterSelection.all"));
break;
case FilterSelection::Type::SOURCE: {
if (_filterEndIdx == -1) {
idx = -1;
break;
}
idx = FindIdxInRagne(this, _variablesEndIdx, _filterEndIdx,
filter.ToString());
break;
}
case FilterSelection::Type::VARIABLE: {
if (_variablesEndIdx == -1) {
idx = -1;
break;
}
idx = FindIdxInRagne(this, _selectIdx, _variablesEndIdx,
filter.ToString());
break;
default:
idx = -1;
break;
}
}
setCurrentIndex(idx);
_currentSelection = filter;
}
void FilterSelectionWidget::showEvent(QShowEvent *event)
{
FilterComboBox::showEvent(event);
const QSignalBlocker b(this);
Reset();
}
void FilterSelectionWidget::SourceChanged(const SourceSelection &source)
{
if (source == _source) {
return;
}
_source = source;
_currentSelection = FilterSelection();
Reset();
emit FilterChanged(_currentSelection);
}
void FilterSelectionWidget::SelectionChanged(int)
{
_currentSelection = CurrentSelection();
emit FilterChanged(_currentSelection);
}
void FilterSelectionWidget::ItemAdd(const QString &)
{
const QSignalBlocker b(this);
Reset();
}
bool FilterSelectionWidget::NameUsed(const QString &name)
{
return _currentSelection._type == FilterSelection::Type::VARIABLE &&
currentText() == name;
}
void FilterSelectionWidget::ItemRemove(const QString &name)
{
if (NameUsed(name)) {
_currentSelection = FilterSelection();
emit FilterChanged(_currentSelection);
}
const QSignalBlocker b(this);
Reset();
}
void FilterSelectionWidget::ItemRename(const QString &, const QString &)
{
const QSignalBlocker b(this);
Reset();
}
} // namespace advss
|