mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
87 lines
2.4 KiB
C++
87 lines
2.4 KiB
C++
#pragma once
|
|
#include "export-symbol-helper.hpp"
|
|
|
|
#include <QString>
|
|
|
|
#include <atomic>
|
|
#include <chrono>
|
|
#include <condition_variable>
|
|
#include <deque>
|
|
#include <optional>
|
|
#include <thread>
|
|
|
|
struct obs_data;
|
|
typedef struct obs_data obs_data_t;
|
|
|
|
namespace advss {
|
|
|
|
class Macro;
|
|
class MacroAction;
|
|
class MacroCondition;
|
|
|
|
static const int macro_func = 10;
|
|
|
|
EXPORT std::deque<std::shared_ptr<Macro>> &GetTopLevelMacros();
|
|
std::deque<std::shared_ptr<Macro>> &GetTemporaryMacros();
|
|
EXPORT std::deque<std::shared_ptr<Macro>> GetAllMacros();
|
|
|
|
Macro *GetMacroByName(const char *name);
|
|
Macro *GetMacroByQString(const QString &name);
|
|
std::weak_ptr<Macro> GetWeakMacroByName(const char *name);
|
|
|
|
EXPORT std::optional<std::deque<std::shared_ptr<MacroAction>>>
|
|
GetMacroActions(Macro *);
|
|
EXPORT std::optional<std::deque<std::shared_ptr<MacroAction>>>
|
|
GetMacroElseActions(Macro *);
|
|
EXPORT std::optional<std::deque<std::shared_ptr<MacroCondition>>>
|
|
GetMacroConditions(Macro *);
|
|
|
|
EXPORT bool IsGroupMacro(Macro *);
|
|
EXPORT std::vector<std::shared_ptr<Macro>> GetGroupMacroEntries(Macro *);
|
|
|
|
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(const Macro *);
|
|
|
|
EXPORT std::chrono::high_resolution_clock::time_point
|
|
LastMacroConditionCheckTime(const Macro *);
|
|
|
|
EXPORT bool MacroIsStopped(const Macro *);
|
|
EXPORT bool MacroIsPaused(const Macro *);
|
|
EXPORT bool
|
|
MacroWasPausedSince(const Macro *,
|
|
const std::chrono::high_resolution_clock::time_point &);
|
|
EXPORT bool MacroWasCheckedSinceLastStart(const Macro *);
|
|
|
|
EXPORT void AddMacroHelperThread(Macro *, std::thread &&);
|
|
|
|
EXPORT bool CheckMacros();
|
|
|
|
EXPORT bool RunMacroActions(Macro *);
|
|
bool RunMacroElseActions(Macro *);
|
|
EXPORT bool RunMacros();
|
|
void StopAllMacros();
|
|
|
|
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 *);
|
|
|
|
bool IsValidActionIndex(const Macro *m, const int idx);
|
|
bool IsValidElseActionIndex(const Macro *m, const int idx);
|
|
bool IsValidConditionIndex(const Macro *m, const int idx);
|
|
|
|
} // namespace advss
|