sda4: commit the Glaze developer hard-drive dump
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>
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
@echo off
|
||||
rem bfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \btdave
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk .\maps\%1.scn
|
||||
if not "%2"=="" flyk .\maps\%1.scn .\maps\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: bfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,80 @@
|
||||
@echo off
|
||||
rem bldmod.bat
|
||||
if not "%1"=="" goto build
|
||||
|
||||
set c1=GRASS
|
||||
echo.
|
||||
if "%c1%"=="ARENA" echo usage: bldmod trk1 trk trkdead
|
||||
if "%c1%"=="GRASS" echo usage: bldmod hummer hummd trk trkdead
|
||||
if "%c1%"=="SNOW" echo usage: bldmod object solid
|
||||
echo.
|
||||
goto end
|
||||
|
||||
:build
|
||||
set f1=%1.mod
|
||||
if exist %f1% goto error
|
||||
rem
|
||||
echo building %f1% (you must edit file and remove unwanted lines)
|
||||
rem
|
||||
rem goto %c1% (this should work, but it doesn't)
|
||||
goto GRASS
|
||||
|
||||
:ARENA
|
||||
echo [video]>%f1%
|
||||
echo object=%1.bgf %1_FR.bgf>>%f1%
|
||||
echo rubble=%1d.bgf %1d_FR.bgf>>%f1%
|
||||
echo.>>%f1%
|
||||
echo [collision]>>%f1%
|
||||
echo name=%1_cv.sld>>%f1%
|
||||
echo.>>%f1%
|
||||
echo [gamedata]>>%f1%
|
||||
echo // you must delete one of these:>>%f1%
|
||||
echo class=UnscalableTerrainClassID>>%f1%
|
||||
echo class=CulturalIconClassID>>%f1%
|
||||
echo DamageZones=%2.dmg>>%f1%
|
||||
echo StoppingCollisionVolume=0>>%f1%
|
||||
echo ExplosionModelFile=%3>>%f1%
|
||||
echo TimeDelay=0.5>>%f1%
|
||||
echo CrunchExplosionModelFile=stephit>>%f1%
|
||||
goto DONE
|
||||
|
||||
:GRASS
|
||||
echo [video]>%f1%
|
||||
echo object=%1.bgf>>%f1%
|
||||
echo rubble=%2.bgf>>%f1%
|
||||
echo.>>%f1%
|
||||
echo [collision]>>%f1%
|
||||
echo name=%1.sld>>%f1%
|
||||
echo.>>%f1%
|
||||
echo [gamedata]>>%f1%
|
||||
echo class=CulturalIconClassID>>%f1%
|
||||
echo DamageZones=%3.dmg>>%f1%
|
||||
echo StoppingCollisionVolume=0>>%f1%
|
||||
echo ExplosionModelFile=%4>>%f1%
|
||||
echo TimeDelay=0.5>>%f1%
|
||||
echo CrunchExplosionModelFile=stephit>>%f1%
|
||||
goto DONE
|
||||
|
||||
:SNOW
|
||||
echo [video]>%f1%
|
||||
echo object=%1.bgf>>%f1%
|
||||
echo.>>%f1%
|
||||
echo [collision]>>%f1%
|
||||
echo name=%2.sld>>%f1%
|
||||
echo.>>%f1%
|
||||
echo [gamedata]>>%f1%
|
||||
echo class=UnscalableTerrainClassID>>%f1%
|
||||
goto DONE
|
||||
|
||||
:DONE
|
||||
echo done.
|
||||
set f1=
|
||||
set c1=
|
||||
goto end
|
||||
|
||||
:error
|
||||
echo File '%f1%' already exists.
|
||||
echo.
|
||||
goto end
|
||||
|
||||
:end
|
||||
@@ -0,0 +1,18 @@
|
||||
@echo off
|
||||
echo.
|
||||
echo compvid.bat Compare C:\BTLIVE\VIDEO with S:\RESOURCE\BT\L4\VIDEO...
|
||||
echo.
|
||||
if not exist s:\resource\bt\l4\video\*.* goto noserver
|
||||
c:
|
||||
cd \btlive\video
|
||||
cd s:\resource\bt\l4\video
|
||||
echo comparing directories...
|
||||
utcomp *.* s: | find /v " = " >vid.bat
|
||||
more <vid.bat
|
||||
echo output is in file vid.bat
|
||||
goto end
|
||||
:noserver
|
||||
echo Problem with drive S: - please run MAPNT.BAT and try again
|
||||
echo.
|
||||
goto end
|
||||
:end
|
||||
@@ -0,0 +1,8 @@
|
||||
@echo off
|
||||
echo.
|
||||
echo PNW Drive Mappings:
|
||||
c:\nwclient\net map
|
||||
echo.
|
||||
echo NT DOS-Client Mappings:
|
||||
c:\net\net use
|
||||
echo.
|
||||
@@ -0,0 +1,24 @@
|
||||
@echo off
|
||||
rem ebfly.bat
|
||||
if "%1"=="" goto usage
|
||||
for %%i in (svga SVGA ntsc NTSC) do if %1==%%i goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \vrend\51209
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk.exe c:\eric\%1.scn
|
||||
if not "%2"=="" flyk.exe c:\eric\%1.scn c:\eric\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: ebfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
@echo off
|
||||
rem ebfly.bat
|
||||
if "%1"=="" goto usage
|
||||
for %%i in (svga SVGA ntsc NTSC) do if %1==%%i goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \vrend\51209
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk.exe c:\edo\bt\maps\%1.scn
|
||||
if not "%2"=="" flyk.exe c:\edo\bt\maps\%1.scn c:\edo\bt\maps\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: ebfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,7 @@
|
||||
img2svt *.sgi
|
||||
if exist glomall.bat glomall.bat
|
||||
copy *.svt \dpl3rls\texture
|
||||
pazchang -fb2 *.v2z
|
||||
copy *.b2z \dpl3rls\geometry
|
||||
copy *.scn \dpl3rls\scenes
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
@echo off
|
||||
rem qfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \vrend\60225
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk c:\btdave\maps\%1.scn
|
||||
if not "%2"=="" flyk c:\btdave\maps\%1.scn c:\btdave\maps\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: qfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,27 @@
|
||||
@echo off
|
||||
rem nfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \ndem
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk .\%1.scn
|
||||
if not "%2"=="" flyk .\%1.scn .\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: hfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
@echo off
|
||||
rem qfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \vrend\60116
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk c:\btdave\maps\%1.scn
|
||||
if not "%2"=="" flyk c:\btdave\maps\%1.scn c:\btdave\maps\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: qfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
@echo off
|
||||
rem fxfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
rem push \vrend\60225
|
||||
push \vrend\60623edo
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk \fx\%1.scn
|
||||
if not "%2"=="" flyk \fx\%1.scn \fx\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: fxfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,29 @@
|
||||
@echo off
|
||||
rem rpfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
rem push \vrend\60225
|
||||
push \vrend\60623edo
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk \rpdave\video\%1.scn
|
||||
if not "%2"=="" flyk \rpdave\video\%1.scn \rpdave\video\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: rpfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
NWCACHE.EXE +
|
||||
@@ -0,0 +1,13 @@
|
||||
@echo off
|
||||
if "%1"=="" goto usage
|
||||
push \dpl3rls\examples
|
||||
call setdpl.bat
|
||||
if "%2"=="" flyk ..\scenes\%1.scn
|
||||
if not "%2"=="" flyk ..\scenes\%1.scn %2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: fly scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
:end
|
||||
@@ -0,0 +1,27 @@
|
||||
@echo off
|
||||
rem fxfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
rem push \vrend\60225
|
||||
push \vrend\60623edo
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk \fx\%1.scn
|
||||
if not "%2"=="" flyk \fx\%1.scn \fx\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: fxfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,2 @@
|
||||
if not "%1"=="" copy %1.b?f \dpl3rls\geometry
|
||||
if "%1"=="" copy *.b?f \dpl3rls\geometry
|
||||
@@ -0,0 +1,26 @@
|
||||
@echo off
|
||||
rem hfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \hpdave
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk .\%1.scn
|
||||
if not "%2"=="" flyk .\%1.scn .\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: hfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,3 @@
|
||||
@ECHO OFF
|
||||
COPY C:\LOC\KA9QNOS.BAT C:\LOC\NET.BAT
|
||||
CALL PACKET.BAT
|
||||
@@ -0,0 +1,2 @@
|
||||
@C:\NOS\net.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
@echo off
|
||||
rem logout.bat
|
||||
if "%CONFIG%"=="NOVELL" goto NOVELL
|
||||
if "%CONFIG%"=="WINNT" goto WINNT
|
||||
goto UNKNOWN
|
||||
|
||||
:NOVELL
|
||||
echo on
|
||||
net logout
|
||||
nwcache +
|
||||
@echo off
|
||||
goto End
|
||||
|
||||
:WINNT
|
||||
echo on
|
||||
net logoff /y
|
||||
nwcache +
|
||||
@echo off
|
||||
goto End
|
||||
|
||||
:UNKNOWN
|
||||
echo.
|
||||
echo No logout procedure for configuration '%CONFIG%'.
|
||||
echo.
|
||||
goto End
|
||||
|
||||
:End
|
||||
@@ -0,0 +1,6 @@
|
||||
ren img2svt *.sgi
|
||||
if exist glomall.bat call glomall.bat
|
||||
copy *.glm \dpl3rls\texture
|
||||
bizchang -fb2 *.v2z
|
||||
copy *.b2z \dpl3rls\geometry
|
||||
copy *.scn \dpl3rls\scenes
|
||||
@@ -0,0 +1,10 @@
|
||||
@rem mapnt.bat for Glaze
|
||||
@rem
|
||||
C:\NET\NET USE P: /DELETE
|
||||
C:\NET\NET USE S: /DELETE
|
||||
@rem
|
||||
C:\NET\NET USE P: \\VGL_CODE\PODBAY /P:Y
|
||||
C:\NET\NET USE S: \\VGL_CODE\NEOMUNGA /P:Y
|
||||
C:\NET\NET TIME \\VGL_CODE /SET /Y
|
||||
@rem
|
||||
@dmap.bat
|
||||
@@ -0,0 +1,27 @@
|
||||
@echo off
|
||||
rem qfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \vrend\60225
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk c:\nd\%1.scn
|
||||
if not "%2"=="" flyk c:\nd\%1.scn c:\nd\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: qfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,26 @@
|
||||
@echo off
|
||||
rem nfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \nd
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk .\%1.scn
|
||||
if not "%2"=="" flyk .\%1.scn .\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: nfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,3 @@
|
||||
@ECHO OFF
|
||||
IF EXIST C:\LOC\NET.BAT DEL C:\LOC\NET.BAT
|
||||
CALL C:\NWCLIENT\STARTNET.BAT
|
||||
@@ -0,0 +1,13 @@
|
||||
@echo off
|
||||
if "%1"=="" goto usage
|
||||
push \dpl3rls\examples
|
||||
call setntsc.bat
|
||||
if "%2"=="" flyk ..\scenes\%1.scn
|
||||
if not "%2"=="" flyk ..\scenes\%1.scn %2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: fly scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
:end
|
||||
@@ -0,0 +1,10 @@
|
||||
@rem mapnt.bat for Glaze
|
||||
@rem
|
||||
C:\NET\NET USE P: /DELETE
|
||||
C:\NET\NET USE S: /DELETE
|
||||
@rem
|
||||
C:\NET\NET USE P: "\\VGL_CODE\PODBAY" /P:Y
|
||||
C:\NET\NET USE S: "\\VGL_CODE\NEOMUNGA" /P:Y
|
||||
C:\NET\NET TIME \\VGL_CODE
|
||||
@rem
|
||||
@dmap.bat
|
||||
@@ -0,0 +1 @@
|
||||
c:\loc\network\3c503.com 0x7e 3 0x300
|
||||
@@ -0,0 +1,6 @@
|
||||
@ECHO Off
|
||||
ECHO path before
|
||||
PATH
|
||||
IF EXIST S:\PVCS\GET.EXE PATH %PATH%;S:\PVCS
|
||||
ECHO path after
|
||||
PATH
|
||||
@@ -0,0 +1,26 @@
|
||||
@echo off
|
||||
rem qfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \vrend\60225
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk c:\btdave\maps\%1.scn
|
||||
if not "%2"=="" flyk c:\btdave\maps\%1.scn c:\btdave\maps\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: qfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,28 @@
|
||||
@echo off
|
||||
rem rfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
rem push \vrend\60225
|
||||
push \vrend\60623edo
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk \btravine\%1.scn
|
||||
if not "%2"=="" flyk \btravine\%1.scn \btravine\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: fxfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
@echo off
|
||||
rem rfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="svga6" goto SetVideoMode
|
||||
if "%1"=="SVGA6" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
rem push \vrend\60225
|
||||
push \vrend\60623edo
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk \btravine\%1.scn
|
||||
if not "%2"=="" flyk \btravine\%1.scn \btravine\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: fxfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,29 @@
|
||||
@echo off
|
||||
rem rpfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
rem push \vrend\60225
|
||||
push \vrend\60623edo
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk \rpdave\scenes\%1.scn
|
||||
if not "%2"=="" flyk \rpdave\scenes\%1.scn \rpdave\scenes\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: rpfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
@echo off
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="canyon2" fly.bat %1 canyon
|
||||
if "%1"=="morning" fly.bat %1 canal
|
||||
if "%1"=="evening" fly.bat %1 canal
|
||||
if "%1"=="night" fly.bat %1 canal
|
||||
if "%1"=="rpcanal" fly.bat %1 camera
|
||||
if "%1"=="burnin" fly.bat %1 camera
|
||||
fly.bat %1 %1
|
||||
|
||||
:usage
|
||||
echo.
|
||||
echo usage: run scene_file (no extension)
|
||||
echo.
|
||||
@@ -0,0 +1,2 @@
|
||||
copy *.scn \dpl3rls\scenes
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
@for %%i in (%1) do find "DISTANCE" %%i
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,43 @@
|
||||
****** Information for custom setting the driver ******
|
||||
****** for the Double Speed SONY CDU31A series. ******
|
||||
|
||||
To install device driver in config.sys:
|
||||
|
||||
device=slcd.sys /B:xxx /d:mscd000 /v /c /m:x /t:x /k /n
|
||||
|
||||
/B: Base port address of host adapter. 340H is the default.
|
||||
|
||||
/d: Specifies device driver name. Used by MSCDEX. This is the
|
||||
current value if none is specified in config.sys.
|
||||
/v Turns on verbose mode of the driver. Driver displays
|
||||
information about its installation.
|
||||
/c Turns on displaying of drive configuration at boot time.
|
||||
|
||||
/m: Data transfer mode: p = polled I/O, d = DMA, which requires
|
||||
the /t:x parameter.
|
||||
|
||||
/t: Specifies the DMA channel to use if DMA transfer mode is
|
||||
selected.
|
||||
|
||||
/k Enables a sector caching mechanism to improve the performance.
|
||||
The default is off.
|
||||
/n /2 specifies the double speed mode. /1 specifies the single
|
||||
speed mode. The default is the double speed mode.
|
||||
|
||||
|
||||
lastdrive=z
|
||||
|
||||
Last valid drive letter. DOS defaults to 'e'. If you have 3 or more
|
||||
hard disks, or ram disks, this must be used to expand the number of
|
||||
letters available.
|
||||
|
||||
To install Microsoft CD-ROM Extentions via autoexec.bat:
|
||||
|
||||
mscdex /d:mscd000 /l:m
|
||||
|
||||
/d: Name of CD-ROM device driver. Must match the value specified
|
||||
in config.sys. This is the name recommended by Microsoft.
|
||||
|
||||
/l: Specifies the drive letter to use for the CD-ROM. If this,
|
||||
'/l:m' is not here, the next available drive letter is used.
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
[edit-]
|
||||
screen=80 50
|
||||
toggles=1 1 0 1 0 0
|
||||
srch=btdave
|
||||
src=btdave\maps
|
||||
rpl=nd
|
||||
file=c:\loc\rpfly.bat 1 1 58 20
|
||||
[brief]
|
||||
file=c:\loc\rpfly.bat 1 1 58 20 1 47 78 1 c=0
|
||||
[shared-]
|
||||
pmark=c:\loc\rpfly.bat 58 20
|
||||
[brief-scrap]
|
||||
0 3
|
||||
push \vrend\60116
|
||||
[end-brief-scrap]
|
||||
[brief-history]
|
||||
|
||||
[edit_file]::[File: ]
|
||||
fxfly.bat
|
||||
qfly ba-
|
||||
qfly.bat
|
||||
bfly.bat
|
||||
setntsc.bat
|
||||
ntscfly.bat
|
||||
gee.bat
|
||||
[translate]::[ Pattern: ]
|
||||
btdave\maps
|
||||
[translate]::[Replacement: ]
|
||||
nd
|
||||
[search_fwd]::[ Search for: ]
|
||||
btdave
|
||||
[end-brief-history]
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
@echo off
|
||||
rem stfly.bat
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="svga" goto SetVideoMode
|
||||
if "%1"=="SVGA" goto SetVideoMode
|
||||
if "%1"=="ntsc" goto SetVideoMode
|
||||
if "%1"=="NTSC" goto SetVideoMode
|
||||
:DefaultVideoMode
|
||||
set a0=svga
|
||||
goto Start
|
||||
:SetVideoMode
|
||||
set a0=%1
|
||||
shift
|
||||
:Start
|
||||
push \vrend\60321
|
||||
call set%a0%.bat
|
||||
if "%2"=="" flyk \stdave\%1.scn
|
||||
if not "%2"=="" flyk \stdave\%1.scn \stdave\%2.spl
|
||||
pop
|
||||
goto end
|
||||
:usage
|
||||
echo.
|
||||
echo usage: stfly [video_mode] scene_file [spline_file] (no extensions)
|
||||
echo.
|
||||
echo video_mode is 'svga' or 'ntsc'
|
||||
:end
|
||||
@@ -0,0 +1,4 @@
|
||||
cd \dpl3rls\examples
|
||||
call setntsc.bat
|
||||
flyk ..\scenes\tapedemo.scn tapevw11.spl tape0224.sfx
|
||||
cd \
|
||||
@@ -0,0 +1,4 @@
|
||||
cd \dpl3rls\examples
|
||||
call setdpl.bat
|
||||
flyk ..\scenes\tapedemo.scn tapevw11.spl tape0224.sfx
|
||||
cd \
|
||||
@@ -0,0 +1,3 @@
|
||||
@ECHO OFF
|
||||
IF EXIST C:\LOC\NET.BAT DEL C:\LOC\NET.BAT
|
||||
CALL C:\NWCLIENT\startcli.bat
|
||||
@@ -0,0 +1,60 @@
|
||||
@echo off
|
||||
echo.
|
||||
echo wipegrab.bat
|
||||
echo.
|
||||
echo WARNING: Use this command with extreme caution!
|
||||
echo.
|
||||
echo It is about to:
|
||||
echo - save certain files
|
||||
echo - totaly erases the entire directory tree
|
||||
echo - rebuilds the directory tree
|
||||
echo - restores the saved files
|
||||
echo - performs an unconditional grabres
|
||||
echo.
|
||||
if "%1"=="" goto usage
|
||||
if "%1"=="-h" goto usage
|
||||
if not "%D0%%WD%%F7%%F9%"=="" goto conflict
|
||||
if "%1"=="btlive" goto btlive
|
||||
goto usage
|
||||
:btlive
|
||||
set D0=C:\BTLIVE
|
||||
set WD=C:\LOC\WIPEGRAB
|
||||
set F7=%WD%\savfiles.lst
|
||||
set F9=%WD%\btlive.zip
|
||||
goto prompt
|
||||
:prompt
|
||||
if not exist %F7% goto NOLISTFILE
|
||||
echo Directory tree to be purged and rebuilt '%D0%'.
|
||||
echo.
|
||||
echo To stop now press Ctrl-C or Ctrl-Break, otherwise
|
||||
pause
|
||||
if exist %F9% del %F9%
|
||||
cd %D0%
|
||||
pkzip -r -p -eX %F9% @%F7%
|
||||
cd \
|
||||
xdel %D0% /s/d/r
|
||||
md %D0%
|
||||
cd %D0%
|
||||
pkunzip -d %F9%
|
||||
call grabres.bat -y
|
||||
echo.
|
||||
echo you need to rebuild your resource file
|
||||
goto cleanup
|
||||
:usage
|
||||
echo usage: wipegrab [btlive]
|
||||
echo.
|
||||
goto end
|
||||
:conflict
|
||||
echo ERROR - conflict with env. variables
|
||||
echo.
|
||||
goto end
|
||||
:NOLISTFILE
|
||||
echo Listfile '%F7%' not found.
|
||||
echo.
|
||||
goto cleanup
|
||||
:cleanup
|
||||
set D0=
|
||||
set WD=
|
||||
set F7=
|
||||
set F9=
|
||||
:end
|
||||
@@ -0,0 +1,14 @@
|
||||
vcs.cfg
|
||||
*.egg
|
||||
*.bat
|
||||
*.exe
|
||||
joystick.ini
|
||||
vr*.*
|
||||
dpmi32vm.ovl
|
||||
hmi*.386
|
||||
anims\vcs.cfg
|
||||
audio\vcs.cfg
|
||||
gauge\vcs.cfg
|
||||
maps\vcs.cfg
|
||||
solids\vcs.cfg
|
||||
video\*.bat
|
||||
Reference in New Issue
Block a user