Last active
December 19, 2023 18:55
-
-
Save Ryoga-exe/bea3851bbba91bfcde0e8654d68dcfb9 to your computer and use it in GitHub Desktop.
Siv3D で example, engine, dll を .gitignore に含めたとき用にセットアップする PowerShell スクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$SIV3D_VERSION = "0.6.13" | |
$resources = (Get-ChildItem -Recurse Resource.rc) | |
foreach ($resource in $resources) { | |
$directory = $resource.DirectoryName | |
Write-Host "Resource.rc Found! (${resource})" -ForegroundColor Green | |
$content = (Get-Content $resource.FullName -Raw) -replace "/\*[\s\S]*?\*/|//.*", "" | |
$m = [regex]::Matches($content, "(?<=(^|\s)Resource\()[^\(\)]+(?=\))", "Multiline") | |
foreach ($item in $m) { | |
$path = $item.Value | |
$abspath = (Join-Path -Path $directory -ChildPath $item.Value) | |
if ($path.StartsWith("engine/") -or $path.StartsWith("example/")) { | |
if (-Not(Test-Path -Path $abspath)) { | |
Write-Host "${abspath} does not exist." -ForegroundColor Red | |
Write-Host "Download..." -ForegroundColor Cyan | |
New-Item -ItemType "directory" -Path ([System.IO.Path]::GetDirectoryName($abspath)) -Force | Out-Null | |
Invoke-WebRequest -Uri "https://github.com/Siv3D/OpenSiv3D/raw/v${SIV3D_VERSION}/WindowsDesktop/App/${path}" -OutFile $abspath | Out-Null | |
} | |
} | |
} | |
$soundtouchPath = (Join-Path -Path $directory -ChildPath "dll/soundtouch/SoundTouch_x64.dll") | |
if (-Not(Test-Path -Path $soundtouchPath)) { | |
Write-Host "${soundtouchPath} does not exist." -ForegroundColor Red | |
Write-Host "Download..." -ForegroundColor Cyan | |
Invoke-WebRequest -Uri "https://github.com/Siv3D/OpenSiv3D/raw/v${SIV3D_VERSION}/WindowsDesktop/App/dll/soundtouch/SoundTouch_x64.dll" -OutFile $soundtouchPath | Out-Null | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment