Files
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

52 lines
2.3 KiB
Batchfile

:START
cls
@ECHO OFF
ECHO 1. Transfer Conroe01
ECHO 2. Transfer Conroe02
ECHO 3. Transfer Conroe03
ECHO 4. Quit.
c:\CHOICE.com /C:1234 /N Please choose a menu option.
IF ERRORLEVEL == 4 GOTO QUIT_MENU
IF ERRORLEVEL == 3 GOTO CONROE03
IF ERRORLEVEL == 2 GOTO CONROE02
IF ERRORLEVEL == 1 GOTO CONROE01
GOTO QUIT_MENU
:CONROE01
ECHO Moving Conroe01
xcopy m:\gameleap\mw4\content\maps\conroe01\*.* d:\games\mw4\content\maps\conroe01\*.* /E
xcopy m:\gameleap\mw4\content\textures\maps\conroe01\*.* d:\games\mw4\content\textures\maps\conroe01\*.* /E
xcopy m:\gameleap\mw4\content\textures\hud\conroe01*.* d:\games\mw4\content\textures\hud\conroe01*.* /E
xcopy m:\gameleap\mw4\content\textures\composttexture\conroe01*.* d:\games\mw4\content\textures\composttexture\conroe01*.*
del d:\games\mw4\resource\maps\conroe01.dep /Q
del d:\games\mw4\resource\maps\conroe01.mw4 /Q
del d:\games\mw4\resource\usermissions\*.dep /Q
del d:\games\mw4\resource\usermissions\*.mw4 /Q
GOTO START
:CONROE02
ECHO Moving Conroe02
xcopy m:\gameleap\mw4\content\maps\conroe02\*.* d:\games\mw4\content\maps\conroe02\*.* /E
xcopy m:\gameleap\mw4\content\textures\maps\conroe02\*.* d:\games\mw4\content\textures\maps\conroe02\*.* /E
xcopy m:\gameleap\mw4\content\textures\hud\conroe02*.* d:\games\mw4\content\textures\hud\conroe02*.* /E
xcopy m:\gameleap\mw4\content\textures\composttexture\conroe02*.* d:\games\mw4\content\textures\composttexture\conroe02*.*
del d:\games\mw4\resource\maps\conroe02.dep /Q
del d:\games\mw4\resource\maps\conroe02.mw4 /Q
del d:\games\mw4\resource\usermissions\*.dep /Q
del d:\games\mw4\resource\usermissions\*.mw4 /Q
GOTO START
:CONROE03
ECHO Moving Conroe03
xcopy m:\gameleap\mw4\content\maps\conroe03\*.* d:\games\mw4\content\maps\conroe03\*.* /E
xcopy m:\gameleap\mw4\content\textures\maps\conroe03\*.* d:\games\mw4\content\textures\maps\conroe03\*.* /E
xcopy m:\gameleap\mw4\content\textures\hud\conroe03*.* d:\games\mw4\content\textures\hud\conroe03*.* /E
xcopy m:\gameleap\mw4\content\textures\composttexture\conroe03*.* d:\games\mw4\content\textures\composttexture\conroe03*.*
del d:\games\mw4\resource\maps\conroe03.dep /Q
del d:\games\mw4\resource\maps\conroe03.mw4 /Q
del d:\games\mw4\resource\usermissions\*.dep /Q
del d:\games\mw4\resource\usermissions\*.mw4 /Q
GOTO START
:QUIT_MENU