Merge branch 'master' of https://Governor-Tarkin@bitbucket.org/Governor-Tarkin/swg...
[swg-src.git] / tools / editdata.btm
blobcb4c8ef6eb1b256a451bd969e162bfb2b0a8f4ac
1 @echo off
3 rem =================================================================
4 rem
5 rem makedata template for .mif files
6 rem asommers
7 rem 
8 rem copyright 2002, sony online entertainment
9 rem
10 rem =================================================================
12 if "%1" == "" goto LABEL_all
14 :LABEL_one
15 for %x in (%1) do (gosub LABEL_process)
16 goto LABEL_end
18 :LABEL_all
19 for %x in (*.mif) do (gosub LABEL_process)
20 goto LABEL_end
22 :LABEL_process
23 set INFILE=%@FULL[%x]
24 set OUTPATH=%@REPLACE[dsrc,data,%@PATH[%INFILE]]
25 set OUTNAME=%@NAME[%INFILE]
26 set OUTEXT=iff
27 set OUTFILE=%OUTPATH%%OUTNAME.%OUTEXT
29 rem -- make sure outpath exists
30 if not exist %OUTPATH md /s %OUTPATH
32 p4 edit %INFILE 
33 p4 edit %OUTFILE
34 return
36 :LABEL_end