Un-ignored: the dev drive is the ground truth the restoration and emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio content). Kept in-repo for the pod-owner community. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
28 lines
868 B
Batchfile
28 lines
868 B
Batchfile
@echo off
|
|
rem
|
|
rem buildtex.bat
|
|
rem
|
|
echo.
|
|
echo PROCESSING TEXTURE FILES...
|
|
echo.
|
|
if not exist hint?.tga goto bitslice
|
|
img2vtx.exe -b hint?.tga seatop.tga shktop.tga
|
|
if errorlevel 1 goto error
|
|
echo.
|
|
:bitslice
|
|
img2vtx.exe -b -o genH.bsl -s 128,128 -m0 genH1.tga -m1 genH2.tga -m2 genH3.tga -m3 genH4.tga -m4 genH5.tga -m5 genH6.tga
|
|
if errorlevel 1 goto error
|
|
img2vtx.exe -b -o genS.bsl -s 128,64 -m0 genS1.tga -m1 genS2.tga -m2 genS3.tga -m3 genS4.tga -m4 genS5.tga -m5 genS6.tga
|
|
if errorlevel 1 goto error
|
|
img2vtx.exe -b -o hcor.bsl -s 128,128 -m0 hcor1.tga -m1 hcor2.tga
|
|
if errorlevel 1 goto error
|
|
img2vtx.exe -b -o rigA.bsl -s 128,64 -m0 rigA1.tga -m1 rigA2.tga -m2 rigA3.tga -m3 rigA4.tga -m4 rigA5.tga -m5 rigA6.tga
|
|
if errorlevel 1 goto error
|
|
echo texture files processed.
|
|
goto end
|
|
:error
|
|
echo.
|
|
echo PROCESSING FAILED - SEE ABOVE
|
|
:end
|
|
|