mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-23 02:27:29 -05:00
The "core" macro conditions and actions have been extracted out to the "base" plugin. The library now mostly contains functionality which is required across all plugins and (e.g. definitions for macro segments). The goal is to reduce the complexity and cross-dependencies and group the source files in a better way. This should relsove the "library limit of 65535 objects exceeded" build issue occuring in some Windows build environments.
65 lines
1.5 KiB
C++
65 lines
1.5 KiB
C++
#pragma once
|
|
#include "export-symbol-helper.hpp"
|
|
|
|
#include <atomic>
|
|
#include <condition_variable>
|
|
#include <deque>
|
|
#include <optional>
|
|
#include <string_view>
|
|
#include <thread>
|
|
|
|
struct obs_data;
|
|
typedef struct obs_data obs_data_t;
|
|
|
|
namespace advss {
|
|
|
|
class Macro;
|
|
class MacroAction;
|
|
class MacroCondition;
|
|
|
|
EXPORT std::deque<std::shared_ptr<Macro>> &GetMacros();
|
|
|
|
EXPORT std::optional<std::deque<std::shared_ptr<MacroAction>>>
|
|
GetMacroActions(Macro *);
|
|
EXPORT std::optional<std::deque<std::shared_ptr<MacroCondition>>>
|
|
GetMacroConditions(Macro *);
|
|
|
|
std::string_view GetSceneSwitchActionId();
|
|
|
|
constexpr auto macro_func = 10;
|
|
|
|
EXPORT std::condition_variable &GetMacroWaitCV();
|
|
EXPORT std::condition_variable &GetMacroTransitionCV();
|
|
|
|
EXPORT std::atomic_bool &MacroWaitShouldAbort();
|
|
EXPORT void SetMacroAbortWait(bool);
|
|
|
|
EXPORT bool ShutdownCheckIsNecessary();
|
|
EXPORT std::atomic_int &GetShutdownConditionCount();
|
|
|
|
EXPORT void SetMacroSwitchedScene(bool value);
|
|
EXPORT bool MacroSwitchedScene();
|
|
|
|
EXPORT std::string GetMacroName(Macro *);
|
|
|
|
EXPORT int64_t MillisecondsSinceMacroConditionCheck(Macro *);
|
|
|
|
EXPORT bool MacroIsStopped(Macro *);
|
|
EXPORT bool MacroIsPaused(Macro *);
|
|
|
|
EXPORT void AddMacroHelperThread(Macro *, std::thread &&);
|
|
|
|
EXPORT bool CheckMacros();
|
|
|
|
EXPORT bool RunMacroActions(Macro *);
|
|
EXPORT bool RunMacros();
|
|
|
|
EXPORT void LoadMacros(obs_data_t *obj);
|
|
EXPORT void SaveMacros(obs_data_t *obj);
|
|
|
|
EXPORT void InvalidateMacroTempVarValues();
|
|
EXPORT void ResetMacroConditionTimers(Macro *);
|
|
EXPORT void ResetMacroRunCount(Macro *);
|
|
|
|
} // namespace advss
|