mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-31 05:35:36 -05:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8174004eda |
90
.github/scripts/Package-Windows.ps1
vendored
90
.github/scripts/Package-Windows.ps1
vendored
@@ -68,53 +68,44 @@ function Package {
|
|||||||
|
|
||||||
Remove-Item @RemoveArgs
|
Remove-Item @RemoveArgs
|
||||||
|
|
||||||
$ReleasePath = "${ProjectRoot}/release/${Configuration}"
|
# Build a staging directory with two subfolders:
|
||||||
$NewBinPath = "${ReleasePath}/${ProductName}/bin/64bit"
|
# recommended/ - new layout, extract to %ProgramData%\obs-studio\
|
||||||
$NewDataPath = "${ReleasePath}/${ProductName}/data"
|
# legacy/ - old layout, extract to the OBS install directory
|
||||||
$CIWindowsDir = "${ProjectRoot}/build-aux/CI/windows"
|
$ReleasePath = "${ProjectRoot}/release/${Configuration}"
|
||||||
|
$StagingPath = "${ProjectRoot}/release/zip-staging"
|
||||||
|
$NewBinPath = "${ReleasePath}/${ProductName}/bin/64bit"
|
||||||
|
$NewDataPath = "${ReleasePath}/${ProductName}/data"
|
||||||
|
|
||||||
|
Remove-Item -Path $StagingPath -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
|
New-Item -ItemType Directory -Force -Path $StagingPath | Out-Null
|
||||||
|
Copy-Item -Path "${ProjectRoot}/build-aux/CI/windows/README.txt" -Destination "${StagingPath}/README.txt"
|
||||||
|
|
||||||
# --- Recommended zip (new layout, extract to %ProgramData%\obs-studio\) ---
|
|
||||||
Log-Group "Archiving ${ProductName} (recommended)..."
|
|
||||||
$RecStaging = "${ProjectRoot}/release/zip-staging-rec"
|
|
||||||
Remove-Item -Path $RecStaging -Recurse -Force -ErrorAction SilentlyContinue
|
|
||||||
New-Item -ItemType Directory -Force -Path $RecStaging | Out-Null
|
|
||||||
Copy-Item -Path "${CIWindowsDir}/README.txt" -Destination "${RecStaging}/README.txt"
|
|
||||||
if ( Test-Path -Path $NewBinPath ) {
|
if ( Test-Path -Path $NewBinPath ) {
|
||||||
$RecBinPath = "${RecStaging}/${ProductName}/bin/64bit"
|
$RecBinPath = "${StagingPath}/recommended/${ProductName}/bin/64bit"
|
||||||
New-Item -ItemType Directory -Force -Path $RecBinPath | Out-Null
|
$LegacyBinPath = "${StagingPath}/legacy/obs-plugins/64bit"
|
||||||
Copy-Item -Path "${NewBinPath}/*" -Destination $RecBinPath -Recurse -Force
|
New-Item -ItemType Directory -Force -Path $RecBinPath | Out-Null
|
||||||
|
New-Item -ItemType Directory -Force -Path $LegacyBinPath | Out-Null
|
||||||
|
Copy-Item -Path "${NewBinPath}/*" -Destination $RecBinPath -Recurse -Force
|
||||||
|
Copy-Item -Path "${NewBinPath}/*" -Destination $LegacyBinPath -Recurse -Force
|
||||||
}
|
}
|
||||||
if ( Test-Path -Path $NewDataPath ) {
|
if ( Test-Path -Path $NewDataPath ) {
|
||||||
$RecDataPath = "${RecStaging}/${ProductName}/data"
|
$RecDataPath = "${StagingPath}/recommended/${ProductName}/data"
|
||||||
New-Item -ItemType Directory -Force -Path $RecDataPath | Out-Null
|
$LegacyDataPath = "${StagingPath}/legacy/data/obs-plugins/${ProductName}"
|
||||||
Copy-Item -Path "${NewDataPath}/*" -Destination $RecDataPath -Recurse -Force
|
New-Item -ItemType Directory -Force -Path $RecDataPath | Out-Null
|
||||||
|
New-Item -ItemType Directory -Force -Path $LegacyDataPath | Out-Null
|
||||||
|
Copy-Item -Path "${NewDataPath}/*" -Destination $RecDataPath -Recurse -Force
|
||||||
|
Copy-Item -Path "${NewDataPath}/*" -Destination $LegacyDataPath -Recurse -Force
|
||||||
}
|
}
|
||||||
Compress-Archive -Force -Path (Get-ChildItem -Path $RecStaging) `
|
|
||||||
-CompressionLevel Optimal `
|
|
||||||
-DestinationPath "${ProjectRoot}/release/${OutputName}.zip"
|
|
||||||
Remove-Item -Path $RecStaging -Recurse -Force
|
|
||||||
Log-Group
|
|
||||||
|
|
||||||
# --- Legacy zip (old layout, extract to OBS install directory) ---
|
Log-Group "Archiving ${ProductName}..."
|
||||||
Log-Group "Archiving ${ProductName} (legacy)..."
|
$CompressArgs = @{
|
||||||
$LegStaging = "${ProjectRoot}/release/zip-staging-leg"
|
Path = (Get-ChildItem -Path $StagingPath)
|
||||||
Remove-Item -Path $LegStaging -Recurse -Force -ErrorAction SilentlyContinue
|
CompressionLevel = 'Optimal'
|
||||||
New-Item -ItemType Directory -Force -Path $LegStaging | Out-Null
|
DestinationPath = "${ProjectRoot}/release/${OutputName}.zip"
|
||||||
Copy-Item -Path "${CIWindowsDir}/README-legacy.txt" -Destination "${LegStaging}/README.txt"
|
Verbose = ($null -ne $Env:CI)
|
||||||
if ( Test-Path -Path $NewBinPath ) {
|
|
||||||
$LegBinPath = "${LegStaging}/obs-plugins/64bit"
|
|
||||||
New-Item -ItemType Directory -Force -Path $LegBinPath | Out-Null
|
|
||||||
Copy-Item -Path "${NewBinPath}/*" -Destination $LegBinPath -Recurse -Force
|
|
||||||
}
|
}
|
||||||
if ( Test-Path -Path $NewDataPath ) {
|
Compress-Archive -Force @CompressArgs
|
||||||
$LegDataPath = "${LegStaging}/data/obs-plugins/${ProductName}"
|
Remove-Item -Path $StagingPath -Recurse -Force
|
||||||
New-Item -ItemType Directory -Force -Path $LegDataPath | Out-Null
|
|
||||||
Copy-Item -Path "${NewDataPath}/*" -Destination $LegDataPath -Recurse -Force
|
|
||||||
}
|
|
||||||
Compress-Archive -Force -Path (Get-ChildItem -Path $LegStaging) `
|
|
||||||
-CompressionLevel Optimal `
|
|
||||||
-DestinationPath "${ProjectRoot}/release/${OutputName}-legacy.zip"
|
|
||||||
Remove-Item -Path $LegStaging -Recurse -Force
|
|
||||||
Log-Group
|
Log-Group
|
||||||
|
|
||||||
if ( ( $BuildInstaller ) ) {
|
if ( ( $BuildInstaller ) ) {
|
||||||
@@ -129,24 +120,7 @@ function Package {
|
|||||||
Push-Location -Stack BuildTemp
|
Push-Location -Stack BuildTemp
|
||||||
Ensure-Location -Path "${ProjectRoot}/release"
|
Ensure-Location -Path "${ProjectRoot}/release"
|
||||||
Remove-Item -Path Package -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path Package -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
|
Copy-Item -Path ${Configuration} -Destination Package -Recurse
|
||||||
# Recommended layout (for %ProgramData%\obs-studio\plugins\)
|
|
||||||
$PkgRec = "Package/recommended"
|
|
||||||
New-Item -ItemType Directory -Force -Path $PkgRec | Out-Null
|
|
||||||
Copy-Item -Path "${Configuration}/*" -Destination $PkgRec -Recurse -Force
|
|
||||||
|
|
||||||
# Legacy layout (for OBS installation directory)
|
|
||||||
if ( Test-Path "${Configuration}/${ProductName}/bin/64bit" ) {
|
|
||||||
$PkgLegBin = "Package/legacy/obs-plugins/64bit"
|
|
||||||
New-Item -ItemType Directory -Force -Path $PkgLegBin | Out-Null
|
|
||||||
Copy-Item -Path "${Configuration}/${ProductName}/bin/64bit/*" -Destination $PkgLegBin -Recurse -Force
|
|
||||||
}
|
|
||||||
if ( Test-Path "${Configuration}/${ProductName}/data" ) {
|
|
||||||
$PkgLegData = "Package/legacy/data/obs-plugins/${ProductName}"
|
|
||||||
New-Item -ItemType Directory -Force -Path $PkgLegData | Out-Null
|
|
||||||
Copy-Item -Path "${Configuration}/${ProductName}/data/*" -Destination $PkgLegData -Recurse -Force
|
|
||||||
}
|
|
||||||
|
|
||||||
Invoke-External iscc ${IsccFile} /O"${ProjectRoot}/release" /F"${OutputName}-Installer"
|
Invoke-External iscc ${IsccFile} /O"${ProjectRoot}/release" /F"${OutputName}-Installer"
|
||||||
Remove-Item -Path Package -Recurse
|
Remove-Item -Path Package -Recurse
|
||||||
Pop-Location -Stack BuildTemp
|
Pop-Location -Stack BuildTemp
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
Advanced Scene Switcher - Windows Installation (Legacy)
|
|
||||||
========================================================
|
|
||||||
|
|
||||||
For full installation instructions visit:
|
|
||||||
https://github.com/WarmUpTill/SceneSwitcher/wiki/Installation
|
|
||||||
|
|
||||||
|
|
||||||
This archive uses the legacy plugin layout for older OBS versions,
|
|
||||||
portable OBS installs, and Steam.
|
|
||||||
|
|
||||||
Extract the CONTENTS of this archive into your OBS installation directory,
|
|
||||||
typically:
|
|
||||||
|
|
||||||
C:\Program Files\obs-studio\
|
|
||||||
|
|
||||||
Merge the data\ and obs-plugins\ folders with the existing ones when prompted.
|
|
||||||
|
|
||||||
Steam users: right-click OBS in your library -> Manage -> Browse local files,
|
|
||||||
then extract the contents of this archive into that directory.
|
|
||||||
|
|
||||||
|
|
||||||
For OBS 28 and newer the recommended archive is preferred:
|
|
||||||
advanced-scene-switcher-<version>-windows-x64.zip
|
|
||||||
@@ -1,15 +1,22 @@
|
|||||||
Advanced Scene Switcher - Windows Installation
|
Advanced Scene Switcher - Windows Installation
|
||||||
===============================================
|
==============================================
|
||||||
|
|
||||||
For full installation instructions visit:
|
For full installation instructions visit:
|
||||||
https://github.com/WarmUpTill/SceneSwitcher/wiki/Installation
|
https://github.com/WarmUpTill/SceneSwitcher/wiki/Installation
|
||||||
|
|
||||||
|
|
||||||
This archive uses the recommended plugin layout for OBS 28 and newer.
|
Quick guide
|
||||||
|
-----------
|
||||||
|
|
||||||
Extract the CONTENTS of this archive into:
|
This archive contains two installation methods.
|
||||||
|
Choose ONE depending on your OBS version.
|
||||||
|
|
||||||
C:\ProgramData\obs-studio\plugins\
|
|
||||||
|
recommended\ (preferred)
|
||||||
|
---------------------------------------------
|
||||||
|
Extract the CONTENTS of this folder into:
|
||||||
|
|
||||||
|
C:\ProgramData\obs-studio\
|
||||||
|
|
||||||
Tip: press Win+R and type %ProgramData%\obs-studio\plugins to open that folder.
|
Tip: press Win+R and type %ProgramData%\obs-studio\plugins to open that folder.
|
||||||
|
|
||||||
@@ -17,5 +24,14 @@ After extracting, the path should look like:
|
|||||||
C:\ProgramData\obs-studio\plugins\advanced-scene-switcher\bin\64bit\advanced-scene-switcher.dll
|
C:\ProgramData\obs-studio\plugins\advanced-scene-switcher\bin\64bit\advanced-scene-switcher.dll
|
||||||
|
|
||||||
|
|
||||||
If the plugin does not appear in OBS, try the legacy archive instead:
|
legacy\ (older OBS versions, portable OBS installs, or if the recommended method does not work)
|
||||||
advanced-scene-switcher-<version>-windows-x64-legacy.zip
|
---------------------------------------------------------------------------
|
||||||
|
Extract the CONTENTS of this folder into your OBS installation directory,
|
||||||
|
typically:
|
||||||
|
|
||||||
|
C:\Program Files\obs-studio\
|
||||||
|
|
||||||
|
Merge the data\ and obs-plugins\ folders with the existing ones when prompted.
|
||||||
|
|
||||||
|
Steam users: right-click OBS in your library -> Manage -> Browse local files,
|
||||||
|
then extract the contents of legacy\ into that directory.
|
||||||
@@ -23,17 +23,14 @@ SolidCompression=yes
|
|||||||
DirExistsWarning=no
|
DirExistsWarning=no
|
||||||
UsePreviousAppDir=no
|
UsePreviousAppDir=no
|
||||||
SetupIconFile=installer.ico
|
SetupIconFile=installer.ico
|
||||||
UninstallDisplayIcon={code:GetUninstallIconPath}
|
UninstallDisplayIcon={app}\advanced-scene-switcher\data\res\images\logo.ico
|
||||||
DisableDirPage=no
|
DisableDirPage=no
|
||||||
|
|
||||||
[Languages]
|
[Languages]
|
||||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
|
|
||||||
[Files]
|
[Files]
|
||||||
; Recommended layout - used when installing to %ProgramData%\obs-studio\plugins\
|
Source: "..\release\Package\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||||
Source: "..\release\Package\recommended\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs; Check: IsRecommendedLayout
|
|
||||||
; Legacy layout - used when installing to the OBS installation directory
|
|
||||||
Source: "..\release\Package\legacy\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs; Check: IsLegacyLayout
|
|
||||||
Source: "..\LICENSE"; Flags: dontcopy
|
Source: "..\LICENSE"; Flags: dontcopy
|
||||||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||||||
|
|
||||||
@@ -56,54 +53,23 @@ begin
|
|||||||
);
|
);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// Returns true when the selected install directory is under %ProgramData%,
|
|
||||||
// meaning the recommended plugin layout should be used.
|
|
||||||
function IsRecommendedLayout(): Boolean;
|
|
||||||
begin
|
|
||||||
Result := Pos(LowerCase(ExpandConstant('{commonappdata}')),
|
|
||||||
LowerCase(WizardDirValue())) = 1;
|
|
||||||
end;
|
|
||||||
|
|
||||||
function IsLegacyLayout(): Boolean;
|
|
||||||
begin
|
|
||||||
Result := not IsRecommendedLayout();
|
|
||||||
end;
|
|
||||||
|
|
||||||
function GetUninstallIconPath(Param: string): string;
|
|
||||||
begin
|
|
||||||
if IsRecommendedLayout() then
|
|
||||||
Result := ExpandConstant('{app}\advanced-scene-switcher\data\res\images\logo.ico')
|
|
||||||
else
|
|
||||||
Result := ExpandConstant('{app}\data\obs-plugins\advanced-scene-switcher\res\images\logo.ico');
|
|
||||||
end;
|
|
||||||
|
|
||||||
function GetDirName(Value: string): string;
|
function GetDirName(Value: string): string;
|
||||||
var
|
|
||||||
PrevPath: string;
|
|
||||||
UninstallKey: string;
|
|
||||||
begin
|
begin
|
||||||
Result := ExpandConstant('{commonappdata}\obs-studio\plugins');
|
Result := ExpandConstant('{commonappdata}\obs-studio\plugins');
|
||||||
UninstallKey := 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' + '{' + '{#MyAppId}' + '}_is1';
|
|
||||||
if RegQueryStringValue(HKLM, UninstallKey, 'InstallLocation', PrevPath) and (PrevPath <> '') then
|
|
||||||
Result := PrevPath;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// Remove files placed by the legacy installer (obs-plugins/64bit and
|
// Remove files placed by the legacy installer (obs-plugins/64bit and
|
||||||
// data/obs-plugins layout) so the plugin is not loaded twice by OBS.
|
// data/obs-plugins layout) so the plugin is not loaded twice by OBS.
|
||||||
// Only runs when upgrading from a legacy location to the recommended one.
|
// We read InstallLocation from our own previous uninstall entry, which is
|
||||||
|
// the exact directory the old installer used regardless of OBS install path.
|
||||||
procedure RemoveLegacyFiles();
|
procedure RemoveLegacyFiles();
|
||||||
var
|
var
|
||||||
OldInstallPath: string;
|
OldInstallPath: string;
|
||||||
UninstallKey: string;
|
UninstallKey: string;
|
||||||
begin
|
begin
|
||||||
if not IsRecommendedLayout() then
|
|
||||||
Exit;
|
|
||||||
UninstallKey := 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' + '{' + '{#MyAppId}' + '}_is1';
|
UninstallKey := 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' + '{' + '{#MyAppId}' + '}_is1';
|
||||||
if not RegQueryStringValue(HKLM, UninstallKey, 'InstallLocation', OldInstallPath) then
|
if not RegQueryStringValue(HKLM, UninstallKey, 'InstallLocation', OldInstallPath) then
|
||||||
Exit;
|
Exit;
|
||||||
// Skip if the previous install was already in the recommended location
|
|
||||||
if Pos(LowerCase(ExpandConstant('{commonappdata}')), LowerCase(OldInstallPath)) = 1 then
|
|
||||||
Exit;
|
|
||||||
DeleteFile(OldInstallPath + '\obs-plugins\64bit\advanced-scene-switcher.dll');
|
DeleteFile(OldInstallPath + '\obs-plugins\64bit\advanced-scene-switcher.dll');
|
||||||
DeleteFile(OldInstallPath + '\obs-plugins\64bit\advanced-scene-switcher.pdb');
|
DeleteFile(OldInstallPath + '\obs-plugins\64bit\advanced-scene-switcher.pdb');
|
||||||
DeleteFile(OldInstallPath + '\obs-plugins\64bit\advanced-scene-switcher-lib.dll');
|
DeleteFile(OldInstallPath + '\obs-plugins\64bit\advanced-scene-switcher-lib.dll');
|
||||||
@@ -117,3 +83,4 @@ begin
|
|||||||
if CurStep = ssInstall then
|
if CurStep = ssInstall then
|
||||||
RemoveLegacyFiles();
|
RemoveLegacyFiles();
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|||||||
2
deps/cpp-httplib
vendored
2
deps/cpp-httplib
vendored
Submodule deps/cpp-httplib updated: 008e107d0f...811dd0b6f2
@@ -461,13 +461,12 @@ void SwitcherData::Stop()
|
|||||||
SetMacroAbortWait(true);
|
SetMacroAbortWait(true);
|
||||||
GetMacroWaitCV().notify_all();
|
GetMacroWaitCV().notify_all();
|
||||||
GetMacroTransitionCV().notify_all();
|
GetMacroTransitionCV().notify_all();
|
||||||
SignalStopAllMacros();
|
StopAllMacros();
|
||||||
StopAndClearAllActionQueues();
|
StopAndClearAllActionQueues();
|
||||||
CloseAllInputDialogs();
|
CloseAllInputDialogs();
|
||||||
th->wait();
|
th->wait();
|
||||||
delete th;
|
delete th;
|
||||||
th = nullptr;
|
th = nullptr;
|
||||||
WaitForAllMacros();
|
|
||||||
RunStopSteps();
|
RunStopSteps();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -76,8 +76,7 @@ EXPORT bool RunMacroElseActions(Macro *, bool forceParallel = false,
|
|||||||
bool ignorePause = false);
|
bool ignorePause = false);
|
||||||
EXPORT bool RunMacros();
|
EXPORT bool RunMacros();
|
||||||
|
|
||||||
void SignalStopAllMacros();
|
void StopAllMacros();
|
||||||
void WaitForAllMacros();
|
|
||||||
|
|
||||||
EXPORT void LoadMacros(obs_data_t *obj);
|
EXPORT void LoadMacros(obs_data_t *obj);
|
||||||
EXPORT void SaveMacros(obs_data_t *obj);
|
EXPORT void SaveMacros(obs_data_t *obj);
|
||||||
|
|||||||
@@ -74,11 +74,11 @@ void LoadMacroList(obs_data_t *obj, std::vector<MacroRef> ¯os,
|
|||||||
{
|
{
|
||||||
obs_data_array_t *array = obs_data_get_array(obj, name.c_str());
|
obs_data_array_t *array = obs_data_get_array(obj, name.c_str());
|
||||||
size_t count = obs_data_array_count(array);
|
size_t count = obs_data_array_count(array);
|
||||||
macros.reserve(macros.size() + count);
|
|
||||||
for (size_t i = 0; i < count; i++) {
|
for (size_t i = 0; i < count; i++) {
|
||||||
obs_data_t *array_obj = obs_data_array_item(array, i);
|
obs_data_t *array_obj = obs_data_array_item(array, i);
|
||||||
macros.emplace_back();
|
MacroRef ref;
|
||||||
macros.back().Load(array_obj);
|
ref.Load(array_obj);
|
||||||
|
macros.push_back(ref);
|
||||||
obs_data_release(array_obj);
|
obs_data_release(array_obj);
|
||||||
}
|
}
|
||||||
obs_data_array_release(array);
|
obs_data_array_release(array);
|
||||||
|
|||||||
@@ -395,7 +395,7 @@ void AdvSceneSwitcher::ImportMacros()
|
|||||||
std::vector<std::shared_ptr<Macro>> importedMacros;
|
std::vector<std::shared_ptr<Macro>> importedMacros;
|
||||||
auto &tempMacros = GetTemporaryMacros();
|
auto &tempMacros = GetTemporaryMacros();
|
||||||
|
|
||||||
std::unique_lock<std::mutex> lock(*GetMutex());
|
auto lock = LockContext();
|
||||||
for (size_t i = 0; i < count; i++) {
|
for (size_t i = 0; i < count; i++) {
|
||||||
tempMacros.clear();
|
tempMacros.clear();
|
||||||
|
|
||||||
@@ -405,14 +405,10 @@ void AdvSceneSwitcher::ImportMacros()
|
|||||||
macro->Load(array_obj);
|
macro->Load(array_obj);
|
||||||
RunAndClearPostLoadSteps();
|
RunAndClearPostLoadSteps();
|
||||||
|
|
||||||
if (macroNameExists(macro->Name())) {
|
if (macroNameExists(macro->Name()) &&
|
||||||
lock.unlock();
|
!ResolveMacroImportNameConflict(macro)) {
|
||||||
bool resolved = ResolveMacroImportNameConflict(macro);
|
groupSize--;
|
||||||
lock.lock();
|
continue;
|
||||||
if (!resolved) {
|
|
||||||
groupSize--;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
importedMacros.emplace_back(macro);
|
importedMacros.emplace_back(macro);
|
||||||
|
|||||||
@@ -1316,14 +1316,7 @@ bool RunMacros()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SignalStopAllMacros()
|
void StopAllMacros()
|
||||||
{
|
|
||||||
for (const auto &m : GetAllMacros()) {
|
|
||||||
m->SignalStop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void WaitForAllMacros()
|
|
||||||
{
|
{
|
||||||
for (const auto &m : GetAllMacros()) {
|
for (const auto &m : GetAllMacros()) {
|
||||||
m->Stop();
|
m->Stop();
|
||||||
|
|||||||
@@ -61,7 +61,6 @@ public:
|
|||||||
PauseStateSaveBehavior GetPauseStateSaveBehavior() const;
|
PauseStateSaveBehavior GetPauseStateSaveBehavior() const;
|
||||||
|
|
||||||
void Stop();
|
void Stop();
|
||||||
void SignalStop() { _stop = true; }
|
|
||||||
bool GetStop() const { return _stop; }
|
bool GetStop() const { return _stop; }
|
||||||
void ResetTimers();
|
void ResetTimers();
|
||||||
|
|
||||||
@@ -229,7 +228,7 @@ void LoadMacros(obs_data_t *obj);
|
|||||||
void SaveMacros(obs_data_t *obj);
|
void SaveMacros(obs_data_t *obj);
|
||||||
bool CheckMacros();
|
bool CheckMacros();
|
||||||
bool RunMacros();
|
bool RunMacros();
|
||||||
void WaitForAllMacros();
|
void StopAllMacros();
|
||||||
void InvalidateMacroTempVarValues();
|
void InvalidateMacroTempVarValues();
|
||||||
std::shared_ptr<Macro> GetMacroWithInvalidConditionInterval();
|
std::shared_ptr<Macro> GetMacroWithInvalidConditionInterval();
|
||||||
|
|
||||||
|
|||||||
@@ -262,21 +262,12 @@ std::string EventSub::AddEventSubscription(std::shared_ptr<TwitchToken> token,
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Capture the session ID and release the lock before making the HTTP
|
|
||||||
// request. Holding the mutex during a network call would block
|
|
||||||
// SubscriptionIsActive() on the condition-check thread for the entire
|
|
||||||
// duration of the request, causing visibly slow macro evaluations.
|
|
||||||
const std::string sessionID = eventSub->_sessionID;
|
|
||||||
lock.unlock();
|
|
||||||
|
|
||||||
OBSDataAutoRelease postData = copyData(subscription.data);
|
OBSDataAutoRelease postData = copyData(subscription.data);
|
||||||
setTransportData(postData.Get(), sessionID);
|
setTransportData(postData.Get(), eventSub->_sessionID);
|
||||||
auto result = SendPostRequest(*token, registerSubscriptionURL.data(),
|
auto result = SendPostRequest(*token, registerSubscriptionURL.data(),
|
||||||
registerSubscriptionPath.data(), {},
|
registerSubscriptionPath.data(), {},
|
||||||
postData.Get());
|
postData.Get());
|
||||||
|
|
||||||
lock.lock();
|
|
||||||
|
|
||||||
if (result.status != 202) {
|
if (result.status != 202) {
|
||||||
const char *error = obs_data_get_string(result.data, "error");
|
const char *error = obs_data_get_string(result.data, "error");
|
||||||
const char *message =
|
const char *message =
|
||||||
@@ -289,24 +280,6 @@ std::string EventSub::AddEventSubscription(std::shared_ptr<TwitchToken> token,
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify the session has not been replaced while the HTTP request was
|
|
||||||
// in flight (e.g. a reconnect occurred). If it was, the subscription
|
|
||||||
// we just created belongs to a dead session and must be discarded so
|
|
||||||
// the caller will retry with the new session ID.
|
|
||||||
if (eventSub->_sessionID != sessionID) {
|
|
||||||
blog(LOG_INFO,
|
|
||||||
"discarding Twitch EventSub registration - session ID "
|
|
||||||
"changed during HTTP request");
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Another thread may have registered the same subscription while the
|
|
||||||
// lock was released.
|
|
||||||
if (isAlreadySubscribed(eventSub->_activeSubscriptions, subscription)) {
|
|
||||||
eventSub->LogActiveSubscriptions();
|
|
||||||
return eventSub->_activeSubscriptions.find(subscription)->id;
|
|
||||||
}
|
|
||||||
|
|
||||||
OBSDataArrayAutoRelease replyArray =
|
OBSDataArrayAutoRelease replyArray =
|
||||||
obs_data_get_array(result.data, "data");
|
obs_data_get_array(result.data, "data");
|
||||||
OBSDataAutoRelease replyData = obs_data_array_item(replyArray, 0);
|
OBSDataAutoRelease replyData = obs_data_array_item(replyArray, 0);
|
||||||
@@ -466,10 +439,9 @@ void EventSub::OnMessage(connection_hdl, EventSubWSClient::message_ptr message)
|
|||||||
|
|
||||||
void EventSub::HandleWelcome(obs_data_t *data)
|
void EventSub::HandleWelcome(obs_data_t *data)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::mutex> lock(_subscriptionMtx);
|
|
||||||
OBSDataAutoRelease session = obs_data_get_obj(data, "session");
|
OBSDataAutoRelease session = obs_data_get_obj(data, "session");
|
||||||
_sessionID = obs_data_get_string(session, "id");
|
_sessionID = obs_data_get_string(session, "id");
|
||||||
_activeSubscriptions.clear();
|
ClearActiveSubscriptions();
|
||||||
blog(LOG_INFO, "Twitch EventSub connected");
|
blog(LOG_INFO, "Twitch EventSub connected");
|
||||||
vblog(LOG_INFO, "Twitch EventSub session id: %s", _sessionID.c_str());
|
vblog(LOG_INFO, "Twitch EventSub session id: %s", _sessionID.c_str());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -403,12 +403,11 @@ bool MacroConditionVideo::CheckBrightnessThreshold()
|
|||||||
|
|
||||||
bool MacroConditionVideo::CheckOCR()
|
bool MacroConditionVideo::CheckOCR()
|
||||||
{
|
{
|
||||||
auto *ocr = _ocrParameters.GetOCR();
|
if (!_ocrParameters.Initialized()) {
|
||||||
if (!ocr) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto text = RunOCR(ocr, _screenshotData.GetImage(),
|
auto text = RunOCR(_ocrParameters.GetOCR(), _screenshotData.GetImage(),
|
||||||
_ocrParameters.color, _ocrParameters.colorThreshold);
|
_ocrParameters.color, _ocrParameters.colorThreshold);
|
||||||
if (!text) {
|
if (!text) {
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ bool ObjDetectParameters::Save(obs_data_t *obj) const
|
|||||||
minSize.Save(data, "minSize");
|
minSize.Save(data, "minSize");
|
||||||
maxSize.Save(data, "maxSize");
|
maxSize.Save(data, "maxSize");
|
||||||
obs_data_set_obj(obj, "objectMatchData", data);
|
obs_data_set_obj(obj, "objectMatchData", data);
|
||||||
obs_data_set_int(data, "version", 2);
|
obs_data_set_int(data, "version", 1);
|
||||||
obs_data_release(data);
|
obs_data_release(data);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -121,21 +121,6 @@ bool ObjDetectParameters::Load(obs_data_t *obj)
|
|||||||
// TODO: Remove this fallback in a future version
|
// TODO: Remove this fallback in a future version
|
||||||
if (!obs_data_has_user_value(data, "version")) {
|
if (!obs_data_has_user_value(data, "version")) {
|
||||||
scaleFactor = obs_data_get_double(data, "scaleFactor");
|
scaleFactor = obs_data_get_double(data, "scaleFactor");
|
||||||
} else if (obs_data_get_int(data, "version") == 1) {
|
|
||||||
#ifdef _WIN32
|
|
||||||
// On Windows the plugin directory moved from
|
|
||||||
// "Program Files/.../data/obs-plugins/advanced-scene-switcher"
|
|
||||||
// to "ProgramData/.../plugins/advanced-scene-switcher/data",
|
|
||||||
// which invalidates previously saved default model paths.
|
|
||||||
const std::string oldPrefix =
|
|
||||||
"../../data/obs-plugins/advanced-scene-switcher/res/cascadeClassifiers/";
|
|
||||||
if (modelPath.substr(0, oldPrefix.size()) == oldPrefix) {
|
|
||||||
modelPath = std::string(obs_get_module_data_path(
|
|
||||||
obs_current_module())) +
|
|
||||||
"/res/cascadeClassifiers/" +
|
|
||||||
modelPath.substr(oldPrefix.size());
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
if (scaleFactor.IsFixedType() && !isScaleFactorValid(scaleFactor)) {
|
if (scaleFactor.IsFixedType() && !isScaleFactorValid(scaleFactor)) {
|
||||||
scaleFactor = 1.1;
|
scaleFactor = 1.1;
|
||||||
@@ -318,6 +303,9 @@ OCRParameters::OCRParameters(const OCRParameters &other)
|
|||||||
useConfig(other.useConfig),
|
useConfig(other.useConfig),
|
||||||
configFile(other.configFile)
|
configFile(other.configFile)
|
||||||
{
|
{
|
||||||
|
if (!initDone) {
|
||||||
|
Setup();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
OCRParameters &OCRParameters::operator=(const OCRParameters &other)
|
OCRParameters &OCRParameters::operator=(const OCRParameters &other)
|
||||||
@@ -331,7 +319,9 @@ OCRParameters &OCRParameters::operator=(const OCRParameters &other)
|
|||||||
languageCode = other.languageCode;
|
languageCode = other.languageCode;
|
||||||
useConfig = other.useConfig;
|
useConfig = other.useConfig;
|
||||||
configFile = other.configFile;
|
configFile = other.configFile;
|
||||||
initDone = false;
|
if (!initDone) {
|
||||||
|
Setup();
|
||||||
|
}
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -347,7 +337,7 @@ bool OCRParameters::Save(obs_data_t *obj) const
|
|||||||
SaveColor(data, "textColor", color);
|
SaveColor(data, "textColor", color);
|
||||||
colorThreshold.Save(data, "colorThreshold");
|
colorThreshold.Save(data, "colorThreshold");
|
||||||
obs_data_set_int(data, "pageSegMode", static_cast<int>(pageSegMode));
|
obs_data_set_int(data, "pageSegMode", static_cast<int>(pageSegMode));
|
||||||
obs_data_set_int(data, "version", 3);
|
obs_data_set_int(data, "version", 2);
|
||||||
obs_data_set_obj(obj, "ocrData", data);
|
obs_data_set_obj(obj, "ocrData", data);
|
||||||
obs_data_release(data);
|
obs_data_release(data);
|
||||||
return true;
|
return true;
|
||||||
@@ -366,23 +356,6 @@ bool OCRParameters::Load(obs_data_t *obj)
|
|||||||
tesseractBasePath = std::string(obs_get_module_data_path(
|
tesseractBasePath = std::string(obs_get_module_data_path(
|
||||||
obs_current_module())) +
|
obs_current_module())) +
|
||||||
"/res/ocr/";
|
"/res/ocr/";
|
||||||
} else if (obs_data_get_int(data, "version") == 2) {
|
|
||||||
#ifdef _WIN32
|
|
||||||
// On Windows the plugin directory moved from
|
|
||||||
// "Program Files/.../data/obs-plugins/advanced-scene-switcher"
|
|
||||||
// to "ProgramData/.../plugins/advanced-scene-switcher/data",
|
|
||||||
// which invalidates the previously saved default OCR path.
|
|
||||||
const std::string oldPath = tesseractBasePath;
|
|
||||||
if (oldPath ==
|
|
||||||
"../../data/obs-plugins/advanced-scene-switcher/res/ocr/" ||
|
|
||||||
oldPath ==
|
|
||||||
"../../data/obs-plugins/advanced-scene-switcher/res/ocr") {
|
|
||||||
tesseractBasePath =
|
|
||||||
std::string(obs_get_module_data_path(
|
|
||||||
obs_current_module())) +
|
|
||||||
"/res/ocr/";
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
useConfig = obs_data_get_bool(data, "useConfig");
|
useConfig = obs_data_get_bool(data, "useConfig");
|
||||||
configFile = obs_data_get_string(data, "configFile");
|
configFile = obs_data_get_string(data, "configFile");
|
||||||
@@ -407,14 +380,6 @@ void OCRParameters::SetPageMode(tesseract::PageSegMode mode)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tesseract::TessBaseAPI *OCRParameters::GetOCR()
|
|
||||||
{
|
|
||||||
if (!initDone) {
|
|
||||||
Setup();
|
|
||||||
}
|
|
||||||
return initDone ? ocr.get() : nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool OCRParameters::SetLanguageCode(const std::string &value)
|
bool OCRParameters::SetLanguageCode(const std::string &value)
|
||||||
{
|
{
|
||||||
const auto dataPath = QString::fromStdString(tesseractBasePath) + "/" +
|
const auto dataPath = QString::fromStdString(tesseractBasePath) + "/" +
|
||||||
@@ -424,7 +389,7 @@ bool OCRParameters::SetLanguageCode(const std::string &value)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
languageCode = value;
|
languageCode = value;
|
||||||
initDone = false;
|
Setup();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -443,7 +408,7 @@ bool OCRParameters::SetTesseractBasePath(const std::string &value)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
tesseractBasePath = value;
|
tesseractBasePath = value;
|
||||||
initDone = false;
|
Setup();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -455,13 +420,13 @@ std::string OCRParameters::GetTesseractBasePath() const
|
|||||||
void OCRParameters::EnableCustomConfig(bool enable)
|
void OCRParameters::EnableCustomConfig(bool enable)
|
||||||
{
|
{
|
||||||
useConfig = enable;
|
useConfig = enable;
|
||||||
initDone = false;
|
Setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
void OCRParameters::SetCustomConfigFile(const std::string &filename)
|
void OCRParameters::SetCustomConfigFile(const std::string &filename)
|
||||||
{
|
{
|
||||||
configFile = filename;
|
configFile = filename;
|
||||||
initDone = false;
|
Setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
void OCRParameters::Setup()
|
void OCRParameters::Setup()
|
||||||
|
|||||||
@@ -108,7 +108,10 @@ public:
|
|||||||
void SetCustomConfigFile(const std::string &);
|
void SetCustomConfigFile(const std::string &);
|
||||||
std::string GetCustomConfigFile() const { return configFile; }
|
std::string GetCustomConfigFile() const { return configFile; }
|
||||||
tesseract::PageSegMode GetPageMode() const { return pageSegMode; }
|
tesseract::PageSegMode GetPageMode() const { return pageSegMode; }
|
||||||
tesseract::TessBaseAPI *GetOCR();
|
tesseract::TessBaseAPI *GetOCR() const
|
||||||
|
{
|
||||||
|
return initDone ? ocr.get() : nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
StringVariable text = obs_module_text("AdvSceneSwitcher.enterText");
|
StringVariable text = obs_module_text("AdvSceneSwitcher.enterText");
|
||||||
RegexConfig regex = RegexConfig::PartialMatchRegexConfig();
|
RegexConfig regex = RegexConfig::PartialMatchRegexConfig();
|
||||||
|
|||||||
Reference in New Issue
Block a user