-
Notifications
You must be signed in to change notification settings - Fork 0
/
save2dpin.pl
executable file
·188 lines (176 loc) · 2.72 KB
/
save2dpin.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#!/usr/bin/env perl
use strict;
use warnings 'FATAL' => 'all';
my $slot = $ARGV[0] || 0;
# skip names
ReadPadding(10 * 128);
# get level offsets
my @offsets;
for my $i (0..9)
{
for my $lev (0..24)
{
my $loff = ReadUint16();
push(@offsets, $loff) if $slot == $i;
}
}
# player data
for my $i (0..9)
{
if ($slot == $i)
{
WriteThrough(2876);
}
else
{
ReadPadding(2876);
}
}
my @leveldata;
# suck up all saved levels...
while (!ReadDone())
{
push(@leveldata, ReadRaw(9112));
}
# ...then write them out in desired order
for my $lev (@offsets)
{
WriteRaw($leveldata[$lev]);
}
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 ReadDone
{
if (defined $BLOB)
{
return $BLOBlen > $BLOBoff;
}
return eof STDIN;
}
sub WriteUint32
{
print pack('L>', Num(@_));
}
sub WriteSint32
{
print pack('l>', Num(@_));
}
sub WriteUint16
{
print pack('S>', Num(@_));
}
sub WriteSint16
{
print pack('s>', Num(@_));
}
sub WriteUint8
{
print pack('C', Num(@_));
}
sub WriteFixed
{
my $num = Num(@_);
WriteSint32(sprintf("%.0f", $num * 65536.0));
}
sub WritePadding
{
print "\0" x $_[0];
}
sub WriteRaw
{
print @_;
}
sub Num
{
my ($val, $default) = @_;
$default = 0 unless defined $default;
$val = $default unless defined $val;
return $val + 0;
} # end Num
sub WriteThrough
{
WriteRaw(ReadRaw(@_));
}