mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-11 11:19:09 +00:00
1
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
#! perl
|
||||
|
||||
# make a simple fixed pak file for testing code. This utility is only for testing the code
|
||||
# before writing the "real" utility. The files that are packed are fake
|
||||
|
||||
|
||||
|
||||
$ndatfileindex=0;
|
||||
$ndatoffset=0;
|
||||
|
||||
$nullbyte = pack("C",0);
|
||||
|
||||
foreach $ext ("txt","vtf")
|
||||
{
|
||||
$dirout.=$ext.$nullbyte;
|
||||
foreach $dir("dir1","dir2")
|
||||
{
|
||||
$dirout.=$dir.$nullbyte;
|
||||
foreach $file("test1","test2")
|
||||
{
|
||||
$fdata=$file x 5;
|
||||
$dirout.=$file.$nullbyte;
|
||||
$dirout.=pack("V",crc32($fdata));
|
||||
$dirout.=pack("v",0); #meta data size
|
||||
$dirout.=pack("C",$ndatfileindex);
|
||||
$dirout.=pack("V",$ndatoffset);
|
||||
$dirout.=pack("V",length($dataout));
|
||||
$dataout.=$fdata;
|
||||
$dirout.=pack("C",-1);
|
||||
}
|
||||
$dirout.=$nullbyte; # mark no more files
|
||||
}
|
||||
$dirout.=$nullbyte;
|
||||
}
|
||||
$dirout.=$nullbyte;
|
||||
|
||||
open(DIROUT,">test.dir") || die;
|
||||
binmode DIROUT;
|
||||
print DIROUT $dirout;
|
||||
close DIROUT;
|
||||
open(DATAOUT,">test_000.dat") || die;
|
||||
binmode DATAOUT;
|
||||
print DATAOUT $dataout;
|
||||
close DATAOUT;
|
||||
Reference in New Issue
Block a user