-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwave.c
395 lines (329 loc) · 8.51 KB
/
wave.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#define WAV_FREQ (44100)
#define TSTATES(num) ((WAV_FREQ*(num))/3500000)
#define TRUE 1
#define FALSE 0
// These values are set accordingly with the turbo loader timing and should not be changed
#define TPERIOD0 TSTATES(855)
#define TPERIOD1 TSTATES(1710)
#define TPILOT_P TSTATES(2168)
#define TEOF TSTATES(6000)
#define PERIOD0 TSTATES(855)
#define PERIOD1 TSTATES(1710)
#define PILOT_P TSTATES(2168)
#define SYNC_OFF_P TSTATES(667)
#define SYNC_ON_P TSTATES(735)
void writeword(unsigned int i, FILE *fp)
{
fputc(i % 256, fp);
fputc(i / 256, fp);
}
/* Writing routines */
void writebyte(unsigned char c, FILE *fp)
{
fputc(c, fp);
}
void writestring(char *mystring, FILE *fp)
{
size_t c;
for (c = 0; c < strlen(mystring); c++)
{
writebyte(mystring[c], fp);
}
}
void writelong(unsigned long i, FILE *fp)
{
writeword(i % 65536, fp);
writeword(i / 65536, fp);
}
int zcc_strrcspn(char *s, char *reject)
{
int index, i;
index = 0;
for (i = 1; *s; ++i)
{
if (strchr(reject, *s++))
index = i;
}
return index;
}
/* Generic change suffix routine - make sure name is long enough to hold the suffix */
void suffix_change(char *name, const char *suffix)
{
int index;
if ((index = zcc_strrcspn(name, "./\\")) && (name[index - 1] == '.'))
name[index - 1] = 0;
strcat(name, suffix);
}
/* Useful functions used by many targets */
void exit_log(int code, char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
if (fmt != NULL)
{
vfprintf(stderr, fmt, ap);
}
va_end(ap);
exit(code);
}
/* Pilot lenght in standard mode is about 2000 */
void zx_pilot(int pilot_len, int period, FILE *fpout)
{
int i, j;
/* Then the beeeep */
for (j = 0; j < pilot_len; j++)
{
for (i = 0; i < period; i++)
fputc(0xe0, fpout);
for (i = 0; i < period; i++)
fputc(0x20, fpout);
}
// Sync off
for (i = 0; i < SYNC_OFF_P; i++)
fputc(0xe0, fpout);
// Sync on
for (i = 0; i < SYNC_ON_P; i++)
fputc(0x20, fpout);
}
void zx_rawbit(FILE *fpout, int period)
{
int i;
for (i = 0; i < period; i++)
fputc(0xe0, fpout);
for (i = 0; i < period; i++)
fputc(0x20, fpout);
}
void zx_rawout(FILE *fpout, unsigned char b)
{
static unsigned char c[8] =
{ 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
int i, period;
for (i = 0; i < 8; i++)
{
if (b & c[i])
{
/* Experimental MIN limit is 17 */
period = PERIOD1;
}
else
{
/* Experimental MIN limit is 7 */
period = PERIOD0;
}
zx_rawbit(fpout, period);
}
}
/* Add the WAV header to a 44100 Khz RAW sound file */
void raw2wav(char *wavfile)
{
char rawfilename[FILENAME_MAX + 1];
FILE *fpin, *fpout;
int c;
long i, len;
strncpy(rawfilename, wavfile, FILENAME_MAX);
if ((fpin = fopen(wavfile, "rb")) == NULL)
{
exit_log(1, "Can't open file %s for wave conversion\n", wavfile);
}
if (fseek(fpin, 0, SEEK_END))
{
fclose(fpin);
exit_log(1, "Couldn't determine size of file\n", 1);
}
len = ftell(fpin);
fseek(fpin, 0L, SEEK_SET);
suffix_change(wavfile, ".wav");
if ((fpout = fopen(wavfile, "wb")) == NULL)
{
exit_log(1, "Can't open output raw audio file %s\n", wavfile);
}
/* Now let's think at the WAV file */
writestring("RIFF", fpout);
writelong(len + 36, fpout);
writestring("WAVEfmt ", fpout);
writelong(0x10, fpout);
writeword(1, fpout);
writeword(1, fpout);
writelong(44100, fpout);
writelong(44100, fpout);
writeword(1, fpout);
writeword(8, fpout);
writestring("data", fpout);
writelong(len, fpout);
for (i = 0; i < len; i++)
{
// Small alteration of the square wave to make it look analogue
// It should be enough for all the emulators to accept it as a valid feed
// still permitting a good compression rate to the LZ algorithms
c = getc(fpin);
#if 1
// Boost volume
if (c > 0x81)
fputc(0xff, fpout);
else if (c < 0x7f)
fputc(0x00, fpout);
else
fputc(c, fpout); // Add some noise to the silence
#else
fputc(c, fpout);
#endif
}
fclose(fpin);
fclose(fpout);
if (unlink(rawfilename) != 0)
fprintf(stderr, "Warning: Couldn't remove: %s\n", rawfilename);
}
void turbo_one(FILE *fpout)
{
int i;
for (i = 0; i < TPERIOD1; i++)
fputc(0xe0, fpout);
for (i = 0; i < TPERIOD0; i++)
fputc(0x20, fpout);
}
void turbo_rawout(FILE *fpout, unsigned char b, int extreme)
{
static unsigned char c[8] =
{ 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
int i;
if (!b && (extreme))
{
/* if byte is zero then we shortcut to a single bit ! */
// Experimental min limit is 14
zx_rawbit(fpout, TPERIOD1);
turbo_one(fpout);
}
else
{
for (i = 0; i < 8; i++)
{
if (b & c[i])
// Experimental min limit is 7
turbo_one(fpout);
else
zx_rawbit(fpout, TPERIOD0);
}
}
}
int tap2wav(char *tapFileName, int ROMLoader)
{
char wavfile[FILENAME_MAX + 1];
FILE *fpin, *fpout;
int c, previous;
int i, blocklen;
int len;
int blockcount = 0;
int turbo = 0;
int warping = 0;
/* ***************************************** */
/* Now, if requested, create the audio file */
/* ***************************************** */
if ((fpin = fopen(tapFileName, "rb")) == NULL)
{
exit_log(1, "Can't open file %s for wave conversion\n", tapFileName);
}
if (fseek(fpin, 0, SEEK_END))
{
fclose(fpin);
exit_log(1, "Couldn't determine size of file\n");
}
len = ftell(fpin);
fseek(fpin, 0L, SEEK_SET);
strcpy(wavfile, tapFileName);
suffix_change(wavfile, ".RAW");
if ((fpout = fopen(wavfile, "wb")) == NULL)
{
exit_log(1, "Can't open output raw audio file %s\n", wavfile);
}
/* Data blocks */
while (ftell(fpin) < len)
{
blocklen = (getc(fpin) + 256 * getc(fpin));
if (blocklen == 19)
printf("Header found, length : %-5d Byte(s) ", blocklen);
else
printf("Block found, length : %-5d Byte(s) ", blocklen);
if (blockcount < 2 || ROMLoader)
{
printf("- Not turbo");
turbo = 0;
}
else
{
printf("- Turbo");
turbo = 1;
}
#if 0
// Drop the flag and update size for turbo mode
if (turbo)
{
c = getc(fpin);
// No flag or parity bytes for turbo mode
blocklen -= 2;
}
if (turbo)
zx_pilot(500, TPILOT_P, fpout);
else
#endif
zx_pilot(2500, PILOT_P, fpout);
previous = -1;
for (i = 0; (i < blocklen); i++)
{
c = getc(fpin);
if (turbo)
{
#if 0
if (previous == c)
{
if (!warping)
{
warping = TRUE;
zx_rawbit(fpout, TPERIOD1);
zx_rawbit(fpout, TPERIOD0);
}
else
zx_rawbit(fpout, TPERIOD0);
}
else
{
if (warping)
{
turbo_one(fpout);
warping = FALSE;
}
turbo_rawout(fpout, c, 1);
}
#else
turbo_rawout(fpout, c, 0);
#endif
}
else
zx_rawout(fpout, c);
previous = c;
}
// Drop parity byte for turbo mode
#if 0
if (turbo)
{
zx_rawbit(fpout, TPERIOD0);
zx_rawbit(fpout, TEOF);
c = getc(fpin);
}
#endif
// Trailing silence, larger time may be needed for decompression
for (i = 0; i < 44100 / 2; i++)
fputc(0x80, fpout);
printf("\n");
blockcount++;
}
fclose(fpin);
fclose(fpout);
/* Now complete with the WAV header */
raw2wav(wavfile);
return 0;
}