mirror of
https://github.com/MustardChef/WSABuilds.git
synced 2024-11-10 21:55:11 +01:00
65 lines
2.9 KiB
PowerShell
65 lines
2.9 KiB
PowerShell
|
# This file is part of MagiskOnWSALocal.
|
||
|
#
|
||
|
# MagiskOnWSALocal is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU Affero General Public License as
|
||
|
# published by the Free Software Foundation, either version 3 of the
|
||
|
# License, or (at your option) any later version.
|
||
|
#
|
||
|
# MagiskOnWSALocal is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU Affero General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU Affero General Public License
|
||
|
# along with MagiskOnWSALocal. If not, see <https://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
# Copyright (C) 2023 LSPosed Contributors
|
||
|
#
|
||
|
|
||
|
$Host.UI.RawUI.WindowTitle = "Merging resources...."
|
||
|
if (((Test-Path -Path $(Get-Content -Path .\filelist-pri.txt)) -eq $false).Count) {
|
||
|
Write-Error "Some files are missing in the folder. Please try to build again. Press any key to exit"
|
||
|
$null = $Host.UI.RawUI.ReadKey('NoEcho,IncludeKeyDown')
|
||
|
exit 1
|
||
|
} else {
|
||
|
New-Item -Path "." -Name "priinfo" -ItemType "directory" | Out-Null
|
||
|
Copy-Item .\resources.pri -Destination ".\pri\resources.pri" | Out-Null
|
||
|
Clear-Host
|
||
|
$AppxManifestFile = ".\AppxManifest.xml"
|
||
|
$PriItem = Get-Item ".\pri\*" -Include "*.pri"
|
||
|
Write-Output "Dumping resources...."
|
||
|
$i = 0
|
||
|
$Processes = foreach ($Item in $PriItem) {
|
||
|
Start-Process -PassThru -WindowStyle Hidden makepri.exe -Args "dump /if $($Item | Resolve-Path -Relative) /o /es .\pri\resources.pri /of .\priinfo\$($Item.Name).xml /dt detailed"
|
||
|
++$i
|
||
|
$Completed = ($i / $PriItem.count) * 100
|
||
|
Write-Progress -Activity "Dumping resources" -Status "Dumping $($Item.Name):" -PercentComplete $Completed
|
||
|
}
|
||
|
$Processes | Wait-Process
|
||
|
Write-Progress -Activity "Dumping resources" -Status "Ready" -Completed
|
||
|
Clear-Host
|
||
|
Write-Output "Creating pri from dumps...."
|
||
|
$ProcNewFromDump = Start-Process -PassThru -NoNewWindow makepri.exe -Args "new /pr .\priinfo /cf .\xml\priconfig.xml /of .\resources.pri /mn $AppxManifestFile /o"
|
||
|
$null = $ProcNewFromDump.Handle
|
||
|
$ProcNewFromDump.WaitForExit()
|
||
|
Remove-Item 'priinfo' -Recurse
|
||
|
if ($ProcNewFromDump.ExitCode -Ne 0) {
|
||
|
Write-Error "Failed to create resources from priinfos"
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
$ProjectXml = [xml](Get-Content $AppxManifestFile)
|
||
|
$ProjectResources = $ProjectXml.Package.Resources;
|
||
|
$(Get-Item .\xml\* -Exclude "priconfig.xml" -Include "*.xml") | ForEach-Object {
|
||
|
$($([xml](Get-Content $_)).Package.Resources.Resource) | ForEach-Object {
|
||
|
$ProjectResources.AppendChild($($ProjectXml.ImportNode($_, $true)))
|
||
|
}
|
||
|
}
|
||
|
$ProjectXml.Save($AppxManifestFile)
|
||
|
Remove-Item 'pri' -Recurse -Force
|
||
|
Remove-Item 'xml' -Recurse -Force
|
||
|
Remove-Item 'makepri.exe' -Force
|
||
|
Remove-Item 'filelist-pri.txt' -Force
|
||
|
Remove-Item $PSCommandPath -Force
|
||
|
exit 0
|
||
|
}
|