Archival snapshot of the Virtual World Entertainment Tesla cockpit software, 1994-1996: MUNGA engine and L4 pod layer source (Borland C++ 5.0), BT/RP game code, and game content (models, audio, maps, gauges, Division renderer data). Includes third-party libraries: Division dVS/DPL graphics, HMI SOS audio, WATTCP networking. Files are preserved byte-for-byte (.gitattributes disables all line-ending conversion). README.md documents the layout, target hardware, and toolchain. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
54 lines
1.3 KiB
Batchfile
54 lines
1.3 KiB
Batchfile
@echo off
|
|
rem
|
|
rem usage: rpprep.bat [course [vehicle [dropzone [inifile]]]]
|
|
rem
|
|
rem ------------------------------------------------------------------
|
|
rem L4ANIMATION=scale (default = 1.0 NEVER make zero or negative)
|
|
rem ------------------------------------------------------------------
|
|
set L4ANIMATION=1.0
|
|
if "%HEAPSIZE%"=="" set HEAPSIZE=8000000
|
|
set REVIEW=
|
|
rem ------------------------------------------------------------------
|
|
set a1=
|
|
if "%1"=="" set a1=lyzlane
|
|
if not "%1"=="" set a1=%1
|
|
if not exist maps\%a1%.map goto nomap
|
|
rem ------------------------------------------------------------------
|
|
set a2=
|
|
if not "%2"=="" goto vehgiven
|
|
if "%a1%"=="lyzlane" set a2=puck
|
|
if "%a2%"=="" set a2=speck
|
|
goto checkveh
|
|
:vehgiven
|
|
set a2=%2
|
|
:checkveh
|
|
if not exist models\%a2%.mod goto noveh
|
|
rem ------------------------------------------------------------------
|
|
set A4DPLCFG=
|
|
if "%4"=="" goto rp
|
|
set A4DPLCFG=%4.ini
|
|
if not exist %A4DPLCFG% goto noenv
|
|
rem ------------------------------------------------------------------
|
|
:rp
|
|
call makeegg.bat %a1% %a2% %3
|
|
call rp.bat temp
|
|
goto end
|
|
:nomap
|
|
echo.
|
|
echo Course '%a1%' not found.
|
|
echo.
|
|
goto end
|
|
:noveh
|
|
echo.
|
|
echo Vehicle '%a2%' not found.
|
|
echo.
|
|
goto end
|
|
:noenv
|
|
echo.
|
|
echo Renderer configuration file '%A4DPLCFG%' not found.
|
|
echo.
|
|
goto end
|
|
:end
|
|
set a2=
|
|
set a1=
|