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