-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtape.c
611 lines (532 loc) · 23.8 KB
/
tape.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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
/* Caprice32 - Amstrad CPC Emulator
(c) Copyright 1997-2004 Ulrich Doewich
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* CDT tape image emulation
(c) Copyright 2002,2003 Ulrich Doewich
Nov 05, 2002 - 22:17
Nov 06, 2002 - 21:31 first test run - nada, zip, zilch - nothing happens...
Nov 07, 2002 - 11:52 doh! data bits were missing one half of their wave; OHMUMMY.CDT loads, but does not run yet
Nov 07, 2002 - 22:04 tapes with block id 0x11 seem to load now - enabling tape control through the motor bit fixed it: go figure!
Nov 07, 2002 - 23:26 added processing of blocks 0x10, 0x12, 0x13, 0x14
Nov 14, 2002 - 23:35 modified the pause to properly finish the previous pulse, if necessary
Dec 07, 2002 - 23:00 changed the points where Tape_SwitchLevel is called; level changes should now occur at the correct times
Jan 19, 2003 - 12:09 added support for the direct recording block (0x15)
Jan 28, 2003 - 22:33 VOC "tapes" work - problems with SpeedLock loaders must therefore be due to incorrect CDT emulation
Jan 29, 2003 - 19:14 fixed CDT loading: the pause-after-block value was read from the wrong location!
*/
#include "cap32.h"
#include "tape.h"
#include "z80.h"
#define TAPE_PILOT_STAGE 1
#define TAPE_SYNC_STAGE 2
#define TAPE_DATA_STAGE 3
#define TAPE_SAMPLE_DATA_STAGE 4
#define TAPE_PAUSE_STAGE 5
#define TAPE_END 6
#define CYCLE_SCALE ((40 << 16) / 35)
//#define CYCLE_SCALE ((3993600 / 3500000) * 65536)
#define CYCLE_ADJUST(p) (((dword)(p) * CYCLE_SCALE) >> 16)
#define MS_TO_CYCLES(p) ((dword)(p) * 4000)
//#define MS_TO_CYCLES(p) ((dword)(p) * 3994)
extern byte *pbTapeImage;
extern byte *pbTapeImageEnd;
extern t_CPC CPC;
#ifdef DEBUG_TAPE
extern FILE *pfoDebug;
#endif
byte bTapeLevel;
byte bTapeData;
byte *pbTapeBlock;
byte *pbTapeBlockData;
word *pwTapePulseTable;
word *pwTapePulseTableEnd;
word *pwTapePulseTablePtr;
word wCycleTable[2];
int iTapeCycleCount;
dword dwTapePulseCycles;
dword dwTapeZeroPulseCycles;
dword dwTapeOnePulseCycles;
dword dwTapeStage = TAPE_END;
dword dwTapePulseCount;
dword dwTapeDataCount;
dword dwTapeBitsToShift;
void Tape_GetCycleCount(void)
{
dwTapePulseCycles = CYCLE_ADJUST(*pwTapePulseTablePtr++);
if (pwTapePulseTablePtr >= pwTapePulseTableEnd) {
pwTapePulseTablePtr = pwTapePulseTable;
}
}
void Tape_SwitchLevel(void)
{
if (bTapeLevel == TAPE_LEVEL_LOW) {
bTapeLevel = TAPE_LEVEL_HIGH; // reverse the level
}
else {
bTapeLevel = TAPE_LEVEL_LOW; // reverse the level
}
}
int Tape_ReadDataBit(void)
{
if (dwTapeDataCount) {
if (!dwTapeBitsToShift) {
bTapeData = *pbTapeBlockData; // get the next data byte
pbTapeBlockData++;
dwTapeBitsToShift = 8;
#ifdef DEBUG_TAPE
fprintf(pfoDebug, ">>> 0x%02x\r\n", (byte)bTapeData);
#endif
}
byte bBit = bTapeData & 0x80;
bTapeData <<= 1;
dwTapeBitsToShift--;
dwTapeDataCount--;
if (bBit) {
dwTapePulseCycles = dwTapeOnePulseCycles;
}
else {
dwTapePulseCycles = dwTapeZeroPulseCycles;
}
dwTapePulseCount = 2; // two pulses = one bit
return 1;
}
return 0; // no more data
}
int Tape_ReadSampleDataBit(void)
{
if (dwTapeDataCount) {
if (!dwTapeBitsToShift) {
bTapeData = *pbTapeBlockData; // get the next data byte
pbTapeBlockData++;
dwTapeBitsToShift = 8;
}
byte bBit = bTapeData & 0x80;
bTapeData <<= 1;
dwTapeBitsToShift--;
dwTapeDataCount--;
if (bBit) {
bTapeLevel = TAPE_LEVEL_HIGH; // set high level
}
else {
bTapeLevel = TAPE_LEVEL_LOW; // set low level
}
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
return 1;
}
return 0; // no more data
}
int Tape_GetNextBlock(void)
{
while (pbTapeBlock < pbTapeImageEnd) { // loop until a valid block is found
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "--- New Block\r\n%02x\r\n", *pbTapeBlock);
#endif
switch (*pbTapeBlock) {
case 0x10: // standard speed data block
dwTapeStage = TAPE_PILOT_STAGE; // block starts with a pilot tone
#ifdef DEBUG_TAPE
fputs("--- PILOT\r\n", pfoDebug);
#endif
dwTapePulseCycles = CYCLE_ADJUST(2168);
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
dwTapePulseCount = 3220;
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
return 1;
case 0x11: // turbo loading data block
dwTapeStage = TAPE_PILOT_STAGE; // block starts with a pilot tone
#ifdef DEBUG_TAPE
fputs("--- PILOT\r\n", pfoDebug);
#endif
dwTapePulseCycles = CYCLE_ADJUST(*(word *)(pbTapeBlock+0x01));
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
dwTapePulseCount = *(word *)(pbTapeBlock+0x01+0x0a);
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
return 1;
case 0x12: // pure tone
dwTapeStage = TAPE_PILOT_STAGE; // block starts with a pilot tone
#ifdef DEBUG_TAPE
fputs("--- TONE\r\n", pfoDebug);
#endif
dwTapePulseCycles = CYCLE_ADJUST(*(word *)(pbTapeBlock+0x01));
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
dwTapePulseCount = *(word *)(pbTapeBlock+0x01+0x02);
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
return 1;
case 0x13: // sequence of pulses of different length
dwTapeStage = TAPE_SYNC_STAGE;
#ifdef DEBUG_TAPE
fputs("--- PULSE SEQ\r\n", pfoDebug);
#endif
dwTapePulseCount = *(pbTapeBlock+0x01);
pwTapePulseTable =
pwTapePulseTablePtr = (word *)(pbTapeBlock+0x01+0x01);
pwTapePulseTableEnd = pwTapePulseTable + dwTapePulseCount;
Tape_GetCycleCount();
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
return 1;
case 0x14: // pure data block
dwTapeStage = TAPE_DATA_STAGE;
#ifdef DEBUG_TAPE
fputs("--- DATA\r\n", pfoDebug);
#endif
dwTapeZeroPulseCycles = CYCLE_ADJUST(*(word *)(pbTapeBlock+0x01)); // pulse length for a zero bit
dwTapeOnePulseCycles = CYCLE_ADJUST(*(word *)(pbTapeBlock+0x01+0x02)); // pulse length for a one bit
dwTapeDataCount = ((*(dword *)(pbTapeBlock+0x01+0x07) & 0x00ffffff) - 1) << 3; // (byte count - 1) * 8 bits
dwTapeDataCount += *(pbTapeBlock+0x01+0x04); // add the number of bits in the last data byte
pbTapeBlockData = pbTapeBlock+0x01+0x0a; // pointer to the tape data
dwTapeBitsToShift = 0;
Tape_ReadDataBit(); // get the first bit of the first data byte
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
return 1;
case 0x15: // direct recording
dwTapeStage = TAPE_SAMPLE_DATA_STAGE;
#ifdef DEBUG_TAPE
fputs("--- SAMPLE DATA\r\n", pfoDebug);
#endif
dwTapePulseCycles = CYCLE_ADJUST(*(word *)(pbTapeBlock+0x01)); // number of T states per sample
dwTapeDataCount = ((*(dword *)(pbTapeBlock+0x01+0x05) & 0x00ffffff) - 1) << 3; // (byte count - 1) * 8 bits
dwTapeDataCount += *(pbTapeBlock+0x01+0x04); // add the number of bits in the last data byte
pbTapeBlockData = pbTapeBlock+0x01+0x08; // pointer to the tape data
dwTapeBitsToShift = 0;
Tape_ReadSampleDataBit(); // get the first bit of the first data byte
return 1;
case 0x20: // pause
if (*(word *)(pbTapeBlock+0x01)) { // was a pause requested?
dwTapeStage = TAPE_PAUSE_STAGE;
#ifdef DEBUG_TAPE
fputs("--- PAUSE\r\n", pfoDebug);
#endif
dwTapePulseCycles = MS_TO_CYCLES(1); // start with a 1ms level opposite to the one last played
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
dwTapePulseCycles = MS_TO_CYCLES(*(word *)(pbTapeBlock+0x01) - 1); // get the actual pause length
dwTapePulseCount = 2; // just one pulse
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
return 1;
}
else {
pbTapeBlock += 2 + 1; // skip block if pause length is 0
}
break;
case 0x21: // group start
pbTapeBlock += *(pbTapeBlock+0x01) + 1 + 1; // nothing to do, skip the block
break;
case 0x22: // group end
pbTapeBlock += 1; // nothing to do, skip the block
break;
case 0x30: // text description
pbTapeBlock += *(pbTapeBlock+0x01) + 1 + 1; // nothing to do, skip the block
break;
case 0x31: // message block
pbTapeBlock += *(pbTapeBlock+0x01+0x01) + 2 + 1; // nothing to do, skip the block
break;
case 0x32: // archive info
pbTapeBlock += *(word *)(pbTapeBlock+0x01) + 2 + 1; // nothing to do, skip the block
break;
case 0x33: // hardware type
pbTapeBlock += (*(pbTapeBlock+0x01) * 3) + 1 + 1; // nothing to do, skip the block
break;
case 0x34: // emulation info
pbTapeBlock += 8 + 1; // nothing to do, skip the block
break;
case 0x35: // custom info block
pbTapeBlock += *(dword *)(pbTapeBlock+0x01+0x10) + 0x14 + 1; // nothing to do, skip the block
break;
case 0x40: // snapshot block
pbTapeBlock += (*(dword *)(pbTapeBlock+0x01+0x01) & 0x00ffffff) + 0x04 + 1; // nothing to do, skip the block
break;
case 0x5A: // another tzx/cdt file
pbTapeBlock += 9 + 1; // nothing to do, skip the block
break;
default: // "extension rule"
pbTapeBlock += *(dword *)(pbTapeBlock+0x01) + 4 + 1; // nothing to do, skip the block
}
}
return 0; // we've reached the end of the image
}
void Tape_BlockDone(void)
{
if (pbTapeBlock < pbTapeImageEnd) {
switch (*pbTapeBlock) {
case 0x10: // standard speed data block
pbTapeBlock += *(word *)(pbTapeBlock+0x01+0x02) + 0x04 + 1;
break;
case 0x11: // turbo loading data block
pbTapeBlock += (*(dword *)(pbTapeBlock+0x01+0x0f) & 0x00ffffff) + 0x12 + 1;
break;
case 0x12: // pure tone
pbTapeBlock += 4 + 1;
break;
case 0x13: // sequence of pulses of different length
pbTapeBlock += *(pbTapeBlock+0x01) * 2 + 1 + 1;
break;
case 0x14: // pure data block
pbTapeBlock += (*(dword *)(pbTapeBlock+0x01+0x07) & 0x00ffffff) + 0x0a + 1;
break;
case 0x15: // direct recording
pbTapeBlock += (*(dword *)(pbTapeBlock+0x01+0x05) & 0x00ffffff) + 0x08 + 1;
break;
case 0x20: // pause
pbTapeBlock += 2 + 1;
break;
}
if (!Tape_GetNextBlock()) {
dwTapeStage = TAPE_END;
CPC.tape_play_button = 0;
}
}
}
void Tape_UpdateLevel(void)
{
switch (dwTapeStage) {
case TAPE_PILOT_STAGE:
Tape_SwitchLevel();
dwTapePulseCount--;
if (dwTapePulseCount > 0) { // is the pilot tone still playing?
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
}
else { // finished with the pilot tone
switch (*pbTapeBlock) {
case 0x10: // standard speed data block
dwTapeStage = TAPE_SYNC_STAGE;
#ifdef DEBUG_TAPE
fputs("--- SYNC\r\n", pfoDebug);
#endif
wCycleTable[0] = 667;
wCycleTable[1] = 735;
pwTapePulseTable =
pwTapePulseTablePtr = &wCycleTable[0];
pwTapePulseTableEnd = &wCycleTable[2];
Tape_GetCycleCount();
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
dwTapePulseCount = 2;
break;
case 0x11: // turbo loading data block
dwTapeStage = TAPE_SYNC_STAGE;
#ifdef DEBUG_TAPE
fputs("--- SYNC\r\n", pfoDebug);
#endif
pwTapePulseTable =
pwTapePulseTablePtr = (word *)(pbTapeBlock+0x01+0x02);
pwTapePulseTableEnd = (word *)(pbTapeBlock+0x01+0x06);
Tape_GetCycleCount();
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
dwTapePulseCount = 2;
break;
case 0x12: // pure tone
Tape_BlockDone();
break;
}
}
break;
case TAPE_SYNC_STAGE:
Tape_SwitchLevel();
dwTapePulseCount--;
if (dwTapePulseCount > 0) {
Tape_GetCycleCount();
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
}
else {
switch (*pbTapeBlock) {
case 0x10: // standard speed data block
dwTapeStage = TAPE_DATA_STAGE;
#ifdef DEBUG_TAPE
fputs("--- DATA\r\n", pfoDebug);
#endif
dwTapeZeroPulseCycles = CYCLE_ADJUST(855); // pulse length for a zero bit
dwTapeOnePulseCycles = CYCLE_ADJUST(1710); // pulse length for a one bit
dwTapeDataCount = *(word *)(pbTapeBlock+0x01+0x02) << 3; // byte count * 8 bits;
pbTapeBlockData = pbTapeBlock+0x01+0x04; // pointer to the tape data
dwTapeBitsToShift = 0;
Tape_ReadDataBit();
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
break;
case 0x11: // turbo loading data block
dwTapeStage = TAPE_DATA_STAGE;
#ifdef DEBUG_TAPE
fputs("--- DATA\r\n", pfoDebug);
#endif
dwTapeZeroPulseCycles = CYCLE_ADJUST(*(word *)(pbTapeBlock+0x01+0x06)); // pulse length for a zero bit
dwTapeOnePulseCycles = CYCLE_ADJUST(*(word *)(pbTapeBlock+0x01+0x08)); // pulse length for a one bit
dwTapeDataCount = ((*(dword *)(pbTapeBlock+0x01+0x0f) & 0x00ffffff) - 1) << 3; // (byte count - 1) * 8 bits;
dwTapeDataCount += *(pbTapeBlock+0x01+0x0c); // add the number of bits in the last data byte
pbTapeBlockData = pbTapeBlock+0x01+0x12; // pointer to the tape data
dwTapeBitsToShift = 0;
Tape_ReadDataBit();
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
break;
case 0x13: // sequence of pulses of different length
Tape_BlockDone();
break;
}
}
break;
case TAPE_DATA_STAGE:
Tape_SwitchLevel();
dwTapePulseCount--;
if (dwTapePulseCount > 0) {
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
}
else {
if (Tape_ReadDataBit()) {
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
}
else {
switch (*pbTapeBlock) {
case 0x10: // standard speed data block
if (*(word *)(pbTapeBlock+0x01)) { // was a pause requested?
dwTapeStage = TAPE_PAUSE_STAGE;
#ifdef DEBUG_TAPE
fputs("--- PAUSE\r\n", pfoDebug);
#endif
dwTapePulseCycles = MS_TO_CYCLES(1); // start with a 1ms level opposite to the one last played
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
dwTapePulseCycles = MS_TO_CYCLES(*(word *)(pbTapeBlock+0x01) - 1); // pause in ms
dwTapePulseCount = 2; // just one pulse
}
else {
Tape_BlockDone();
}
break;
case 0x11: // turbo loading data block
if (*(word *)(pbTapeBlock+0x01+0x0d)) { // was a pause requested?
dwTapeStage = TAPE_PAUSE_STAGE;
#ifdef DEBUG_TAPE
fputs("--- PAUSE\r\n", pfoDebug);
#endif
dwTapePulseCycles = MS_TO_CYCLES(1); // start with a 1ms level opposite to the one last played
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
dwTapePulseCycles = MS_TO_CYCLES(*(word *)(pbTapeBlock+0x01+0x0d) - 1); // pause in ms
dwTapePulseCount = 2; // just one pulse
}
else {
Tape_BlockDone();
}
break;
case 0x14: // pure data block
if (*(word *)(pbTapeBlock+0x01+0x05)) { // was a pause requested?
dwTapeStage = TAPE_PAUSE_STAGE;
#ifdef DEBUG_TAPE
fputs("--- PAUSE\r\n", pfoDebug);
#endif
dwTapePulseCycles = MS_TO_CYCLES(1); // start with a 1ms level opposite to the one last played
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
dwTapePulseCycles = MS_TO_CYCLES(*(word *)(pbTapeBlock+0x01+0x05) - 1); // pause in ms
dwTapePulseCount = 2; // just one pulse
}
else {
Tape_BlockDone();
}
break;
default:
Tape_BlockDone();
}
}
}
break;
case TAPE_SAMPLE_DATA_STAGE:
if (!Tape_ReadSampleDataBit()) {
if (*(word *)(pbTapeBlock+0x01+0x02)) { // was a pause requested?
dwTapeStage = TAPE_PAUSE_STAGE;
#ifdef DEBUG_TAPE
fputs("--- PAUSE\r\n", pfoDebug);
#endif
dwTapePulseCycles = MS_TO_CYCLES(1); // start with a 1ms level opposite to the one last played
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
dwTapePulseCycles = MS_TO_CYCLES(*(word *)(pbTapeBlock+0x01+0x02) - 1); // pause in ms
dwTapePulseCount = 2; // just one pulse
}
else {
Tape_BlockDone();
}
}
break;
case TAPE_PAUSE_STAGE:
bTapeLevel = TAPE_LEVEL_LOW;
dwTapePulseCount--;
if (dwTapePulseCount > 0) {
iTapeCycleCount += (int)dwTapePulseCycles; // set cycle count for current level
#ifdef DEBUG_TAPE
fprintf(pfoDebug, "%c %d\r\n",(bTapeLevel == TAPE_LEVEL_HIGH ? 'H':'L'), iTapeCycleCount);
#endif
}
else {
Tape_BlockDone();
}
break;
case TAPE_END:
CPC.tape_play_button = 0;
break;
}
}
void Tape_Rewind(void)
{
pbTapeBlock = pbTapeImage;
bTapeLevel = TAPE_LEVEL_LOW;
iTapeCycleCount = 0;
CPC.tape_play_button = 0;
Tape_GetNextBlock();
}