This commit is contained in:
2026-02-12 09:02:55 -05:00
parent c01fe187d0
commit d4114eb6c6
13 changed files with 1249 additions and 1800 deletions

View File

@@ -14,9 +14,27 @@ New-Item -ItemType Directory -Force -Path $classPatchDir | Out-Null
New-Item -ItemType Directory -Force -Path $buildDir | Out-Null
$javaExe = Join-Path $GameRoot "jre64\bin\java.exe"
$gameJar = Join-Path $GameRoot "projectzomboid.jar"
if (-not (Test-Path $javaExe)) { throw "java.exe not found at $javaExe" }
if (-not (Test-Path $gameJar)) { throw "projectzomboid.jar not found at $gameJar" }
$clientJar = Join-Path $GameRoot "projectzomboid.jar"
$dedicatedJar = Join-Path $GameRoot "java\projectzomboid.jar"
$gameJar = $null
$targetClasses = @()
if (Test-Path $clientJar) {
$gameJar = $clientJar
$targetClasses += (Join-Path $GameRoot "zombie\vehicles\BaseVehicle.class")
}
if (Test-Path $dedicatedJar) {
$gameJar = $dedicatedJar
$targetClasses += (Join-Path $GameRoot "java\zombie\vehicles\BaseVehicle.class")
}
if ($null -eq $gameJar) {
throw "projectzomboid.jar not found at either $clientJar or $dedicatedJar"
}
if ($targetClasses.Count -eq 0) {
throw "No valid BaseVehicle.class deployment targets found under $GameRoot"
}
$ecjJar = Join-Path $toolsDir "ecj.jar"
$asmJar = Join-Path $toolsDir "asm.jar"
@@ -34,12 +52,15 @@ if (-not (Test-Path $asmTreeJar)) {
$patcherSource = Join-Path $PSScriptRoot "java\BaseVehicleConstraintPatch.java"
if (-not (Test-Path $patcherSource)) { throw "Missing patcher source: $patcherSource" }
$helperSource = Join-Path $PSScriptRoot "java\LandtrainConstraintAuthHelper.java"
if (-not (Test-Path $helperSource)) { throw "Missing helper source: $helperSource" }
& $javaExe -jar $ecjJar -17 -cp "$asmJar;$asmTreeJar" -d $buildDir $patcherSource
if ($LASTEXITCODE -ne 0) { throw "Failed to compile BaseVehicleConstraintPatch.java" }
& $javaExe -jar $ecjJar -17 -cp "$asmJar;$asmTreeJar;$gameJar" -d $buildDir $patcherSource $helperSource
if ($LASTEXITCODE -ne 0) { throw "Failed to compile BaseVehicleConstraintPatch.java/LandtrainConstraintAuthHelper.java" }
$inputClass = Join-Path $classPatchDir "BaseVehicle.original.class"
$patchedClass = Join-Path $classPatchDir "BaseVehicle.patched.class"
$helperClass = Join-Path $buildDir "zombie\vehicles\LandtrainConstraintAuthHelper.class"
Add-Type -AssemblyName System.IO.Compression.FileSystem
$zip = [System.IO.Compression.ZipFile]::OpenRead($gameJar)
@@ -61,26 +82,33 @@ try {
& $javaExe -cp "$buildDir;$asmJar;$asmTreeJar" BaseVehicleConstraintPatch $inputClass $patchedClass
if ($LASTEXITCODE -ne 0) { throw "BaseVehicle class patch failed" }
if (-not (Test-Path $helperClass)) { throw "Missing compiled helper class: $helperClass" }
$targetDir = Join-Path $GameRoot "zombie\vehicles"
$targetClass = Join-Path $targetDir "BaseVehicle.class"
$backupClass = "$targetClass.landtrain.original"
foreach ($targetClass in $targetClasses | Select-Object -Unique) {
$targetDir = Split-Path -Parent $targetClass
$backupClass = "$targetClass.landtrain.original"
$targetHelperClass = Join-Path $targetDir "LandtrainConstraintAuthHelper.class"
New-Item -ItemType Directory -Force -Path $targetDir | Out-Null
if (-not (Test-Path $backupClass)) {
if (Test-Path $targetClass) {
Copy-Item $targetClass $backupClass -Force
} else {
Copy-Item $inputClass $backupClass -Force
New-Item -ItemType Directory -Force -Path $targetDir | Out-Null
if (-not (Test-Path $backupClass)) {
if (Test-Path $targetClass) {
Copy-Item $targetClass $backupClass -Force
} else {
Copy-Item $inputClass $backupClass -Force
}
}
Copy-Item $patchedClass $targetClass -Force
Copy-Item $helperClass $targetHelperClass -Force
Write-Output "Patched BaseVehicle.class deployed to $targetClass"
Write-Output "Deployed LandtrainConstraintAuthHelper.class to $targetHelperClass"
Write-Output "Backup stored at $backupClass"
}
Copy-Item $patchedClass $targetClass -Force
Write-Output "Patched BaseVehicle.class deployed to $targetClass"
Write-Output "Backup stored at $backupClass"
$distDir = Join-Path $repoRoot "zombie\vehicles"
$distClass = Join-Path $distDir "BaseVehicle.class"
$distHelperClass = Join-Path $distDir "LandtrainConstraintAuthHelper.class"
New-Item -ItemType Directory -Force -Path $distDir | Out-Null
Copy-Item $patchedClass $distClass -Force
Copy-Item $helperClass $distHelperClass -Force
Write-Output "Distribution class updated at $distClass"
Write-Output "Distribution helper class updated at $distHelperClass"