menu text adjustment
[picodrive.git] / Pico / PicoFrameHints.c
CommitLineData
8b99ab90 1// common code for Pico.c and cd/Pico.c
fad24893 2// (c) Copyright 2007,2008 Grazvydas "notaz" Ignotas
8b99ab90 3
69996cb7 4#define CYCLES_M68K_LINE 488 // suitable for both PAL/NTSC
5#define CYCLES_M68K_VINT_LAG 68
6#define CYCLES_M68K_ASD 148
bf5fbbb4 7#define CYCLES_S68K_LINE 795
8#define CYCLES_S68K_ASD 241
69996cb7 9
10// pad delay (for 6 button pads)
11#define PAD_DELAY \
602133e1 12 if (PicoOpt&POPT_6BTN_PAD) { \
69996cb7 13 if(Pico.m.padDelay[0]++ > 25) Pico.m.padTHPhase[0]=0; \
14 if(Pico.m.padDelay[1]++ > 25) Pico.m.padTHPhase[1]=0; \
15 }
16
bf5fbbb4 17// CPUS_RUN
18#ifndef PICO_CD
538a6098 19#define CPUS_RUN(m68k_cycles,s68k_cycles) \
4b9c5888 20 SekRunM68k(m68k_cycles);
bf5fbbb4 21#else
538a6098 22#define CPUS_RUN(m68k_cycles,s68k_cycles) \
bf5fbbb4 23{ \
602133e1 24 if ((PicoOpt&POPT_EN_MCD_PSYNC) && (Pico_mcd->m.busreq&3) == 1) { \
bf5fbbb4 25 SekRunPS(m68k_cycles, s68k_cycles); /* "better/perfect sync" */ \
26 } else { \
27 SekRunM68k(m68k_cycles); \
28 if ((Pico_mcd->m.busreq&3) == 1) /* no busreq/no reset */ \
29 SekRunS68k(s68k_cycles); \
30 } \
bf5fbbb4 31}
32#endif
33
69996cb7 34// Accurate but slower frame which does hints
35static int PicoFrameHints(void)
36{
37 struct PicoVideo *pv=&Pico.video;
4b9c5888 38 int lines, y, lines_vis = 224, line_sample, skip;
69996cb7 39 int hint; // Hint counter
40
538a6098 41 Pico.m.scanline=0;
42
602133e1 43 if ((PicoOpt&POPT_ALT_RENDERER) && !PicoSkipFrame && (pv->reg[1]&0x40)) { // fast rend., display enabled
03e4f2a3 44 // draw a frame just after vblank in alternative render mode
45 // yes, this will cause 1 frame lag, but this is inaccurate mode anyway.
46 PicoFrameFull();
47#ifdef DRAW_FINISH_FUNC
48 DRAW_FINISH_FUNC();
49#endif
50 skip = 1;
51 }
52 else skip=PicoSkipFrame;
53
69996cb7 54 if (Pico.m.pal) {
69996cb7 55 line_sample = 68;
56 if(pv->reg[1]&8) lines_vis = 240;
57 } else {
69996cb7 58 line_sample = 93;
59 }
60
61 SekCyclesReset();
4b9c5888 62 z80_resetCycles();
bf5fbbb4 63#ifdef PICO_CD
64 SekCyclesResetS68k();
65#endif
4b9c5888 66 PsndDacLine = 0;
69996cb7 67
68 pv->status&=~0x88; // clear V-Int, come out of vblank
69
70 hint=pv->reg[10]; // Load H-Int counter
71 //dprintf("-hint: %i", hint);
72
73 // This is to make active scan longer (needed for Double Dragon 2, mainly)
538a6098 74 CPUS_RUN(CYCLES_M68K_ASD, CYCLES_S68K_ASD);
69996cb7 75
76 for (y=0;y<lines_vis;y++)
77 {
78 Pico.m.scanline=(short)y;
79
80 // VDP FIFO
81 pv->lwrite_cnt -= 12;
82 if (pv->lwrite_cnt <= 0) {
83 pv->lwrite_cnt=0;
84 Pico.video.status|=0x200;
85 }
86
87 PAD_DELAY
bf5fbbb4 88#ifdef PICO_CD
89 check_cd_dma();
90#endif
69996cb7 91
92 // H-Interrupts:
93 if (--hint < 0) // y <= lines_vis: Comix Zone, Golden Axe
94 {
95 hint=pv->reg[10]; // Reload H-Int counter
96 pv->pending_ints|=0x10;
97 if (pv->reg[0]&0x10) {
98 elprintf(EL_INTS, "hint: @ %06x [%i]", SekPc, SekCycleCnt);
99 SekInterrupt(4);
100 }
101 }
102
103 // decide if we draw this line
fad24893 104 if (!skip)
105 {
602133e1 106 if (PicoOpt&POPT_ALT_RENDERER) {
fad24893 107 // find the right moment for fast renderer, when display is no longer blanked
108 if ((pv->reg[1]&0x40) || y > 100) {
109 PicoFrameFull();
110#ifdef DRAW_FINISH_FUNC
111 DRAW_FINISH_FUNC();
112#endif
113 skip = 1;
114 }
115 }
116 else
117 {
385a8491 118#if !CAN_HANDLE_240_LINES
fad24893 119 if (y < 224)
69996cb7 120#endif
fad24893 121 PicoLine(y);
122 }
123 }
69996cb7 124
bf5fbbb4 125#ifndef PICO_CD
69996cb7 126 // get samples from sound chips
fad24893 127 if (y == 32 && PsndOut)
69996cb7 128 emustatus &= ~1;
fad24893 129 else if ((y == 224 || y == line_sample) && PsndOut)
4b9c5888 130 {
131 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80))
132 PicoSyncZ80(SekCycleCnt);
133 if (ym2612.dacen && PsndDacLine <= y)
134 PsndDoDAC(y);
69996cb7 135 getSamples(y);
4b9c5888 136 }
bf5fbbb4 137#endif
69996cb7 138
139 // Run scanline:
140 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
538a6098 141 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
bf5fbbb4 142
143#ifdef PICO_CD
144 update_chips();
017512f2 145#else
0ffefdb8 146 if (PicoLineHook) PicoLineHook(1);
bf5fbbb4 147#endif
69996cb7 148 }
149
8ab3e3c1 150#ifdef DRAW_FINISH_FUNC
03e4f2a3 151 if (!skip)
152 DRAW_FINISH_FUNC();
8ab3e3c1 153#endif
154
69996cb7 155 // V-int line (224 or 240)
156 Pico.m.scanline=(short)y;
157
158 // VDP FIFO
159 pv->lwrite_cnt=0;
160 Pico.video.status|=0x200;
161
162 PAD_DELAY
bf5fbbb4 163#ifdef PICO_CD
164 check_cd_dma();
165#endif
69996cb7 166
167 // Last H-Int:
168 if (--hint < 0)
169 {
170 hint=pv->reg[10]; // Reload H-Int counter
171 pv->pending_ints|=0x10;
172 //printf("rhint: %i @ %06x [%i|%i]\n", hint, SekPc, y, SekCycleCnt);
173 if (pv->reg[0]&0x10) SekInterrupt(4);
174 }
175
176 // V-Interrupt:
177 pv->status|=0x08; // go into vblank
178 pv->pending_ints|=0x20;
179
180 // the following SekRun is there for several reasons:
181 // there must be a delay after vblank bit is set and irq is asserted (Mazin Saga)
182 // also delay between F bit (bit 7) is set in SR and IRQ happens (Ex-Mutants)
183 // also delay between last H-int and V-int (Golden Axe 3)
bf5fbbb4 184 SekRunM68k(CYCLES_M68K_VINT_LAG);
4b9c5888 185
69996cb7 186 if (pv->reg[1]&0x20) {
187 elprintf(EL_INTS, "vint: @ %06x [%i]", SekPc, SekCycleCnt);
188 SekInterrupt(6);
189 }
583ab72c 190 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80)) {
4b9c5888 191 PicoSyncZ80(SekCycleCnt);
583ab72c 192 elprintf(EL_INTS, "zint");
69996cb7 193 z80_int();
583ab72c 194 }
69996cb7 195
69996cb7 196 // get samples from sound chips
bf5fbbb4 197#ifndef PICO_CD
198 if (y == 224)
199#endif
200 if (PsndOut)
4b9c5888 201 {
202 if (ym2612.dacen && PsndDacLine <= y)
203 PsndDoDAC(y);
bf5fbbb4 204 getSamples(y);
4b9c5888 205 }
69996cb7 206
207 // Run scanline:
208 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
bf5fbbb4 209 CPUS_RUN(CYCLES_M68K_LINE - CYCLES_M68K_VINT_LAG - CYCLES_M68K_ASD,
538a6098 210 CYCLES_S68K_LINE - CYCLES_S68K_ASD);
bf5fbbb4 211
212#ifdef PICO_CD
017512f2 213 update_chips();
214#else
0ffefdb8 215 if (PicoLineHook) PicoLineHook(1);
bf5fbbb4 216#endif
69996cb7 217
218 // PAL line count might actually be 313 according to Steve Snake, but that would complicate things.
219 lines = Pico.m.pal ? 312 : 262;
220
221 for (y++;y<lines;y++)
222 {
223 Pico.m.scanline=(short)y;
224
225 PAD_DELAY
bf5fbbb4 226#ifdef PICO_CD
227 check_cd_dma();
228#endif
69996cb7 229
69996cb7 230 // Run scanline:
231 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
538a6098 232 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
bf5fbbb4 233
234#ifdef PICO_CD
235 update_chips();
017512f2 236#else
0ffefdb8 237 if (PicoLineHook) PicoLineHook(1);
bf5fbbb4 238#endif
69996cb7 239 }
240
4b9c5888 241 // sync z80
242 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80))
e53704e6 243 PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
4b9c5888 244 if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)
245 PsndDoDAC(lines-1);
246
e53704e6 247 timers_cycle();
248
69996cb7 249 return 0;
250}
251
252#undef PAD_DELAY
bf5fbbb4 253#undef CPUS_RUN
69996cb7 254