-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPV_Bga.pas
144 lines (115 loc) · 2.91 KB
/
PV_Bga.pas
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
unit PV_Bga;
{$mode objfpc}{$H+}
//PV Pack
//https://github.com/PascalVault
//Licence: MIT
//Last update: 2023-10-04
//BGA format .GZA, .BZA
interface
uses
Classes, SysUtils, Dialogs, PV_Pack, PV_Compressor;
type
{ TBga }
TBga = class(TPack)
private
FStream: TStream;
FComment: String;
public
constructor Create(Str: TStream); override;
destructor Destroy; override;
function AddFile(Str: TStream; Name: String): Boolean; override;
procedure SetComment(Comment: String); override;
end;
implementation
{ TBga }
constructor TBga.Create(Str: TStream);
begin
FStream := Str;
end;
destructor TBga.Destroy;
begin
//
end;
function Sign(C: Byte): LongInt;
begin
Result := C;
if Result >= $80 then Result := Result or $ffffff00;
end;
function TBga.AddFile(Str: TStream; Name: String): Boolean;
const BufLen = 4096;
type THead = packed record
Checksum: Cardinal;
Magic: array[0..3] of Char;
PackedSize: Cardinal;
UnpackedSize: Cardinal;
Date: Word;
Time: Word;
Attrib: Byte;
HeadType: Byte;
ArcType: Word;
DirLen: Word;
FNameLen: Word;
end;
var Head: THead;
HeadLen: Integer;
HeadOffset: Integer;
DataOffset: Integer;
PackSize: Cardinal;
Buf: array of Byte;
ReadLen: Integer;
FinalOffset: Cardinal;
CheckSum1: LongInt;
Mem: TMemoryStream;
Data: Byte;
i: Integer;
Gzip: TCompressorGzip;
begin
HeadLen := SizeOf(Head) + Length(Name);
//skip head for now
HeadOffset := FStream.Position;
DataOffset := HeadOffset + HeadLen;
FStream.Position := DataOffset;
Gzip := TCompressorGzip.Create(FStream);
SetLength(Buf, BufLen);
while Str.Position < Str.Size do begin
ReadLen := Str.Read(Buf[0], BufLen);
Gzip.Write(Buf[0], ReadLen);
end;
Gzip.Free;
PackSize := FStream.Position - DataOffset;
FinalOffset := FStream.Position;
//rewind to write head
FStream.Position := HeadOffset;
with Head do begin
Checksum := 0;
Magic := 'GZIP';
PackedSize := PackSize;
UnpackedSize := Str.Size;
Date := DosDate;
Time := DosTime;
Attrib := 0; //DIR=16
HeadType := 0;
ArcType := 1; //2=store, 1=packed
DirLen := 0;
FNameLen := Length(Name);
end;
Mem := TMemoryStream.Create;
Mem.Write(Head, SizeOf(Head));
Mem.Write(Name[1], Length(Name));
Mem.Position := 4;
Checksum1 := 0;
for i:=4 to Mem.Size-1 do begin
Mem.Read(Data, 1);
Checksum1 := Checksum1 + Sign(Data);
end;
Mem.Free;
Head.Checksum := Checksum1;
FStream.Write(Head, SizeOf(Head));
FStream.Write(Name[1], Length(Name));
FStream.Position := FinalOffset;
end;
procedure TBga.SetComment(Comment: String);
begin
FComment := Comment;
end;
end.