line draw deferment implemented
[picodrive.git] / Pico / PicoFrameHints.c
... / ...
CommitLineData
1// common code for Pico.c and cd/Pico.c
2// (c) Copyright 2007,2008 Grazvydas "notaz" Ignotas
3
4#define CYCLES_M68K_LINE 488 // suitable for both PAL/NTSC
5#define CYCLES_M68K_VINT_LAG 68
6#define CYCLES_M68K_ASD 148
7#define CYCLES_S68K_LINE 795
8#define CYCLES_S68K_ASD 241
9
10// pad delay (for 6 button pads)
11#define PAD_DELAY \
12 if (PicoOpt&POPT_6BTN_PAD) { \
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
17// CPUS_RUN
18#ifndef PICO_CD
19#define CPUS_RUN(m68k_cycles,s68k_cycles) \
20 SekRunM68k(m68k_cycles);
21#else
22#define CPUS_RUN(m68k_cycles,s68k_cycles) \
23{ \
24 if ((PicoOpt&POPT_EN_MCD_PSYNC) && (Pico_mcd->m.busreq&3) == 1) { \
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 } \
31}
32#endif
33
34// Accurate but slower frame which does hints
35static int PicoFrameHints(void)
36{
37 struct PicoVideo *pv=&Pico.video;
38 int lines, y, lines_vis = 224, line_sample, skip;
39 int hint; // Hint counter
40
41 Pico.m.scanline=0;
42
43 if ((PicoOpt&POPT_ALT_RENDERER) && !PicoSkipFrame && (pv->reg[1]&0x40)) { // fast rend., display enabled
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
54 if (Pico.m.pal) {
55 line_sample = 68;
56 if(pv->reg[1]&8) lines_vis = 240;
57 } else {
58 line_sample = 93;
59 }
60
61 SekCyclesReset();
62 z80_resetCycles();
63#ifdef PICO_CD
64 SekCyclesResetS68k();
65#endif
66 PsndDacLine = 0;
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)
74 CPUS_RUN(CYCLES_M68K_ASD, CYCLES_S68K_ASD);
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
88#ifdef PICO_CD
89 check_cd_dma();
90#endif
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
104 if (!skip && (PicoOpt & POPT_ALT_RENDERER))
105 {
106 // find the right moment for frame renderer, when display is no longer blanked
107 if ((pv->reg[1]&0x40) || y > 100) {
108 PicoFrameFull();
109#ifdef DRAW_FINISH_FUNC
110 DRAW_FINISH_FUNC();
111#endif
112 skip = 1;
113 }
114 }
115
116#ifndef PICO_CD
117 // get samples from sound chips
118 if (y == 32 && PsndOut)
119 emustatus &= ~1;
120 else if ((y == 224 || y == line_sample) && PsndOut)
121 {
122 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80))
123 PicoSyncZ80(SekCycleCnt);
124 if (ym2612.dacen && PsndDacLine <= y)
125 PsndDoDAC(y);
126 getSamples(y);
127 }
128#endif
129
130 // Run scanline:
131 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
132 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
133
134#ifdef PICO_CD
135 update_chips();
136#else
137 if (PicoLineHook) PicoLineHook(1);
138#endif
139 }
140
141 if (!skip)
142 {
143 if (DrawScanline < y)
144 PicoDrawSync(y - 1, 0);
145#ifdef DRAW_FINISH_FUNC
146 DRAW_FINISH_FUNC();
147#endif
148 }
149
150 // V-int line (224 or 240)
151 Pico.m.scanline=(short)y;
152
153 // VDP FIFO
154 pv->lwrite_cnt=0;
155 Pico.video.status|=0x200;
156
157 PAD_DELAY
158#ifdef PICO_CD
159 check_cd_dma();
160#endif
161
162 // Last H-Int:
163 if (--hint < 0)
164 {
165 hint=pv->reg[10]; // Reload H-Int counter
166 pv->pending_ints|=0x10;
167 //printf("rhint: %i @ %06x [%i|%i]\n", hint, SekPc, y, SekCycleCnt);
168 if (pv->reg[0]&0x10) SekInterrupt(4);
169 }
170
171 // V-Interrupt:
172 pv->status|=0x08; // go into vblank
173 pv->pending_ints|=0x20;
174
175 // the following SekRun is there for several reasons:
176 // there must be a delay after vblank bit is set and irq is asserted (Mazin Saga)
177 // also delay between F bit (bit 7) is set in SR and IRQ happens (Ex-Mutants)
178 // also delay between last H-int and V-int (Golden Axe 3)
179 SekRunM68k(CYCLES_M68K_VINT_LAG);
180
181 if (pv->reg[1]&0x20) {
182 elprintf(EL_INTS, "vint: @ %06x [%i]", SekPc, SekCycleCnt);
183 SekInterrupt(6);
184 }
185 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80)) {
186 PicoSyncZ80(SekCycleCnt);
187 elprintf(EL_INTS, "zint");
188 z80_int();
189 }
190
191 // get samples from sound chips
192#ifndef PICO_CD
193 if (y == 224)
194#endif
195 if (PsndOut)
196 {
197 if (ym2612.dacen && PsndDacLine <= y)
198 PsndDoDAC(y);
199 getSamples(y);
200 }
201
202 // Run scanline:
203 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
204 CPUS_RUN(CYCLES_M68K_LINE - CYCLES_M68K_VINT_LAG - CYCLES_M68K_ASD,
205 CYCLES_S68K_LINE - CYCLES_S68K_ASD);
206
207#ifdef PICO_CD
208 update_chips();
209#else
210 if (PicoLineHook) PicoLineHook(1);
211#endif
212
213 // PAL line count might actually be 313 according to Steve Snake, but that would complicate things.
214 lines = Pico.m.pal ? 312 : 262;
215
216 for (y++; y < lines; y++)
217 {
218 Pico.m.scanline=(short)y;
219
220 PAD_DELAY
221#ifdef PICO_CD
222 check_cd_dma();
223#endif
224
225 // Run scanline:
226 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
227 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
228
229#ifdef PICO_CD
230 update_chips();
231#else
232 if (PicoLineHook) PicoLineHook(1);
233#endif
234 }
235
236 // sync z80
237 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80))
238 PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
239 if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)
240 PsndDoDAC(lines-1);
241
242 timers_cycle();
243
244 return 0;
245}
246
247#undef PAD_DELAY
248#undef CPUS_RUN
249