some skin adjustments
[picodrive.git] / Pico / VideoPort.c
index 7f3d009..d70bbb5 100644 (file)
@@ -1,19 +1,21 @@
 // This is part of Pico Library\r
 \r
 // (c) Copyright 2004 Dave, All rights reserved.\r
-// (c) Copyright 2006 notaz, All rights reserved.\r
+// (c) Copyright 2006-2007, Grazvydas "notaz" Ignotas\r
 // Free for non-commercial use.\r
 \r
 // For commercial use, separate licencing terms must be obtained.\r
 \r
 \r
 #include "PicoInt.h"\r
+#include "cd/gfx_cd.h"\r
 \r
 extern const unsigned char  hcounts_32[];\r
 extern const unsigned char  hcounts_40[];\r
 extern const unsigned short vcounts[];\r
 extern int rendstatus;\r
 \r
+typedef unsigned char  u8;\r
 typedef unsigned short u16;\r
 \r
 \r
@@ -58,26 +60,6 @@ static unsigned int VideoRead()
   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
-  // test: Legend of Galahad, Time Killers\r
-  int burn,maxlen,line=Pico.m.scanline;\r
-\r
-  if(line == -1) line=vcounts[SekCyclesDone()>>8];\r
-  maxlen=(224-line)*18;\r
-  if(len <= maxlen)\r
-    burn = len*(((488<<8)/18))>>8;\r
-  else {\r
-    burn  = maxlen*(((488<<8)/18))>>8;\r
-    burn += (len-maxlen)*(((488<<8)/180))>>8;\r
-  }\r
-\r
-  return burn;\r
-}\r
-#endif\r
-\r
 static int GetDmaLength()\r
 {\r
   struct PicoVideo *pvid=&Pico.video;\r
@@ -95,7 +77,7 @@ 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;\r
 \r
   source =Pico.video.reg[0x15]<<1;\r
   source|=Pico.video.reg[0x16]<<9;\r
@@ -105,41 +87,84 @@ static void DmaSlow(int len)
     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
-#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
+  if(Pico.m.scanline != -1) {\r
+    Pico.m.dma_bytes += len;\r
+    if ((PicoMCD&1) && (PicoOpt & 0x2000)) SekCyclesBurn(CheckDMA());\r
+    else SekSetCyclesLeftNoMCD(SekCyclesLeftNoMCD - CheckDMA());\r
+  } else {\r
+    // be approximate in non-accurate mode\r
+    SekSetCyclesLeft(SekCyclesLeft - (len*(((488<<8)/167))>>8));\r
+  }\r
+\r
+  if ((source&0xe00000)==0xe00000) { // Ram\r
+    pd=(u16 *)(Pico.ram+(source&0xfffe));\r
+    pdend=(u16 *)(Pico.ram+0x10000);\r
+  } else if(PicoMCD & 1) {\r
+    dprintf("DmaSlow CD, r3=%02x", Pico_mcd->s68k_regs[3]);\r
+    if(source<0x20000) { // Bios area\r
+      pd=(u16 *)(Pico_mcd->bios+(source&~1));\r
+      pdend=(u16 *)(Pico_mcd->bios+0x20000);\r
+    } else if ((source&0xfc0000)==0x200000) { // Word Ram\r
+      source -= 2;\r
+      if (!(Pico_mcd->s68k_regs[3]&4)) { // 2M mode\r
+        pd=(u16 *)(Pico_mcd->word_ram2M+(source&0x3fffe));\r
+        pdend=(u16 *)(Pico_mcd->word_ram2M+0x40000);\r
+      } else {\r
+        if (source < 0x220000) { // 1M mode\r
+          int bank = Pico_mcd->s68k_regs[3]&1;\r
+          pd=(u16 *)(Pico_mcd->word_ram1M[bank]+(source&0x1fffe));\r
+          pdend=(u16 *)(Pico_mcd->word_ram1M[bank]+0x20000);\r
+       } else {\r
+          DmaSlowCell(source, a, len, inc);\r
+          return;\r
+       }\r
+      }\r
+    } else if ((source&0xfe0000)==0x020000) { // Prg Ram\r
+      u8 *prg_ram = Pico_mcd->prg_ram_b[Pico_mcd->s68k_regs[3]>>6];\r
+      pd=(u16 *)(prg_ram+(source&0x1fffe));\r
+      pdend=(u16 *)(prg_ram+0x20000);\r
+    } else {\r
+      dprintf("DmaSlow FIXME: unsupported src");\r
+      return;\r
+    }\r
+  } else {\r
+    if(source<Pico.romsize) { // Rom\r
+      pd=(u16 *)(Pico.rom+(source&~1));\r
+      pdend=(u16 *)(Pico.rom+Pico.romsize);\r
+    } else {\r
+      dprintf("DmaSlow: invalid dma src");\r
+      return;\r
+    }\r
+  }\r
+\r
+  // overflow protection, might break something..\r
+  if (len > pdend - pd) {\r
+    len = pdend - pd;\r
+    dprintf("DmaSlow overflow");\r
+  }\r
 \r
   switch (Pico.video.type)\r
   {\r
     case 1: // vram\r
       r = Pico.vram;\r
-      for(; len; len--)\r
+      if (inc == 2 && !(a&1) && a+len*2 < 0x10000)\r
       {\r
-        d=*pd++;\r
-        if(a&1) d=(d<<8)|(d>>8);\r
-        r[a>>1] = (u16)d; // will drop the upper bits\r
-        // AutoIncrement\r
-        a=(u16)(a+inc);\r
-        // didn't src overlap?\r
-        if(pd >= pdend) pd-=0x8000; // should be good for RAM, bad for ROM\r
+        // most used DMA mode\r
+        memcpy16(r + (a>>1), pd, len);\r
+        a += len*2;\r
+      }\r
+      else\r
+      {\r
+        for(; len; len--)\r
+        {\r
+          d=*pd++;\r
+          if(a&1) d=(d<<8)|(d>>8);\r
+          r[a>>1] = (u16)d; // will drop the upper bits\r
+          // AutoIncrement\r
+          a=(u16)(a+inc);\r
+          // didn't src overlap?\r
+          //if(pd >= pdend) pd-=0x8000; // should be good for RAM, bad for ROM\r
+        }\r
       }\r
       rendstatus|=0x10;\r
       break;\r
@@ -149,11 +174,11 @@ static void DmaSlow(int len)
       r = Pico.cram;\r
       for(a2=a&0x7f; len; len--)\r
       {\r
-        r[a2>>1] = (u16)*pd++;; // bit 0 is ignored\r
+        r[a2>>1] = (u16)*pd++; // bit 0 is ignored\r
         // AutoIncrement\r
         a2+=inc;\r
         // didn't src overlap?\r
-        if(pd >= pdend) pd-=0x8000;\r
+        //if(pd >= pdend) pd-=0x8000;\r
         // good dest?\r
         if(a2 >= 0x80) break; // Todds Adventures in Slime World / Andre Agassi tennis\r
       }\r
@@ -168,7 +193,7 @@ static void DmaSlow(int len)
         // AutoIncrement\r
         a2+=inc;\r
         // didn't src overlap?\r
-        if(pd >= pdend) pd-=0x8000;\r
+        //if(pd >= pdend) pd-=0x8000;\r
         // good dest?\r
         if(a2 >= 0x80) break;\r
       }\r
@@ -189,7 +214,8 @@ static void DmaCopy(int len)
   dprintf("DmaCopy len %i [%i|%i]", len, Pico.m.scanline, SekCyclesDone());\r
 \r
   Pico.m.dma_bytes += len;\r
-  Pico.video.status|=2; // dma busy\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
@@ -222,7 +248,8 @@ static void DmaFill(int data)
   dprintf("DmaFill len %i inc %i [%i|%i]", len, inc, Pico.m.scanline, SekCyclesDone());\r
 \r
   Pico.m.dma_bytes += len;\r
-  Pico.video.status|=2; // dma busy\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
@@ -382,7 +409,7 @@ unsigned int PicoVideoRead(unsigned int a)
     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
+    // 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
@@ -416,7 +443,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