mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
123 lines
3.1 KiB
C++
123 lines
3.1 KiB
C++
#include "headers/macro-condition-edit.hpp"
|
|
#include "headers/macro-condition-streaming.hpp"
|
|
#include "headers/utility.hpp"
|
|
#include "headers/advanced-scene-switcher.hpp"
|
|
|
|
const std::string MacroConditionStream::id = "streaming";
|
|
|
|
bool MacroConditionStream::_registered = MacroConditionFactory::Register(
|
|
MacroConditionStream::id,
|
|
{MacroConditionStream::Create, MacroConditionStreamEdit::Create,
|
|
"AdvSceneSwitcher.condition.stream"});
|
|
|
|
static std::map<StreamState, std::string> streamStates = {
|
|
{StreamState::STOP, "AdvSceneSwitcher.condition.stream.state.stop"},
|
|
{StreamState::START, "AdvSceneSwitcher.condition.stream.state.start"},
|
|
{StreamState::STARTING,
|
|
"AdvSceneSwitcher.condition.stream.state.starting"},
|
|
{StreamState::STOPPING,
|
|
"AdvSceneSwitcher.condition.stream.state.stopping"},
|
|
};
|
|
|
|
bool MacroConditionStream::CheckCondition()
|
|
{
|
|
bool stateMatch = false;
|
|
|
|
bool streamStarting = switcher->lastStreamStartingTime !=
|
|
_lastStreamStartingTime;
|
|
bool streamStopping = switcher->lastStreamStoppingTime !=
|
|
_lastStreamStoppingTime;
|
|
|
|
switch (_streamState) {
|
|
case StreamState::STOP:
|
|
stateMatch = !obs_frontend_streaming_active();
|
|
break;
|
|
case StreamState::START:
|
|
stateMatch = obs_frontend_streaming_active();
|
|
break;
|
|
case StreamState::STARTING:
|
|
stateMatch = streamStarting;
|
|
break;
|
|
case StreamState::STOPPING:
|
|
stateMatch = streamStopping;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (streamStarting) {
|
|
_lastStreamStartingTime = switcher->lastStreamStartingTime;
|
|
}
|
|
if (streamStopping) {
|
|
_lastStreamStoppingTime = switcher->lastStreamStoppingTime;
|
|
}
|
|
return stateMatch;
|
|
}
|
|
|
|
bool MacroConditionStream::Save(obs_data_t *obj)
|
|
{
|
|
MacroCondition::Save(obj);
|
|
obs_data_set_int(obj, "state", static_cast<int>(_streamState));
|
|
return true;
|
|
}
|
|
|
|
bool MacroConditionStream::Load(obs_data_t *obj)
|
|
{
|
|
MacroCondition::Load(obj);
|
|
_streamState = static_cast<StreamState>(obs_data_get_int(obj, "state"));
|
|
return true;
|
|
}
|
|
|
|
static inline void populateStateSelection(QComboBox *list)
|
|
{
|
|
for (auto entry : streamStates) {
|
|
list->addItem(obs_module_text(entry.second.c_str()));
|
|
}
|
|
}
|
|
|
|
MacroConditionStreamEdit::MacroConditionStreamEdit(
|
|
QWidget *parent, std::shared_ptr<MacroConditionStream> entryData)
|
|
: QWidget(parent)
|
|
{
|
|
_streamState = new QComboBox();
|
|
|
|
QWidget::connect(_streamState, SIGNAL(currentIndexChanged(int)), this,
|
|
SLOT(StateChanged(int)));
|
|
|
|
populateStateSelection(_streamState);
|
|
|
|
QHBoxLayout *mainLayout = new QHBoxLayout;
|
|
|
|
std::unordered_map<std::string, QWidget *> widgetPlaceholders = {
|
|
{"{{streamState}}", _streamState},
|
|
};
|
|
|
|
placeWidgets(obs_module_text("AdvSceneSwitcher.condition.stream.entry"),
|
|
mainLayout, widgetPlaceholders);
|
|
setLayout(mainLayout);
|
|
|
|
_entryData = entryData;
|
|
UpdateEntryData();
|
|
_loading = false;
|
|
}
|
|
|
|
void MacroConditionStreamEdit::StateChanged(int value)
|
|
{
|
|
if (_loading || !_entryData) {
|
|
return;
|
|
}
|
|
|
|
std::lock_guard<std::mutex> lock(switcher->m);
|
|
_entryData->_streamState = static_cast<StreamState>(value);
|
|
}
|
|
|
|
void MacroConditionStreamEdit::UpdateEntryData()
|
|
{
|
|
if (!_entryData) {
|
|
return;
|
|
}
|
|
|
|
_streamState->setCurrentIndex(
|
|
static_cast<int>(_entryData->_streamState));
|
|
}
|