This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
/
depack.c
163 lines (124 loc) · 3.74 KB
/
depack.c
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
/*
* aPLib compression library - the smaller the better :)
*
* C depacker
*
* Copyright (c) 1998-2009 by Joergen Ibsen / Jibz
* All Rights Reserved
*
* http://www.ibsensoftware.com/
*/
#include "aplib.h"
/* internal data structure */
typedef struct {
const unsigned char *source;
unsigned char *destination;
unsigned int tag;
unsigned int bitcount;
} APDEPACKDATA;
static int aP_getbit(APDEPACKDATA *ud)
{
unsigned int bit;
/* check if tag is empty */
if (!ud->bitcount--)
{
/* load next tag */
ud->tag = *ud->source++;
ud->bitcount = 7;
}
/* shift bit out of tag */
bit = (ud->tag >> 7) & 0x01;
ud->tag <<= 1;
return bit;
}
static unsigned int aP_getgamma(APDEPACKDATA *ud)
{
unsigned int result = 1;
/* input gamma2-encoded bits */
do {
result = (result << 1) + aP_getbit(ud);
} while (aP_getbit(ud));
return (result);
}
unsigned int _stdcall aP_depack(const void *source, void *destination)
{
APDEPACKDATA ud;
unsigned int offs, len, R0, LWM;
int done;
int i;
ud.source = (const unsigned char *) source;
ud.destination = (unsigned char *) destination;
ud.bitcount = 0;
LWM = 0;
done = 0;
/* first byte verbatim */
*ud.destination++ = *ud.source++;
/* main decompression loop */
while (!done)
{
if (aP_getbit(&ud))
{
if (aP_getbit(&ud))
{
if (aP_getbit(&ud))
{
offs = 0;
for (i = 4; i; i--) offs = (offs << 1) + aP_getbit(&ud);
if (offs)
{
*ud.destination = *(ud.destination - offs);
ud.destination++;
} else {
*ud.destination++ = 0x00;
}
LWM = 0;
} else {
offs = *ud.source++;
len = 2 + (offs & 0x0001);
offs >>= 1;
if (offs)
{
for (; len; len--)
{
*ud.destination = *(ud.destination - offs);
ud.destination++;
}
} else done = 1;
R0 = offs;
LWM = 1;
}
} else {
offs = aP_getgamma(&ud);
if ((LWM == 0) && (offs == 2))
{
offs = R0;
len = aP_getgamma(&ud);
for (; len; len--)
{
*ud.destination = *(ud.destination - offs);
ud.destination++;
}
} else {
if (LWM == 0) offs -= 3; else offs -= 2;
offs <<= 8;
offs += *ud.source++;
len = aP_getgamma(&ud);
if (offs >= 32000) len++;
if (offs >= 1280) len++;
if (offs < 128) len += 2;
for (; len; len--)
{
*ud.destination = *(ud.destination - offs);
ud.destination++;
}
R0 = offs;
}
LWM = 1;
}
} else {
*ud.destination++ = *ud.source++;
LWM = 0;
}
}
return (unsigned int)(ud.destination - (unsigned char *)destination);
}