32x: famec support
[picodrive.git] / pico / draw.c
index b915514..180045d 100644 (file)
  * "sonic mode" is autodetected, shadow/hilight is enabled by emulated game.\r
  * AS is enabled by user and takes priority over "sonic mode".\r
  *\r
+ * since renderer always draws line in 8bit mode, there are 2 spare bits:\r
+ * b \ mode: s/h             as        sonic\r
+ * 00        normal          -         -\r
+ * 01        shadow          -         pal index\r
+ * 10        hilight+op spr  spr       pal index\r
+ * 11        shadow +op spr  -         pal index\r
+ *\r
  * not handled properly:\r
  * - hilight op on shadow tile\r
  * - AS + s/h (s/h sprite flag interferes with and cleared by AS code)\r
@@ -33,7 +40,7 @@ unsigned char *HighCol=DefHighCol;
 #else\r
 unsigned char  HighCol[8+320+8];\r
 #endif\r
-unsigned short DefOutBuff[320*2];\r
+static unsigned int DefOutBuff[320*2/2];\r
 void *DrawLineDest=DefOutBuff; // pointer to dest buffer where to draw this line to\r
 \r
 static int  HighCacheA[41+1];   // caches for high layers\r
@@ -46,8 +53,8 @@ int  HighPreSpr[80*2+1]; // slightly preprocessed sprites
 #define SPRL_LO_ABOVE_HI 0x10 // low priority sprites may be on top of hi\r
 unsigned char HighLnSpr[240][3 + MAX_LINE_SPRITES]; // sprite_count, ^flags, tile_count, [spritep]...\r
 \r
-int rendstatus = 0;\r
-int DrawScanline = 0;\r
+int rendstatus, rendstatus_old;\r
+int DrawScanline;\r
 int PicoDrawMask = -1;\r
 \r
 static int skip_next_line=0;\r
@@ -67,13 +74,11 @@ struct TileStrip
 // stuff available in asm:\r
 #ifdef _ASM_DRAW_C\r
 void DrawWindow(int tstart, int tend, int prio, int sh);\r
-void BackFill(int reg7, int sh);\r
 void DrawAllSprites(unsigned char *sprited, int prio, int sh);\r
 void DrawTilesFromCache(int *hc, int sh, int rlim);\r
 void DrawSpritesSHi(unsigned char *sprited);\r
 void DrawLayer(int plane_sh, int *hcache, int cellskip, int maxcells);\r
-void FinalizeLineBGR444(int sh);\r
-void FinalizeLineRGB555(int sh);\r
+void FinalizeLineBGR444(int sh, int line);\r
 void *blockcpy(void *dst, const void *src, size_t n);\r
 void blockcpy_or(void *dst, void *src, size_t n, int pat);\r
 #else\r
@@ -505,8 +510,8 @@ static void DrawWindow(int tstart, int tend, int prio, int sh) // int *hcache
 \r
       if (prio) {\r
         int *zb = (int *)(HighCol+8+(tilex<<3));\r
-        *zb++ &= 0x3f3f3f3f;\r
-        *zb   &= 0x3f3f3f3f;\r
+        *zb++ &= 0xbfbfbfbf;\r
+        *zb   &= 0xbfbfbfbf;\r
       } else {\r
         pal |= 0x40;\r
       }\r
@@ -925,10 +930,11 @@ static void DrawSpritesHiAS(unsigned char *sprited, int sh)
 \r
   /* nasty 1: remove 'sprite' flags */\r
   {\r
-    int c = 320/4, *zb = (int *)(HighCol+8);\r
+    int c = 320/4/4, *zb = (int *)(HighCol+8);\r
     while (c--)\r
     {\r
-      *zb++ &= 0x7f7f7f7f;\r
+      *zb++ &= 0x7f7f7f7f; *zb++ &= 0x7f7f7f7f;\r
+      *zb++ &= 0x7f7f7f7f; *zb++ &= 0x7f7f7f7f;\r
     }\r
   }\r
 \r
@@ -1132,7 +1138,7 @@ static void DrawAllSprites(unsigned char *sprited, int prio, int sh)
 \r
 // --------------------------------------------\r
 \r
-static void BackFill(int reg7, int sh)\r
+void BackFill(int reg7, int sh)\r
 {\r
   unsigned int back;\r
 \r
@@ -1153,20 +1159,24 @@ unsigned short HighPal[0x100];
 #ifndef _ASM_DRAW_C\r
 void PicoDoHighPal555(int sh)\r
 {\r
+  unsigned int *spal, *dpal;\r
   unsigned short *pal=HighPal;\r
   int i, t;\r
 \r
   Pico.m.dirtyPal = 0;\r
 \r
-  {\r
-    unsigned int *spal=(void *)Pico.cram;\r
-    unsigned int *dpal=(void *)HighPal;\r
-    for (i = 0x3f/2; i >= 0; i--)\r
+  spal = (void *)Pico.cram;\r
+  dpal = (void *)HighPal;\r
+\r
+  for (i = 0; i < 0x40; i++) {\r
+    unsigned int t = spal[i];\r
 #ifdef USE_BGR555\r
-      dpal[i] = ((spal[i]&0x000f000f)<< 1)|((spal[i]&0x00f000f0)<<3)|((spal[i]&0x0f000f00)<<4);\r
+    t = ((t & 0x000e000e)<< 1) | ((t & 0x00e000e0)<<3) | ((t & 0x0e000e00)<<4);\r
 #else\r
-      dpal[i] = ((spal[i]&0x000f000f)<<12)|((spal[i]&0x00f000f0)<<3)|((spal[i]&0x0f000f00)>>7);\r
+    t = ((t & 0x000e000e)<<12) | ((t & 0x00e000e0)<<3) | ((t & 0x0e000e00)>>7);\r
 #endif\r
+    t |= (t >> 3) & 0x18e318e3;\r
+    dpal[i] = t;\r
   }\r
 \r
   if (sh)\r
@@ -1182,7 +1192,7 @@ void PicoDoHighPal555(int sh)
   }\r
 }\r
 \r
-static void FinalizeLineBGR444(int sh)\r
+static void FinalizeLineBGR444(int sh, int line)\r
 {\r
   unsigned short *pd=DrawLineDest;\r
   unsigned char  *ps=HighCol+8;\r
@@ -1220,7 +1230,7 @@ static void FinalizeLineBGR444(int sh)
 }\r
 \r
 \r
-static void FinalizeLineRGB555(int sh)\r
+void FinalizeLineRGB555(int sh, int line)\r
 {\r
   unsigned short *pd=DrawLineDest;\r
   unsigned char  *ps=HighCol+8;\r
@@ -1256,13 +1266,13 @@ static void FinalizeLineRGB555(int sh)
 }\r
 #endif\r
 \r
-static void FinalizeLine8bit(int sh)\r
+static void FinalizeLine8bit(int sh, int line)\r
 {\r
-  unsigned char *pd=DrawLineDest;\r
+  unsigned char *pd = DrawLineDest;\r
   int len, rs = rendstatus;\r
   static int dirty_count;\r
 \r
-  if (!sh && Pico.m.dirtyPal == 1 && DrawScanline < 222)\r
+  if (!sh && Pico.m.dirtyPal == 1)\r
   {\r
     // a hack for mid-frame palette changes\r
     if (!(rs & PDRAW_SONIC_MODE))\r
@@ -1280,7 +1290,8 @@ static void FinalizeLine8bit(int sh)
   if (Pico.video.reg[12]&1) {\r
     len = 320;\r
   } else {\r
-    if (!(PicoOpt&POPT_DIS_32C_BORDER)) pd+=32;\r
+    if (!(PicoOpt & POPT_DIS_32C_BORDER))\r
+      pd += 32;\r
     len = 256;\r
   }\r
 \r
@@ -1295,26 +1306,10 @@ static void FinalizeLine8bit(int sh)
   }\r
 }\r
 \r
-static void (*FinalizeLine)(int sh) = FinalizeLineBGR444;\r
+static void (*FinalizeLine)(int sh, int line);\r
 \r
 // --------------------------------------------\r
 \r
-static void DrawBlankedLine(void)\r
-{\r
-  int sh=(Pico.video.reg[0xC]&8)>>3; // shadow/hilight?\r
-\r
-  if (PicoScanBegin != NULL)\r
-    PicoScanBegin(DrawScanline);\r
-\r
-  BackFill(Pico.video.reg[7], sh);\r
-\r
-  if (FinalizeLine != NULL)\r
-    FinalizeLine(sh);\r
-\r
-  if (PicoScanEnd != NULL)\r
-    PicoScanEnd(DrawScanline);\r
-}\r
-\r
 static int DrawDisplay(int sh)\r
 {\r
   unsigned char *sprited = &HighLnSpr[DrawScanline][0];\r
@@ -1413,58 +1408,101 @@ PICO_INTERNAL void PicoFrameStart(void)
   rendstatus = 0;\r
   if ((Pico.video.reg[12]&6) == 6)\r
     rendstatus |= PDRAW_INTERLACE; // interlace mode\r
+  if (Pico.video.reg[1] & 8)\r
+    rendstatus |= PDRAW_240LINES;\r
 \r
-  if (Pico.m.dirtyPal) Pico.m.dirtyPal = 2; // reset dirty if needed\r
+  DrawScanline = 0;\r
+  skip_next_line = 0;\r
+\r
+  if (rendstatus != rendstatus_old) {\r
+    rendstatus_old = rendstatus;\r
+    emu_video_mode_change((rendstatus & PDRAW_240LINES) ? 0 : 8,\r
+      (rendstatus & PDRAW_240LINES) ? 240 : 224,\r
+      (Pico.video.reg[12] & 1) ? 0 : 1);\r
+  }\r
 \r
-  DrawScanline=0;\r
+  if (PicoOpt & POPT_ALT_RENDERER)\r
+    return;\r
+\r
+  if (Pico.m.dirtyPal)\r
+    Pico.m.dirtyPal = 2; // reset dirty if needed\r
   PrepareSprites(1);\r
-  skip_next_line=0;\r
 }\r
 \r
-static void PicoLine(void)\r
+static void DrawBlankedLine(int line, int offs, int sh, int bgc)\r
 {\r
-  int sh;\r
-  if (skip_next_line>0) { skip_next_line--; return; } // skip rendering lines\r
+  if (PicoScanBegin != NULL)\r
+    PicoScanBegin(line + offs);\r
+\r
+  BackFill(bgc, sh);\r
 \r
-  sh=(Pico.video.reg[0xC]&8)>>3; // shadow/hilight?\r
+  if (FinalizeLine != NULL)\r
+    FinalizeLine(sh, line);\r
+\r
+  if (PicoScanEnd != NULL)\r
+    PicoScanEnd(line + offs);\r
+}\r
 \r
+static void PicoLine(int line, int offs, int sh, int bgc)\r
+{\r
+  if (skip_next_line > 0) {\r
+    skip_next_line--;\r
+    return;\r
+  }\r
+\r
+  DrawScanline = line;\r
   if (PicoScanBegin != NULL)\r
-    skip_next_line = PicoScanBegin(DrawScanline);\r
+    skip_next_line = PicoScanBegin(line + offs);\r
 \r
   // Draw screen:\r
-  BackFill(Pico.video.reg[7], sh);\r
+  BackFill(bgc, sh);\r
   if (Pico.video.reg[1]&0x40)\r
     DrawDisplay(sh);\r
 \r
   if (FinalizeLine != NULL)\r
-    FinalizeLine(sh);\r
+    FinalizeLine(sh, line);\r
 \r
   if (PicoScanEnd != NULL)\r
-    skip_next_line = PicoScanEnd(DrawScanline);\r
+    skip_next_line = PicoScanEnd(line + offs);\r
 }\r
 \r
 void PicoDrawSync(int to, int blank_last_line)\r
 {\r
-  for (; DrawScanline < to; DrawScanline++)\r
+  int line, offs = 0;\r
+  int sh = (Pico.video.reg[0xC] & 8) >> 3; // shadow/hilight?\r
+  int bgc = Pico.video.reg[7];\r
+\r
+  if (!(rendstatus & PDRAW_240LINES))\r
+    offs = 8;\r
+\r
+  // need to know which pixels are bg for 32x\r
+  if (PicoAHW & PAHW_32X)\r
+    bgc = 0;\r
+\r
+  for (line = DrawScanline; line < to; line++)\r
   {\r
 #if !CAN_HANDLE_240_LINES\r
-    if (DrawScanline >= 224) break;\r
+    if (line >= 224) break;\r
 #endif\r
-    PicoLine();\r
+    PicoLine(line, offs, sh, bgc);\r
   }\r
 \r
 #if !CAN_HANDLE_240_LINES\r
-  if (DrawScanline >= 224) { DrawScanline = 240; return; }\r
+  if (line >= 224) {\r
+    DrawScanline = 240;\r
+    return;\r
+  }\r
 #endif\r
 \r
   // last line\r
-  if (DrawScanline <= to)\r
+  if (line <= to)\r
   {\r
     if (blank_last_line)\r
-         DrawBlankedLine();\r
-    else PicoLine();\r
-    DrawScanline++;\r
+         DrawBlankedLine(line, offs, sh, bgc);\r
+    else PicoLine(line, offs, sh, bgc);\r
+    line++;\r
   }\r
+  DrawScanline = line;\r
 }\r
 \r
 void PicoDrawSetColorFormat(int which)\r
@@ -1472,12 +1510,14 @@ void PicoDrawSetColorFormat(int which)
   switch (which)\r
   {\r
     case 2: FinalizeLine = FinalizeLine8bit;   break;\r
-    case 1: FinalizeLine = FinalizeLineRGB555; break;\r
+    case 1: FinalizeLine = (PicoAHW & PAHW_32X) ? FinalizeLine32xRGB555 : FinalizeLineRGB555; break;\r
     case 0: FinalizeLine = FinalizeLineBGR444; break;\r
     default:FinalizeLine = NULL; break;\r
   }\r
+  PicoDrawSetColorFormatMode4(which);\r
 #if OVERRIDE_HIGHCOL\r
-  if (which) HighCol=DefHighCol;\r
+  if (which)\r
+    HighCol=DefHighCol;\r
 #endif\r
 }\r
 \r