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>
37 lines
1.3 KiB
Batchfile
37 lines
1.3 KiB
Batchfile
c:\pvcs\get -u grabres.bat
|
|
@echo off
|
|
echo **********************************************************************
|
|
echo * Get resource source files from the source server mounted on S: and
|
|
echo * put them in the right local directories which must already exist.
|
|
echo * video and sound bank files are always copied because they aren't
|
|
echo * under source code control. PVCS parameters can be supplied on the
|
|
echo * command line, ie: grabres -u or grabres -y -u.
|
|
echo * BEWARE of the -y option as if you have any of the resource files
|
|
echo * checked out they will get clobbered.
|
|
echo * NOTE the video and audio copies are at the end of this file so you
|
|
echo * can skip them with a control-C if you don't want them updated.
|
|
echo * Greg Corson 6/7/95 Ken Olsen 6/9/95
|
|
echo **********************************************************************
|
|
set v0=a
|
|
if "%1"=="-u" set v0=u
|
|
if "%2"=="-u" set v0=u
|
|
if "%3"=="-u" set v0=u
|
|
if "%4"=="-u" set v0=u
|
|
echo on
|
|
cd audio
|
|
c:\pvcs\get %1 %2 %3 %4 *.??v
|
|
cd ..\maps
|
|
c:\pvcs\get %1 %2 %3 %4 *.??v
|
|
cd ..\models
|
|
c:\pvcs\get %1 %2 %3 %4 *.??v
|
|
cd ..\solids
|
|
c:\pvcs\get %1 %2 %3 %4 *.??v
|
|
cd ..\gauge
|
|
c:\pvcs\get %1 %2 %3 %4 *.??v
|
|
cd ..
|
|
c:\pvcs\get %1 %2 %3 %4 *.??v
|
|
call getvid %v0%
|
|
xcopy /v s:\resource\rp\l4\audio\*.res audio
|
|
@echo off
|
|
set v0=
|