additional movie tweaking
[picodrive.git] / Pico / VideoPort.c
index 024cf6f..75267c3 100644 (file)
@@ -53,11 +53,12 @@ static unsigned int VideoRead()
     case 8: d=Pico.cram [a&0x003f]; break;\r
     case 4: d=Pico.vsram[a&0x003f]; break;\r
   }\r
-  \r
+\r
   AutoIncrement();\r
   return d;\r
 }\r
 \r
+#if 0\r
 // calculate the number of cycles 68k->VDP dma operation would take\r
 static int DmaSlowBurn(int len)\r
 {\r
@@ -75,6 +76,7 @@ static int DmaSlowBurn(int len)
 \r
   return burn;\r
 }\r
+#endif\r
 \r
 static int GetDmaLength()\r
 {\r
@@ -93,28 +95,37 @@ static void DmaSlow(int len)
   u16 *pd=0, *pdend, *r;\r
   unsigned int a=Pico.video.addr, a2, d;\r
   unsigned char inc=Pico.video.reg[0xf];\r
-  unsigned int source, burn;\r
+  unsigned int source; // , burn;\r
 \r
   source =Pico.video.reg[0x15]<<1;\r
   source|=Pico.video.reg[0x16]<<9;\r
   source|=Pico.video.reg[0x17]<<17;\r
 \r
-  //dprintf("DmaSlow[%i] %06x->%04x len %i inc=%i blank %i [%i|%i]", Pico.video.type, source, a, len, inc,\r
-  //         (Pico.video.status&8)||!(Pico.video.reg[1]&0x40), Pico.m.scanline, SekCyclesDone());\r
+  dprintf("DmaSlow[%i] %06x->%04x len %i inc=%i blank %i [%i|%i] @ %x",\r
+    Pico.video.type, source, a, len, inc, (Pico.video.status&8)||!(Pico.video.reg[1]&0x40),\r
+    Pico.m.scanline, SekCyclesDone(), SekPc);\r
 \r
   if ((source&0xe00000)==0xe00000) { pd=(u16 *)(Pico.ram+(source&0xfffe)); pdend=(u16 *)(Pico.ram+0x10000); } // Ram\r
   else if(source<Pico.romsize)     { pd=(u16 *)(Pico.rom+(source&~1)); pdend=(u16 *)(Pico.rom+Pico.romsize); } // Rom\r
   else return; // Invalid source address\r
 \r
+#if 0\r
   // CPU is stopped during DMA, so we burn some cycles to compensate that\r
   if((Pico.video.status&8)||!(Pico.video.reg[1]&0x40)) { // vblank?\r
       burn = (len*(((488<<8)/167))>>8); // very approximate\r
       if(!(Pico.video.status&8)) burn+=burn>>1; // a hack for Legend of Galahad\r
   } else burn = DmaSlowBurn(len);\r
   SekCyclesBurn(burn);\r
-  if(!(Pico.video.status&8))\r
-    SekEndRun(0);\r
-  //dprintf("DmaSlow burn: %i @ %06x", burn, SekPc);\r
+#else\r
+  Pico.m.dma_bytes += len;\r
+#endif\r
+  //if(!(Pico.video.status&8))\r
+//    SekEndRun(0);\r
+       //Pico.m.dma_endcycles  = 0;//SekCyclesLeft;\r
+       //Pico.m.dma_endcycles -= Pico.m.dma_endcycles>>3; // hack\r
+       SekSetCyclesLeft(SekCyclesLeft - CheckDMA());\r
+//    CheckDMA();\r
+//  dprintf("DmaSlow burn: %i @ %06x", burn, SekPc);\r
 \r
   switch (Pico.video.type)\r
   {\r
@@ -132,10 +143,8 @@ static void DmaSlow(int len)
       }\r
       rendstatus|=0x10;\r
       break;\r
-    \r
+\r
     case 3: // cram\r
-      //dprintf("DmaSlow[%i] %06x->%04x len %i inc=%i blank %i [%i|%i]", Pico.video.type, source, a, len, inc,\r
-      //         (Pico.video.status&8)||!(Pico.video.reg[1]&0x40), Pico.m.scanline, SekCyclesDone());\r
       Pico.m.dirtyPal = 1;\r
       r = Pico.cram;\r
       for(a2=a&0x7f; len; len--)\r
@@ -177,7 +186,11 @@ static void DmaCopy(int len)
   unsigned char *vrs;\r
   unsigned char inc=Pico.video.reg[0xf];\r
   int source;\r
-  //dprintf("DmaCopy len %i [%i|%i]", len, Pico.m.scanline, SekCyclesDone());\r
+  dprintf("DmaCopy len %i [%i|%i]", len, Pico.m.scanline, SekCyclesDone());\r
+\r
+  Pico.m.dma_bytes += len;\r
+  if(Pico.m.scanline != -1)\r
+    Pico.video.status|=2; // dma busy\r
 \r
   source =Pico.video.reg[0x15];\r
   source|=Pico.video.reg[0x16]<<8;\r
@@ -205,9 +218,13 @@ static void DmaFill(int data)
   unsigned char *vr=(unsigned char *) Pico.vram;\r
   unsigned char high = (unsigned char) (data >> 8);\r
   unsigned char inc=Pico.video.reg[0xf];\r
-  \r
+\r
   len=GetDmaLength();\r
-  //dprintf("DmaFill len %i inc %i [%i|%i]", len, inc, Pico.m.scanline, SekCyclesDone());\r
+  dprintf("DmaFill len %i inc %i [%i|%i]", len, inc, Pico.m.scanline, SekCyclesDone());\r
+\r
+  Pico.m.dma_bytes += len;\r
+  if(Pico.m.scanline != -1)\r
+    Pico.video.status|=2; // dma busy (in accurate mode)\r
 \r
   // from Charles MacDonald's genvdp.txt:\r
   // Write lower byte to address specified\r
@@ -273,7 +290,7 @@ void PicoVideoWrite(unsigned int a,unsigned short d)
   a&=0x1c;\r
 \r
   if (a==0x00) // Data port 0 or 2\r
-  {    \r
+  {\r
     if (pvid->pending) CommandChange();\r
     pvid->pending=0;\r
 \r
@@ -304,8 +321,8 @@ void PicoVideoWrite(unsigned int a,unsigned short d)
       {\r
         // Register write:\r
         int num=(d>>8)&0x1f;\r
-        //if(num==00) dprintf("hint_onoff: %i->%i [%i|%i] pend=%i @ %06x", (pvid->reg[0]&0x10)>>4, (d&0x10)>>4, Pico.m.scanline, SekCyclesDone(), (pvid->pending_ints&0x10)>>4, SekPc);\r
-        //if(num==01) dprintf("vint_onoff: %i->%i [%i|%i] pend=%i @ %06x", (pvid->reg[1]&0x20)>>5, (d&0x20)>>5, Pico.m.scanline, SekCyclesDone(), (pvid->pending_ints&0x20)>>5, SekPc);\r
+        if(num==00) dprintf("hint_onoff: %i->%i [%i|%i] pend=%i @ %06x", (pvid->reg[0]&0x10)>>4, (d&0x10)>>4, Pico.m.scanline, SekCyclesDone(), (pvid->pending_ints&0x10)>>4, SekPc);\r
+        if(num==01) dprintf("vint_onoff: %i->%i [%i|%i] pend=%i @ %06x", (pvid->reg[1]&0x20)>>5, (d&0x20)>>5, Pico.m.scanline, SekCyclesDone(), (pvid->pending_ints&0x20)>>5, SekPc);\r
         //if(num==01) dprintf("set_blank: %i @ %06x [%i|%i]", !((d&0x40)>>6), SekPc, Pico.m.scanline, SekCyclesDone());\r
         //if(num==05) dprintf("spr_set: %i @ %06x [%i|%i]", (unsigned char)d, SekPc, Pico.m.scanline, SekCyclesDone());\r
         //if(num==10) dprintf("hint_set: %i @ %06x [%i|%i]", (unsigned char)d, SekPc, Pico.m.scanline, SekCyclesDone());\r
@@ -351,7 +368,7 @@ void PicoVideoWrite(unsigned int a,unsigned short d)
 unsigned int PicoVideoRead(unsigned int a)\r
 {\r
   unsigned int d=0;\r
-  \r
+\r
   a&=0x1c;\r
 \r
   if (a==0x00) // data port\r
@@ -362,12 +379,12 @@ unsigned int PicoVideoRead(unsigned int a)
 \r
   if (a==0x04) // control port\r
   {\r
-    //dprintf("sr_read @ %06x [%i|%i]", SekPc, Pico.m.scanline, SekCyclesDone());\r
     d=Pico.video.status;\r
     if(PicoOpt&0x10) d|=0x0020; // sprite collision (Shadow of the Beast)\r
     if(Pico.m.rotate++&8) d|=0x0100; else d|=0x0200; // Toggle fifo full empty (who uses that stuff?)\r
     if(!(Pico.video.reg[1]&0x40)) d|=0x0008; // set V-Blank if display is disabled\r
     if(SekCyclesLeft < 84+4)      d|=0x0004; // H-Blank (Sonic3 vs)\r
+    dprintf("sr_read %04x @ %06x [%i|%i]", d, SekPc, Pico.m.scanline, SekCyclesDone());\r
 \r
     Pico.video.pending=0; // ctrl port reads clear write-pending flag (Charles MacDonald)\r
 \r
@@ -387,7 +404,7 @@ unsigned int PicoVideoRead(unsigned int a)
   // |---------------------|--------------------------|\r
   // E4  (hc[0x43]==0)    07                         B1 // 40\r
   // E8  (hc[0x45]==0)    05                         91 // 32\r
-  \r
+\r
   // check: Sonic 3D Blast bonus, Cannon Fodder, Chase HQ II, 3 Ninjas kick back, Road Rash 3, Skitchin', Wheel of Fortune\r
   if ((a&0x1c)==0x08)\r
   {\r
@@ -401,7 +418,7 @@ unsigned int PicoVideoRead(unsigned int a)
            hc=hcounts_40[lineCycles];\r
       else hc=hcounts_32[lineCycles];\r
 \r
-      if(lineCycles > 488-12) d++; // Wheel of Fortune\r
+      //if(lineCycles > 488-12) d++; // Wheel of Fortune\r
     } else {\r
       // get approximate V-Counter\r
       d=vcounts[SekCyclesDone()>>8];\r
@@ -420,7 +437,7 @@ unsigned int PicoVideoRead(unsigned int a)
       if (d&0xf00) d|= 1;\r
     }\r
 \r
-    //dprintf("hv: %02x %02x (%i) @ %06x", hc, d, SekCyclesDone(), SekPc);\r
+    dprintf("hv: %02x %02x (%i) @ %06x", hc, d, SekCyclesDone(), SekPc);\r
     d&=0xff; d<<=8;\r
     d|=hc;\r
     goto end;\r