-
Notifications
You must be signed in to change notification settings - Fork 3
/
mark2dir.pl
executable file
·170 lines (158 loc) · 3.65 KB
/
mark2dir.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#!/usr/bin/env perl
use strict;
use warnings 'FATAL' => 'all';
use Encode ();
use bytes;
my $outname = $ARGV[0];
binmode STDIN;
# Read MARKer
my $magic = ReadFixedString(4);
die "Not a MARK file" unless $magic eq 'MARK';
my $dataVersion = ReadUint32();
my $entryCount = ReadUint32();
unless ($entryCount)
{
print STDERR sprintf("No entries, exiting\n");
exit;
}
# print STDERR sprintf("Finding \%ld entries\n", $entryCount);
my $dataStart = ReadUint32();
die sprintf("Bad offset: \%ld < \%ld", $dataStart, 40088) if $dataStart < 40088;
# my %entryLookup;
# while (CurOffset() < 40088)
# {
# my $entryStart = ReadUint32();
# next unless $entryStart > 16;
# $entryLookup{$entryStart} = CurOffset();
# }
ReadPadding(40088 - CurOffset());
my %entryData;
# my $curEntryCount = 0;
while (CurOffset() < $dataStart)
{
# $curEntryCount++;
# my $idx = $entryLookup{CurOffset()} // -1;
my $un1 = ReadUint32();
my $dataSize = ReadUint32();
my $dataOffset = ReadUint32();
my $un4 = ReadUint32();
my $un5 = ReadUint32();
my $un6 = ReadUint32();
my $pathsize = ReadUint32();
my $path = ReadFixedString($pathsize);
die "Bad path format: $path" unless $path =~ /^game:\\/;
$entryData{$dataOffset + $dataStart} = [ $dataSize, $path ];
# print STDERR sprintf("\%d. Entry at \%ld: \%s\n Index: \%ld\n \%ld - \%ld - \%ld (\%ld - \%ld - \%ld)\n", $curEntryCount, CurOffset(), $path, $idx, $un1, $un2, $un3, $un4, $un5, $un6);
}
for my $off (sort { $a <=> $b } keys %entryData)
{
die "Bad entry offset: $off" if $off < CurOffset();
# print STDERR sprintf("Skipping \%ld bytes to \%ld\n", $off - CurOffset(), $off);
ReadPadding($off - CurOffset());
my $ref = $entryData{$off};
my @dirs = split(/\\/, $ref->[1]);
shift @dirs;
my $filename = pop @dirs;
my $reldir = join('/', @dirs);
system('mkdir', '-p', $reldir);
my $relfile = "$reldir/$filename";
# print STDERR sprintf("Writing $relfile\n");
my $fh;
open($fh, '>', $relfile) or die "Could not open $relfile: $!";
binmode $fh;
print $fh ReadRaw($ref->[0]);
close $fh;
}
exit;
sub ReadUint32
{
return ReadPacked('L>', 4);
}
sub ReadSint32
{
return ReadPacked('l>', 4);
}
sub ReadUint16
{
return ReadPacked('S>', 2);
}
sub ReadSint16
{
return ReadPacked('s>', 2);
}
sub ReadUint8
{
return ReadPacked('C', 1);
}
sub ReadFixed
{
my $fixed = ReadSint32();
return $fixed / 65536.0;
}
our $BLOB = undef;
our $BLOBoff = 0;
our $BLOBlen = 0;
sub SetReadSource
{
my ($data) = @_;
$BLOB = $_[0];
$BLOBoff = 0;
$BLOBlen = defined($BLOB) ? length($BLOB) : 0;
}
sub SetReadOffset
{
my ($off) = @_;
die "Can't set offset for piped data" unless defined $BLOB;
die "Bad offset for data" if (($off < 0) || ($off > $BLOBlen));
$BLOBoff = $off;
}
sub CurOffset
{
return $BLOBoff;
}
sub ReadRaw
{
my ($size, $nofail) = @_;
die "Can't read negative size" if $size < 0;
return '' if $size == 0;
if (defined $BLOB)
{
my $left = $BLOBlen - $BLOBoff;
if ($size > $left)
{
return undef if $nofail;
die "Not enough data in blob (offset $BLOBoff, length $BLOBlen)";
}
$BLOBoff += $size;
return substr($BLOB, $BLOBoff - $size, $size);
}
else
{
my $chunk;
my $rsize = read STDIN, $chunk, $size;
$BLOBoff += $rsize;
unless ($rsize == $size)
{
return undef if $nofail;
die "Failed to read $size bytes";
}
return $chunk;
}
}
sub ReadPadding
{
ReadRaw(@_);
}
sub ReadPacked
{
my ($template, $size) = @_;
return unpack($template, ReadRaw($size));
}
sub ReadFixedString
{
my ($size) = @_;
return '' unless $size > 0;
my $raw = ReadRaw($size);
my @parts = split("\0", $raw);
return Encode::decode('MacRoman', $parts[0]);
}