-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathc64f.c
302 lines (262 loc) · 8.81 KB
/
c64f.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
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/*
* c64f (c) Copyright 2013 by Antonio Villena. All rights reserved.
*
* Based on ZX7 <http://www.worldofspectrum.org/infoseekid.cgi?id=0027996>
* (c) Copyright 2012 by Einar Saukas. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * The name of its author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_OFFSET 2176 /* range 1..2176 */
#define MAX_LEN 65536 /* range 2..65536 */
typedef struct match_t {
size_t index;
struct match_t *next;
} Match;
typedef struct optimal_t {
size_t bits;
int offset;
int len;
} Optimal;
Optimal *optimize(unsigned char *input_data, size_t input_size);
unsigned char *compress(Optimal *optimal, unsigned char *input_data, size_t input_size, size_t *output_size);
int main(int argc, char *argv[]) {
FILE *ifp;
FILE *ofp;
unsigned char *input_data;
unsigned char *output_data;
size_t input_size;
size_t output_size;
size_t partial_counter;
size_t total_counter;
char *output_name;
int i, j;
if( argc==1 )
printf("\nC64 Forward compressor v1.01 by Einar Saukas/AntonioVillena, 24 Oct 2017\n\n"
" c64f <input_file> <output_file>\n\n"
" <input_file> Raw input file\n"
" <output_file> Compressed output file\n\n"
"Example: c64f Cobra.scr Cobra.c64f\n"),
exit(0);
if( argc!=3 )
printf("\nInvalid number of parameters\n"),
exit(-1);
/* open input file */
ifp= fopen(argv[1], "rb");
if( !ifp )
fprintf(stderr, "Error: Cannot access input file %s\n", argv[1]),
exit(1);
/* determine input size */
fseek(ifp, 0L, SEEK_END);
input_size= ftell(ifp);
fseek(ifp, 0L, SEEK_SET);
if( !input_size )
fprintf(stderr, "Error: Empty input file %s\n", argv[1]),
exit(1);
/* allocate input buffer */
input_data= (unsigned char *)malloc(input_size);
if( !input_data )
fprintf(stderr, "Error: Insufficient memory\n"),
exit(1);
/* read input file */
total_counter= 0;
do {
partial_counter = fread(input_data+total_counter, sizeof(char), input_size-total_counter, ifp);
total_counter += partial_counter;
} while ( partial_counter > 0 );
if( total_counter != input_size )
fprintf(stderr, "Error: Cannot read input file %s\n", argv[1]),
exit(1);
/* close input file */
fclose(ifp);
/* create output file */
ofp= fopen(argv[2], "wb");
if( !ofp )
fprintf(stderr, "Error: Cannot create output file %s\n", argv[2]),
exit(1);
/* generate output file */
output_data= compress(optimize(input_data, input_size), input_data, input_size, &output_size);
/* write output file */
if( fwrite(output_data, sizeof(char), output_size, ofp) != output_size )
fprintf(stderr, "Error: Cannot write output file %s\n", output_name),
exit(1);
/* close output file */
fclose(ofp);
/* done! */
printf("\nFile %s compressed from %s (%d to %d bytes)\n", argv[2], argv[1], (int) input_size, (int) output_size);
return 0;
}
unsigned char* output_data;
size_t output_index;
size_t bit_index;
int bit_mask;
void write_byte(int value) {
output_data[output_index++] = value;
}
void write_bit(int value) {
if( bit_mask == 0 )
bit_mask = 128,
bit_index = output_index,
write_byte(0);
if( value > 0 )
output_data[bit_index] |= bit_mask;
bit_mask >>= 1;
}
int elias_gamma_bits(int value) {
int bits;
bits= 1;
while ( value > 1 )
bits+= 2,
value>>= 1;
return bits;
}
void write_elias_gamma(int value) {
int bits= 0, rvalue= 0;
while ( value>1 )
++bits,
rvalue<<= 1,
rvalue|= value&1,
value>>= 1;
while ( bits-- )
write_bit(0),
write_bit(rvalue & 1),
rvalue>>= 1;
write_bit(1);
}
unsigned char *compress(Optimal *optimal, unsigned char *input_data, size_t input_size, size_t *output_size) {
size_t input_index;
size_t input_prev;
int offset1;
int mask;
int i;
/* calculate and allocate output buffer */
input_index= input_size-1;
*output_size= (optimal[input_index].bits+16+7)/8;
output_data= (unsigned char *)malloc(*output_size);
if( !output_data )
fprintf(stderr, "Error: Insufficient memory\n"),
exit(1);
/* un-reverse optimal sequence */
optimal[input_index].bits= 0;
while ( input_index > 0 )
input_prev= input_index - (optimal[input_index].len > 0 ? optimal[input_index].len : 1),
optimal[input_prev].bits= input_index,
input_index= input_prev;
output_index= 0;
bit_mask= 0;
/* first byte is always literal */
write_byte(input_data[0]);
/* process remaining bytes */
while ( (input_index= optimal[input_index].bits) > 0)
if( optimal[input_index].len == 0)
write_bit(0),
write_byte(input_data[input_index]);
else{
/* sequence indicator */
write_bit(1);
/* sequence length */
write_elias_gamma(optimal[input_index].len-1);
/* sequence offset */
offset1= optimal[input_index].offset-1;
if( offset1 < 128 )
write_byte(offset1);
else{
offset1-= 128;
write_byte((offset1 & 127) | 128);
for ( mask= 1024; mask > 127; mask >>= 1)
write_bit(offset1 & mask);
}
}
/* end mark */
write_bit(1);
write_elias_gamma(0xff);
return output_data;
}
int count_bits(int offset, int len) {
return 1 + (offset > 128 ? 12 : 8) + elias_gamma_bits(len-1);
}
Optimal* optimize(unsigned char *input_data, size_t input_size) {
size_t *min;
size_t *max;
Match *matches;
Match *match_slots;
Optimal *optimal;
Match *match;
int match_index;
int offset;
size_t len;
size_t best_len;
size_t bits;
size_t i;
/* allocate all data structures at once */
min = (size_t *)calloc(MAX_OFFSET+1, sizeof(size_t));
max = (size_t *)calloc(MAX_OFFSET+1, sizeof(size_t));
matches = (Match *)calloc(256*256, sizeof(Match));
match_slots = (Match *)calloc(input_size, sizeof(Match));
optimal = (Optimal *)calloc(input_size, sizeof(Optimal));
if (!min || !max || !matches || !match_slots || !optimal) {
fprintf(stderr, "Error: Insufficient memory\n");
exit(1);
}
/* first byte is always literal */
optimal[0].bits = 8;
/* process remaining bytes */
for ( i= 1; i < input_size; i++ ){
optimal[i].bits= optimal[i-1].bits + 9;
match_index= input_data[i-1] << 8 | input_data[i];
best_len= 1;
for ( match= &matches[match_index]; match->next != NULL && best_len < MAX_LEN; match = match->next){
offset= i - match->next->index;
if( offset > MAX_OFFSET ){
match->next = NULL;
break;
}
for ( len= 2; len <= MAX_LEN; len++ ){
if( len > best_len && len&0xff ){
best_len= len;
bits= optimal[i-len].bits + count_bits(offset, len);
if( optimal[i].bits > bits )
optimal[i].bits= bits,
optimal[i].offset= offset,
optimal[i].len= len;
}
else if ( i+1 == max[offset]+len && max[offset] != 0 ){
len= i-min[offset];
if( len > best_len )
len= best_len;
}
if( i < offset+len || input_data[i-len] != input_data[i-len-offset] )
break;
}
min[offset]= i+1-len;
max[offset]= i;
}
match_slots[i].index= i;
match_slots[i].next= matches[match_index].next;
matches[match_index].next= &match_slots[i];
}
/* save time by releasing the largest block only, the O.S. will clean everything else later */
free(match_slots);
return optimal;
}