1 // This is part of Pico Library
\r
3 // (c) Copyright 2004 Dave, All rights reserved.
\r
4 // (c) Copyright 2006 notaz, All rights reserved.
\r
5 // Free for non-commercial use.
\r
7 // For commercial use, separate licencing terms must be obtained.
\r
10 #include "PicoInt.h"
\r
12 int (*PicoScan)(unsigned int num, void *data)=NULL;
\r
14 #if OVERRIDE_HIGHCOL
\r
15 static unsigned char DefHighCol[8+320+8];
\r
16 unsigned char *HighCol=DefHighCol;
\r
18 unsigned char HighCol[8+320+8];
\r
20 unsigned short DefOutBuff[320*2];
\r
21 void *DrawLineDest=DefOutBuff; // pointer to dest buffer where to draw this line to
\r
23 static int HighCacheA[41+1]; // caches for high layers
\r
24 static int HighCacheB[41+1];
\r
25 static int HighCacheS[80+1]; // and sprites
\r
26 static int HighPreSpr[80*2+1]; // slightly preprocessed sprites
\r
27 char HighSprZ[320+8+8]; // Z-buffer for accurate sprites and shadow/hilight mode
\r
28 // (if bit 7 == 0, sh caused by tile; if bit 6 == 0 pixel must be shadowed, else hilighted, if bit5 == 1)
\r
29 // lsb->msb: moved sprites, not all window tiles use same priority, accurate sprites (copied from PicoOpt), interlace
\r
30 // dirty sprites, sonic mode, have layer with all hi prio tiles (mk3), layer sh/hi already processed
\r
32 int Scanline=0; // Scanline
\r
34 static int SpriteBlocks;
\r
35 //unsigned short ppt[] = { 0x0f11, 0x0ff1, 0x01f1, 0x011f, 0x01ff, 0x0f1f, 0x0f0e, 0x0e7c };
\r
39 int nametab; // Position in VRAM of name table (for this tile line)
\r
40 int line; // Line number in pixels 0x000-0x3ff within the virtual tilemap
\r
41 int hscroll; // Horizontal scroll value in pixels for the line
\r
42 int xmask; // X-Mask (0x1f - 0x7f) for horizontal wraparound in the tilemap
\r
43 int *hc; // cache for high tile codes and their positions
\r
44 int cells; // cells (tiles) to draw (32 col mode doesn't need to update whole 320)
\r
47 // stuff available in asm:
\r
49 void DrawWindow(int tstart, int tend, int prio, int sh);
\r
50 void BackFill(int reg7, int sh);
\r
51 void DrawSprite(int *sprite, int **hc, int sh);
\r
52 void DrawTilesFromCache(int *hc, int sh, int rlim);
\r
53 void DrawSpritesFromCache(int *hc, int sh);
\r
54 void DrawLayer(int plane_sh, int *hcache, int cellskip, int maxcells);
\r
55 void FinalizeLineBGR444(int sh);
\r
56 void FinalizeLineRGB555(int sh);
\r
57 void blockcpy_or(void *dst, void *src, size_t n, int pat);
\r
60 void blockcpy_or(void *dst, void *src, size_t n, int pat)
\r
62 unsigned char *pd = dst, *ps = src;
\r
64 *pd++ = (unsigned char) (*ps++ | pat);
\r
69 #ifdef _ASM_DRAW_C_AMIPS
\r
70 int TileNorm(int sx,int addr,int pal);
\r
71 int TileFlip(int sx,int addr,int pal);
\r
73 static int TileNorm(int sx,int addr,int pal)
\r
75 unsigned char *pd = HighCol+sx;
\r
76 unsigned int pack=0; unsigned int t=0;
\r
78 pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
81 t=pack&0x0000f000; if (t) pd[0]=(unsigned char)(pal|(t>>12));
\r
82 t=pack&0x00000f00; if (t) pd[1]=(unsigned char)(pal|(t>> 8));
\r
83 t=pack&0x000000f0; if (t) pd[2]=(unsigned char)(pal|(t>> 4));
\r
84 t=pack&0x0000000f; if (t) pd[3]=(unsigned char)(pal|(t ));
\r
85 t=pack&0xf0000000; if (t) pd[4]=(unsigned char)(pal|(t>>28));
\r
86 t=pack&0x0f000000; if (t) pd[5]=(unsigned char)(pal|(t>>24));
\r
87 t=pack&0x00f00000; if (t) pd[6]=(unsigned char)(pal|(t>>20));
\r
88 t=pack&0x000f0000; if (t) pd[7]=(unsigned char)(pal|(t>>16));
\r
92 return 1; // Tile blank
\r
95 static int TileFlip(int sx,int addr,int pal)
\r
97 unsigned char *pd = HighCol+sx;
\r
98 unsigned int pack=0; unsigned int t=0;
\r
100 pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
103 t=pack&0x000f0000; if (t) pd[0]=(unsigned char)(pal|(t>>16));
\r
104 t=pack&0x00f00000; if (t) pd[1]=(unsigned char)(pal|(t>>20));
\r
105 t=pack&0x0f000000; if (t) pd[2]=(unsigned char)(pal|(t>>24));
\r
106 t=pack&0xf0000000; if (t) pd[3]=(unsigned char)(pal|(t>>28));
\r
107 t=pack&0x0000000f; if (t) pd[4]=(unsigned char)(pal|(t ));
\r
108 t=pack&0x000000f0; if (t) pd[5]=(unsigned char)(pal|(t>> 4));
\r
109 t=pack&0x00000f00; if (t) pd[6]=(unsigned char)(pal|(t>> 8));
\r
110 t=pack&0x0000f000; if (t) pd[7]=(unsigned char)(pal|(t>>12));
\r
113 return 1; // Tile blank
\r
117 // tile renderers for hacky operator sprite support
\r
118 #define sh_pix(x) \
\r
120 else if(t==0xe) pd[x]=(unsigned char)((pd[x]&0x3f)|0x80); /* hilight */ \
\r
121 else if(t==0xf) pd[x]=(unsigned char)((pd[x]&0x3f)|0xc0); /* shadow */ \
\r
122 else pd[x]=(unsigned char)(pal|t)
\r
124 #ifndef _ASM_DRAW_C
\r
125 static int TileNormSH(int sx,int addr,int pal)
\r
127 unsigned int pack=0; unsigned int t=0;
\r
128 unsigned char *pd = HighCol+sx;
\r
130 pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
133 t=(pack&0x0000f000)>>12; sh_pix(0);
\r
134 t=(pack&0x00000f00)>> 8; sh_pix(1);
\r
135 t=(pack&0x000000f0)>> 4; sh_pix(2);
\r
136 t=(pack&0x0000000f) ; sh_pix(3);
\r
137 t=(pack&0xf0000000)>>28; sh_pix(4);
\r
138 t=(pack&0x0f000000)>>24; sh_pix(5);
\r
139 t=(pack&0x00f00000)>>20; sh_pix(6);
\r
140 t=(pack&0x000f0000)>>16; sh_pix(7);
\r
144 return 1; // Tile blank
\r
147 static int TileFlipSH(int sx,int addr,int pal)
\r
149 unsigned int pack=0; unsigned int t=0;
\r
150 unsigned char *pd = HighCol+sx;
\r
152 pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
155 t=(pack&0x000f0000)>>16; sh_pix(0);
\r
156 t=(pack&0x00f00000)>>20; sh_pix(1);
\r
157 t=(pack&0x0f000000)>>24; sh_pix(2);
\r
158 t=(pack&0xf0000000)>>28; sh_pix(3);
\r
159 t=(pack&0x0000000f) ; sh_pix(4);
\r
160 t=(pack&0x000000f0)>> 4; sh_pix(5);
\r
161 t=(pack&0x00000f00)>> 8; sh_pix(6);
\r
162 t=(pack&0x0000f000)>>12; sh_pix(7);
\r
165 return 1; // Tile blank
\r
169 static int TileNormZ(int sx,int addr,int pal,int zval)
\r
171 unsigned int pack=0; unsigned int t=0;
\r
172 unsigned char *pd = HighCol+sx;
\r
173 char *zb = HighSprZ+sx;
\r
174 int collision = 0, zb_s;
\r
176 pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
179 t=pack&0x0000f000; if(t) { zb_s=zb[0]; if(zb_s) collision=1; if(zval>zb_s) { pd[0]=(unsigned char)(pal|(t>>12)); zb[0]=(char)zval; } }
\r
180 t=pack&0x00000f00; if(t) { zb_s=zb[1]; if(zb_s) collision=1; if(zval>zb_s) { pd[1]=(unsigned char)(pal|(t>> 8)); zb[1]=(char)zval; } }
\r
181 t=pack&0x000000f0; if(t) { zb_s=zb[2]; if(zb_s) collision=1; if(zval>zb_s) { pd[2]=(unsigned char)(pal|(t>> 4)); zb[2]=(char)zval; } }
\r
182 t=pack&0x0000000f; if(t) { zb_s=zb[3]; if(zb_s) collision=1; if(zval>zb_s) { pd[3]=(unsigned char)(pal|(t )); zb[3]=(char)zval; } }
\r
183 t=pack&0xf0000000; if(t) { zb_s=zb[4]; if(zb_s) collision=1; if(zval>zb_s) { pd[4]=(unsigned char)(pal|(t>>28)); zb[4]=(char)zval; } }
\r
184 t=pack&0x0f000000; if(t) { zb_s=zb[5]; if(zb_s) collision=1; if(zval>zb_s) { pd[5]=(unsigned char)(pal|(t>>24)); zb[5]=(char)zval; } }
\r
185 t=pack&0x00f00000; if(t) { zb_s=zb[6]; if(zb_s) collision=1; if(zval>zb_s) { pd[6]=(unsigned char)(pal|(t>>20)); zb[6]=(char)zval; } }
\r
186 t=pack&0x000f0000; if(t) { zb_s=zb[7]; if(zb_s) collision=1; if(zval>zb_s) { pd[7]=(unsigned char)(pal|(t>>16)); zb[7]=(char)zval; } }
\r
187 if(collision) Pico.video.status|=0x20;
\r
191 return 1; // Tile blank
\r
194 static int TileFlipZ(int sx,int addr,int pal,int zval)
\r
196 unsigned int pack=0; unsigned int t=0;
\r
197 unsigned char *pd = HighCol+sx;
\r
198 char *zb = HighSprZ+sx;
\r
199 int collision = 0, zb_s;
\r
201 pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
204 t=pack&0x000f0000; if(t) { zb_s=zb[0]&0x1f; if(zb_s) collision=1; if(zval>zb_s) { pd[0]=(unsigned char)(pal|(t>>16)); zb[0]=(char)zval; } }
\r
205 t=pack&0x00f00000; if(t) { zb_s=zb[1]&0x1f; if(zb_s) collision=1; if(zval>zb_s) { pd[1]=(unsigned char)(pal|(t>>20)); zb[1]=(char)zval; } }
\r
206 t=pack&0x0f000000; if(t) { zb_s=zb[2]&0x1f; if(zb_s) collision=1; if(zval>zb_s) { pd[2]=(unsigned char)(pal|(t>>24)); zb[2]=(char)zval; } }
\r
207 t=pack&0xf0000000; if(t) { zb_s=zb[3]&0x1f; if(zb_s) collision=1; if(zval>zb_s) { pd[3]=(unsigned char)(pal|(t>>28)); zb[3]=(char)zval; } }
\r
208 t=pack&0x0000000f; if(t) { zb_s=zb[4]&0x1f; if(zb_s) collision=1; if(zval>zb_s) { pd[4]=(unsigned char)(pal|(t )); zb[4]=(char)zval; } }
\r
209 t=pack&0x000000f0; if(t) { zb_s=zb[5]&0x1f; if(zb_s) collision=1; if(zval>zb_s) { pd[5]=(unsigned char)(pal|(t>> 4)); zb[5]=(char)zval; } }
\r
210 t=pack&0x00000f00; if(t) { zb_s=zb[6]&0x1f; if(zb_s) collision=1; if(zval>zb_s) { pd[6]=(unsigned char)(pal|(t>> 8)); zb[6]=(char)zval; } }
\r
211 t=pack&0x0000f000; if(t) { zb_s=zb[7]&0x1f; if(zb_s) collision=1; if(zval>zb_s) { pd[7]=(unsigned char)(pal|(t>>12)); zb[7]=(char)zval; } }
\r
212 if(collision) Pico.video.status|=0x20;
\r
215 return 1; // Tile blank
\r
219 #define sh_pixZ(x) \
\r
221 if(zb[x]) collision=1; \
\r
223 if (t==0xe) { pd[x]=(unsigned char)((pd[x]&0x3f)|0x80); /* hilight */ } \
\r
224 else if(t==0xf) { pd[x]=(unsigned char)((pd[x]&0x3f)|0xc0); /* shadow */ } \
\r
225 else { zb[x]=(char)zval; pd[x]=(unsigned char)(pal|t); } \
\r
229 static int TileNormZSH(int sx,int addr,int pal,int zval)
\r
231 unsigned int pack=0; unsigned int t=0;
\r
232 unsigned char *pd = HighCol+sx;
\r
233 char *zb = HighSprZ+sx;
\r
236 pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
239 t=(pack&0x0000f000)>>12; sh_pixZ(0);
\r
240 t=(pack&0x00000f00)>> 8; sh_pixZ(1);
\r
241 t=(pack&0x000000f0)>> 4; sh_pixZ(2);
\r
242 t=(pack&0x0000000f) ; sh_pixZ(3);
\r
243 t=(pack&0xf0000000)>>28; sh_pixZ(4);
\r
244 t=(pack&0x0f000000)>>24; sh_pixZ(5);
\r
245 t=(pack&0x00f00000)>>20; sh_pixZ(6);
\r
246 t=(pack&0x000f0000)>>16; sh_pixZ(7);
\r
247 if(collision) Pico.video.status|=0x20;
\r
251 return 1; // Tile blank
\r
254 static int TileFlipZSH(int sx,int addr,int pal,int zval)
\r
256 unsigned int pack=0; unsigned int t=0;
\r
257 unsigned char *pd = HighCol+sx;
\r
258 char *zb = HighSprZ+sx;
\r
261 pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
264 t=(pack&0x000f0000)>>16; sh_pixZ(0);
\r
265 t=(pack&0x00f00000)>>20; sh_pixZ(1);
\r
266 t=(pack&0x0f000000)>>24; sh_pixZ(2);
\r
267 t=(pack&0xf0000000)>>28; sh_pixZ(3);
\r
268 t=(pack&0x0000000f) ; sh_pixZ(4);
\r
269 t=(pack&0x000000f0)>> 4; sh_pixZ(5);
\r
270 t=(pack&0x00000f00)>> 8; sh_pixZ(6);
\r
271 t=(pack&0x0000f000)>>12; sh_pixZ(7);
\r
272 if(collision) Pico.video.status|=0x20;
\r
275 return 1; // Tile blank
\r
278 // --------------------------------------------
\r
280 #ifndef _ASM_DRAW_C
\r
281 static void DrawStrip(struct TileStrip *ts, int plane_sh, int cellskip)
\r
283 int tilex,dx,ty,code=0,addr=0,cells;
\r
284 int oldcode=-1,blank=-1; // The tile we know is blank
\r
287 // Draw tiles across screen:
\r
288 sh=(plane_sh<<5)&0x40;
\r
289 tilex=((-ts->hscroll)>>3)+cellskip;
\r
290 ty=(ts->line&7)<<1; // Y-Offset into tile
\r
291 dx=((ts->hscroll-1)&7)+1;
\r
292 cells = ts->cells - cellskip;
\r
293 if(dx != 8) cells++; // have hscroll, need to draw 1 cell more
\r
296 for (; cells > 0; dx+=8,tilex++,cells--)
\r
300 code=Pico.vram[ts->nametab+(tilex&ts->xmask)];
\r
301 if (code==blank) continue;
\r
302 if (code>>15) { // high priority tile
\r
303 int cval = code | (dx<<16) | (ty<<25);
\r
304 if(code&0x1000) cval^=7<<26;
\r
305 *ts->hc++ = cval; // cache it
\r
309 if (code!=oldcode) {
\r
311 // Get tile address/2:
\r
312 addr=(code&0x7ff)<<4;
\r
314 if (code&0x1000) addr^=0xe; // Y-flip
\r
316 pal=((code>>9)&0x30)|sh;
\r
319 if (code&0x0800) zero=TileFlip(dx,addr,pal);
\r
320 else zero=TileNorm(dx,addr,pal);
\r
322 if (zero) blank=code; // We know this tile is blank now
\r
325 // terminate the cache list
\r
327 // if oldcode wasn't changed, it means all layer is hi priority
\r
328 if (oldcode == -1) rendstatus|=0x40;
\r
332 void DrawStripVSRam(struct TileStrip *ts, int plane_sh, int cellskip)
\r
334 int tilex,dx,code=0,addr=0,cell=0;
\r
335 int oldcode=-1,blank=-1; // The tile we know is blank
\r
336 int pal=0,scan=Scanline;
\r
338 // Draw tiles across screen:
\r
339 tilex=(-ts->hscroll)>>3;
\r
340 dx=((ts->hscroll-1)&7)+1;
\r
341 if(dx != 8) cell--; // have hscroll, start with negative cell
\r
346 for (; cell < ts->cells; dx+=8,tilex++,cell++)
\r
348 int zero=0,nametabadd,ty;
\r
353 vscroll=Pico.vsram[(plane_sh&1)+(cell&~1)];
\r
355 // Find the line in the name table
\r
356 line=(vscroll+scan)&ts->line&0xffff; // ts->line is really ymask ..
\r
357 nametabadd=(line>>3)<<(ts->line>>24); // .. and shift[width]
\r
358 ty=(line&7)<<1; // Y-Offset into tile
\r
361 code=Pico.vram[ts->nametab+nametabadd+(tilex&ts->xmask)];
\r
362 if (code==blank) continue;
\r
363 if (code>>15) { // high priority tile
\r
364 int cval = code | (dx<<16) | (ty<<25);
\r
365 if(code&0x1000) cval^=7<<26;
\r
366 *ts->hc++ = cval; // cache it
\r
370 if (code!=oldcode) {
\r
372 // Get tile address/2:
\r
373 addr=(code&0x7ff)<<4;
\r
374 if (code&0x1000) addr+=14-ty; else addr+=ty; // Y-flip
\r
376 pal=((code>>9)&0x30)|((plane_sh<<5)&0x40);
\r
379 if (code&0x0800) zero=TileFlip(dx,addr,pal);
\r
380 else zero=TileNorm(dx,addr,pal);
\r
382 if (zero) blank=code; // We know this tile is blank now
\r
385 // terminate the cache list
\r
387 if (oldcode == -1) rendstatus|=0x40;
\r
391 #ifndef _ASM_DRAW_C
\r
394 void DrawStripInterlace(struct TileStrip *ts)
\r
396 int tilex=0,dx=0,ty=0,code=0,addr=0,cells;
\r
397 int oldcode=-1,blank=-1; // The tile we know is blank
\r
400 // Draw tiles across screen:
\r
401 tilex=(-ts->hscroll)>>3;
\r
402 ty=(ts->line&15)<<1; // Y-Offset into tile
\r
403 dx=((ts->hscroll-1)&7)+1;
\r
405 if(dx != 8) cells++; // have hscroll, need to draw 1 cell more
\r
407 for (; cells; dx+=8,tilex++,cells--)
\r
411 code=Pico.vram[ts->nametab+(tilex&ts->xmask)];
\r
412 if (code==blank) continue;
\r
413 if (code>>15) { // high priority tile
\r
414 int cval = (code&0xfc00) | (dx<<16) | (ty<<25);
\r
415 cval|=(code&0x3ff)<<1;
\r
416 if(code&0x1000) cval^=0xf<<26;
\r
417 *ts->hc++ = cval; // cache it
\r
421 if (code!=oldcode) {
\r
423 // Get tile address/2:
\r
424 addr=(code&0x7ff)<<5;
\r
425 if (code&0x1000) addr+=30-ty; else addr+=ty; // Y-flip
\r
427 // pal=Pico.cram+((code>>9)&0x30);
\r
428 pal=((code>>9)&0x30);
\r
431 if (code&0x0800) zero=TileFlip(dx,addr,pal);
\r
432 else zero=TileNorm(dx,addr,pal);
\r
434 if (zero) blank=code; // We know this tile is blank now
\r
437 // terminate the cache list
\r
441 // --------------------------------------------
\r
443 #ifndef _ASM_DRAW_C
\r
444 static void DrawLayer(int plane_sh, int *hcache, int cellskip, int maxcells)
\r
446 struct PicoVideo *pvid=&Pico.video;
\r
447 const char shift[4]={5,6,5,7}; // 32,64 or 128 sized tilemaps (2 is invalid)
\r
448 struct TileStrip ts;
\r
449 int width, height, ymask;
\r
455 // Work out the TileStrip to draw
\r
457 // Work out the name table size: 32 64 or 128 tiles (0-3)
\r
458 width=pvid->reg[16];
\r
459 height=(width>>4)&3; width&=3;
\r
461 ts.xmask=(1<<shift[width])-1; // X Mask in tiles (0x1f-0x7f)
\r
462 ymask=(height<<8)|0xff; // Y Mask in pixels
\r
463 if(width == 1) ymask&=0x1ff;
\r
464 else if(width>1) ymask =0x0ff;
\r
466 // Find name table:
\r
467 if (plane_sh&1) ts.nametab=(pvid->reg[4]&0x07)<<12; // B
\r
468 else ts.nametab=(pvid->reg[2]&0x38)<< 9; // A
\r
470 htab=pvid->reg[13]<<9; // Horizontal scroll table address
\r
471 if ( pvid->reg[11]&2) htab+=Scanline<<1; // Offset by line
\r
472 if ((pvid->reg[11]&1)==0) htab&=~0xf; // Offset by tile
\r
473 htab+=plane_sh&1; // A or B
\r
475 // Get horizontal scroll value, will be masked later
\r
476 ts.hscroll=Pico.vram[htab&0x7fff];
\r
478 if((pvid->reg[12]&6) == 6) {
\r
479 // interlace mode 2
\r
480 vscroll=Pico.vsram[plane_sh&1]; // Get vertical scroll value
\r
482 // Find the line in the name table
\r
483 ts.line=(vscroll+(Scanline<<1))&((ymask<<1)|1);
\r
484 ts.nametab+=(ts.line>>4)<<shift[width];
\r
486 DrawStripInterlace(&ts);
\r
487 } else if( pvid->reg[11]&4) {
\r
488 // shit, we have 2-cell column based vscroll
\r
489 // luckily this doesn't happen too often
\r
490 ts.line=ymask|(shift[width]<<24); // save some stuff instead of line
\r
491 DrawStripVSRam(&ts, plane_sh, cellskip);
\r
493 vscroll=Pico.vsram[plane_sh&1]; // Get vertical scroll value
\r
495 // Find the line in the name table
\r
496 ts.line=(vscroll+Scanline)&ymask;
\r
497 ts.nametab+=(ts.line>>3)<<shift[width];
\r
499 DrawStrip(&ts, plane_sh, cellskip);
\r
504 // --------------------------------------------
\r
506 // tstart & tend are tile pair numbers
\r
507 static void DrawWindow(int tstart, int tend, int prio, int sh) // int *hcache
\r
509 struct PicoVideo *pvid=&Pico.video;
\r
510 int tilex=0,ty=0,nametab,code=0;
\r
511 int blank=-1; // The tile we know is blank
\r
513 // Find name table line:
\r
514 if (pvid->reg[12]&1)
\r
516 nametab=(pvid->reg[3]&0x3c)<<9; // 40-cell mode
\r
517 nametab+=(Scanline>>3)<<6;
\r
521 nametab=(pvid->reg[3]&0x3e)<<9; // 32-cell mode
\r
522 nametab+=(Scanline>>3)<<5;
\r
528 ty=(Scanline&7)<<1; // Y-Offset into tile
\r
530 if(!(rendstatus&2)) {
\r
531 // check the first tile code
\r
532 code=Pico.vram[nametab+tilex];
\r
533 // if the whole window uses same priority (what is often the case), we may be able to skip this field
\r
534 if((code>>15) != prio) return;
\r
537 // Draw tiles across screen:
\r
540 for (; tilex < tend; tilex++)
\r
545 code=Pico.vram[nametab+tilex];
\r
546 if(code==blank) continue;
\r
547 if((code>>15) != prio) {
\r
552 pal=((code>>9)&0x30);
\r
554 // Get tile address/2:
\r
555 addr=(code&0x7ff)<<4;
\r
556 if (code&0x1000) addr+=14-ty; else addr+=ty; // Y-flip
\r
558 if (code&0x0800) zero=TileFlip(8+(tilex<<3),addr,pal);
\r
559 else zero=TileNorm(8+(tilex<<3),addr,pal);
\r
561 if (zero) blank=code; // We know this tile is blank now
\r
566 for (; tilex < tend; tilex++)
\r
571 code=Pico.vram[nametab+tilex];
\r
572 if(code==blank) continue;
\r
573 if((code>>15) != prio) {
\r
578 pal=((code>>9)&0x30);
\r
580 zb = (int *)(HighCol+8+(tilex<<3));
\r
583 if(!(tmp&0x00000080)) tmp&=~0x000000c0; if(!(tmp&0x00008000)) tmp&=~0x0000c000;
\r
584 if(!(tmp&0x00800000)) tmp&=~0x00c00000; if(!(tmp&0x80000000)) tmp&=~0xc0000000;
\r
585 *zb++=tmp; tmp = *zb;
\r
586 if(!(tmp&0x00000080)) tmp&=~0x000000c0; if(!(tmp&0x00008000)) tmp&=~0x0000c000;
\r
587 if(!(tmp&0x00800000)) tmp&=~0x00c00000; if(!(tmp&0x80000000)) tmp&=~0xc0000000;
\r
593 // Get tile address/2:
\r
594 addr=(code&0x7ff)<<4;
\r
595 if (code&0x1000) addr+=14-ty; else addr+=ty; // Y-flip
\r
597 if (code&0x0800) zero=TileFlip(8+(tilex<<3),addr,pal);
\r
598 else zero=TileNorm(8+(tilex<<3),addr,pal);
\r
600 if (zero) blank=code; // We know this tile is blank now
\r
605 // --------------------------------------------
\r
607 static void DrawTilesFromCacheShPrep(void)
\r
609 if (!(rendstatus&0x80))
\r
611 // as some layer has covered whole line with hi priority tiles,
\r
612 // we can process whole line and then act as if sh/hi mode was off.
\r
614 int c = 320/4, *zb = (int *)(HighCol+8);
\r
618 if (!(tmp & 0x80808080)) *zb=tmp&0x3f3f3f3f;
\r
620 if(!(tmp&0x00000080)) tmp&=~0x000000c0; if(!(tmp&0x00008000)) tmp&=~0x0000c000;
\r
621 if(!(tmp&0x00800000)) tmp&=~0x00c00000; if(!(tmp&0x80000000)) tmp&=~0xc0000000;
\r
629 static void DrawTilesFromCache(int *hc, int sh, int rlim)
\r
631 int code, addr, dx;
\r
634 // *ts->hc++ = code | (dx<<16) | (ty<<25); // cache it
\r
636 if (sh && (rendstatus&0xc0))
\r
638 DrawTilesFromCacheShPrep();
\r
644 short blank=-1; // The tile we know is blank
\r
645 while ((code=*hc++)) {
\r
647 if((short)code == blank) continue;
\r
648 // Get tile address/2:
\r
649 addr=(code&0x7ff)<<4;
\r
650 addr+=(unsigned int)code>>25; // y offset into tile
\r
651 dx=(code>>16)&0x1ff;
\r
653 pal=((code>>9)&0x30);
\r
654 if (rlim-dx < 0) goto last_cut_tile;
\r
656 if (code&0x0800) zero=TileFlip(dx,addr,pal);
\r
657 else zero=TileNorm(dx,addr,pal);
\r
659 if (zero) blank=(short)code;
\r
664 while ((code=*hc++)) {
\r
666 // Get tile address/2:
\r
667 addr=(code&0x7ff)<<4;
\r
668 addr+=(unsigned int)code>>25; // y offset into tile
\r
669 dx=(code>>16)&0x1ff;
\r
671 if(!(*zb&0x80)) *zb&=0x3f; zb++; if(!(*zb&0x80)) *zb&=0x3f; zb++;
\r
672 if(!(*zb&0x80)) *zb&=0x3f; zb++; if(!(*zb&0x80)) *zb&=0x3f; zb++;
\r
673 if(!(*zb&0x80)) *zb&=0x3f; zb++; if(!(*zb&0x80)) *zb&=0x3f; zb++;
\r
674 if(!(*zb&0x80)) *zb&=0x3f; zb++; if(!(*zb&0x80)) *zb&=0x3f; zb++;
\r
676 pal=((code>>9)&0x30);
\r
677 if (rlim-dx < 0) goto last_cut_tile;
\r
679 if (code&0x0800) TileFlip(dx,addr,pal);
\r
680 else TileNorm(dx,addr,pal);
\r
687 unsigned int t, pack=*(unsigned int *)(Pico.vram+addr); // Get 8 pixels
\r
688 unsigned char *pd = HighCol+dx;
\r
694 case 7: t=pack&0x00000f00; if (t) pd[6]=(unsigned char)(pal|(t>> 8)); // "break" is left out intentionally
\r
695 case 6: t=pack&0x000000f0; if (t) pd[5]=(unsigned char)(pal|(t>> 4));
\r
696 case 5: t=pack&0x0000000f; if (t) pd[4]=(unsigned char)(pal|(t ));
\r
697 case 4: t=pack&0xf0000000; if (t) pd[3]=(unsigned char)(pal|(t>>28));
\r
698 case 3: t=pack&0x0f000000; if (t) pd[2]=(unsigned char)(pal|(t>>24));
\r
699 case 2: t=pack&0x00f00000; if (t) pd[1]=(unsigned char)(pal|(t>>20));
\r
700 case 1: t=pack&0x000f0000; if (t) pd[0]=(unsigned char)(pal|(t>>16));
\r
708 case 7: t=pack&0x00f00000; if (t) pd[6]=(unsigned char)(pal|(t>>20));
\r
709 case 6: t=pack&0x0f000000; if (t) pd[5]=(unsigned char)(pal|(t>>24));
\r
710 case 5: t=pack&0xf0000000; if (t) pd[4]=(unsigned char)(pal|(t>>28));
\r
711 case 4: t=pack&0x0000000f; if (t) pd[3]=(unsigned char)(pal|(t ));
\r
712 case 3: t=pack&0x000000f0; if (t) pd[2]=(unsigned char)(pal|(t>> 4));
\r
713 case 2: t=pack&0x00000f00; if (t) pd[1]=(unsigned char)(pal|(t>> 8));
\r
714 case 1: t=pack&0x0000f000; if (t) pd[0]=(unsigned char)(pal|(t>>12));
\r
721 // --------------------------------------------
\r
723 // Index + 0 : hhhhvvvv ab--hhvv yyyyyyyy yyyyyyyy // a: offscreen h, b: offs. v, h: horiz. size
\r
724 // Index + 4 : xxxxxxxx xxxxxxxx pccvhnnn nnnnnnnn // x: x coord + 8
\r
726 static void DrawSprite(int *sprite, int **hc, int sh)
\r
728 int width=0,height=0;
\r
731 int tile=0,delta=0;
\r
733 int (*fTileFunc)(int sx,int addr,int pal);
\r
735 // parse the sprite data
\r
740 height=(sy>>24)&7; // Width and height in tiles
\r
741 sy=(sy<<16)>>16; // Y
\r
743 row=Scanline-sy; // Row of the sprite we are on
\r
745 if (code&0x1000) row=(height<<3)-1-row; // Flip Y
\r
747 tile=code&0x7ff; // Tile number
\r
748 tile+=row>>3; // Tile number increases going down
\r
749 delta=height; // Delta to increase tile by going right
\r
750 if (code&0x0800) { tile+=delta*(width-1); delta=-delta; } // Flip X
\r
752 tile<<=4; tile+=(row&7)<<1; // Tile address
\r
754 if(code&0x8000) { // high priority - cache it
\r
755 *(*hc)++ = (tile<<16)|((code&0x0800)<<5)|((sx<<6)&0x0000ffc0)|((code>>9)&0x30)|((sprite[0]>>16)&0xf);
\r
757 delta<<=4; // Delta of address
\r
758 pal=((code>>9)&0x30)|(sh<<6);
\r
760 if(sh && (code&0x6000) == 0x6000) {
\r
761 if(code&0x0800) fTileFunc=TileFlipSH;
\r
762 else fTileFunc=TileNormSH;
\r
764 if(code&0x0800) fTileFunc=TileFlip;
\r
765 else fTileFunc=TileNorm;
\r
768 for (; width; width--,sx+=8,tile+=delta)
\r
770 if(sx<=0) continue;
\r
771 if(sx>=328) break; // Offscreen
\r
773 tile&=0x7fff; // Clip tile address
\r
774 fTileFunc(sx,tile,pal);
\r
781 // Index + 0 : hhhhvvvv s---hhvv yyyyyyyy yyyyyyyy // s: skip flag, h: horiz. size
\r
782 // Index + 4 : xxxxxxxx xxxxxxxx pccvhnnn nnnnnnnn // x: x coord + 8
\r
784 static void DrawSpriteZ(int pack, int pack2, int shpri, int sprio)
\r
786 int width=0,height=0;
\r
789 int tile=0,delta=0;
\r
791 int (*fTileFunc)(int sx,int addr,int pal,int zval);
\r
793 // parse the sprite data
\r
795 sy=(pack <<16)>>16; // Y
\r
797 height=(pack>>24)&7; // Width and height in tiles
\r
799 row=Scanline-sy; // Row of the sprite we are on
\r
801 if (pack2&0x1000) row=(height<<3)-1-row; // Flip Y
\r
803 tile=pack2&0x7ff; // Tile number
\r
804 tile+=row>>3; // Tile number increases going down
\r
805 delta=height; // Delta to increase tile by going right
\r
806 if (pack2&0x0800) { tile+=delta*(width-1); delta=-delta; } // Flip X
\r
808 tile<<=4; tile+=(row&7)<<1; // Tile address
\r
809 delta<<=4; // Delta of address
\r
810 pal=((pack2>>9)&0x30);
\r
811 if((shpri&1)&&!(shpri&2)) pal|=0x40;
\r
814 if((pack2&0x6000) != 0x6000) shpri = 0;
\r
815 shpri |= (pack2&0x0800)>>10;
\r
818 case 0: fTileFunc=TileNormZ; break;
\r
819 case 1: fTileFunc=TileNormZSH; break;
\r
820 case 2: fTileFunc=TileFlipZ; break;
\r
821 case 3: fTileFunc=TileFlipZSH; break;
\r
824 for (; width; width--,sx+=8,tile+=delta)
\r
826 if(sx<=0) continue;
\r
827 if(sx>=328) break; // Offscreen
\r
829 tile&=0x7fff; // Clip tile address
\r
830 fTileFunc(sx,tile,pal,sprio);
\r
834 static void DrawSpriteInterlace(unsigned int *sprite)
\r
836 int width=0,height=0;
\r
839 int tile=0,delta=0;
\r
842 // parse the sprite data
\r
845 sy=(sy&0x3ff)-0x100; // Y
\r
846 width=(height>>2)&3; height&=3;
\r
847 width++; height++; // Width and height in tiles
\r
849 row=(Scanline<<1)-sy; // Row of the sprite we are on
\r
852 sx=((code>>16)&0x1ff)-0x78; // X
\r
854 if (code&0x1000) row^=(16<<height)-1; // Flip Y
\r
856 tile=code&0x3ff; // Tile number
\r
857 tile+=row>>4; // Tile number increases going down
\r
858 delta=height; // Delta to increase tile by going right
\r
859 if (code&0x0800) { tile+=delta*(width-1); delta=-delta; } // Flip X
\r
861 tile<<=5; tile+=(row&15)<<1; // Tile address
\r
863 delta<<=5; // Delta of address
\r
864 pal=((code>>9)&0x30); // Get palette pointer
\r
866 for (; width; width--,sx+=8,tile+=delta)
\r
868 if(sx<=0) continue;
\r
869 if(sx>=328) break; // Offscreen
\r
871 tile&=0x7fff; // Clip tile address
\r
872 if (code&0x0800) TileFlip(sx,tile,pal);
\r
873 else TileNorm(sx,tile,pal);
\r
878 static void DrawAllSpritesInterlace(int pri, int maxwidth)
\r
880 struct PicoVideo *pvid=&Pico.video;
\r
881 int i,u,table,link=0,sline=Scanline<<1;
\r
882 unsigned int *sprites[80]; // Sprite index
\r
884 table=pvid->reg[5]&0x7f;
\r
885 if (pvid->reg[12]&1) table&=0x7e; // Lowest bit 0 in 40-cell mode
\r
886 table<<=8; // Get sprite table address/2
\r
888 for (i=u=0; u < 80 && i < 21; u++)
\r
890 unsigned int *sprite;
\r
891 int code, sx, sy, height;
\r
893 sprite=(unsigned int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
\r
898 if(((sx>>15)&1) != pri) goto nextsprite; // wrong priority sprite
\r
900 // check if it is on this line
\r
901 sy = (code&0x3ff)-0x100;
\r
902 height = (((code>>24)&3)+1)<<4;
\r
903 if(sline < sy || sline >= sy+height) goto nextsprite; // no
\r
905 // check if sprite is not hidden offscreen
\r
906 sx = (sx>>16)&0x1ff;
\r
907 sx -= 0x78; // Get X coordinate + 8
\r
908 if(sx <= -8*3 || sx >= maxwidth) goto nextsprite;
\r
910 // sprite is good, save it's pointer
\r
911 sprites[i++]=sprite;
\r
914 // Find next sprite
\r
915 link=(code>>16)&0x7f;
\r
916 if(!link) break; // End of sprites
\r
919 // Go through sprites backwards:
\r
920 for (i-- ;i>=0; i--)
\r
921 DrawSpriteInterlace(sprites[i]);
\r
925 #ifndef _ASM_DRAW_C
\r
926 static void DrawSpritesFromCache(int *hc, int sh)
\r
928 int code, tile, sx, delta, width;
\r
930 int (*fTileFunc)(int sx,int addr,int pal);
\r
932 // *(*hc)++ = (tile<<16)|((code&0x0800)<<5)|((sx<<6)&0x0000ffc0)|((code>>9)&0x30)|((sprite[0]>>24)&0xf);
\r
934 while((code=*hc++)) {
\r
937 width=delta>>2; delta&=3;
\r
938 width++; delta++; // Width and height in tiles
\r
939 if (code&0x10000) delta=-delta; // Flip X
\r
941 tile=((unsigned int)code>>17)<<1;
\r
942 sx=(code<<16)>>22; // sx can be negative (start offscreen), so sign extend
\r
944 if(sh && pal == 0x30) { //
\r
945 if(code&0x10000) fTileFunc=TileFlipSH;
\r
946 else fTileFunc=TileNormSH;
\r
948 if(code&0x10000) fTileFunc=TileFlip;
\r
949 else fTileFunc=TileNorm;
\r
952 for (; width; width--,sx+=8,tile+=delta)
\r
954 if(sx<=0) continue;
\r
955 if(sx>=328) break; // Offscreen
\r
957 tile&=0x7fff; // Clip tile address
\r
958 fTileFunc(sx,tile,pal);
\r
965 // Index + 0 : ----hhvv -lllllll -------y yyyyyyyy
\r
966 // Index + 4 : -------x xxxxxxxx pccvhnnn nnnnnnnn
\r
968 // Index + 0 : hhhhvvvv ab--hhvv yyyyyyyy yyyyyyyy // a: offscreen h, b: offs. v, h: horiz. size
\r
969 // Index + 4 : xxxxxxxx xxxxxxxx pccvhnnn nnnnnnnn // x: x coord + 8
\r
971 static void PrepareSprites(int full)
\r
973 struct PicoVideo *pvid=&Pico.video;
\r
974 int u=0,link=0,sblocks=0;
\r
976 int *pd = HighPreSpr;
\r
978 table=pvid->reg[5]&0x7f;
\r
979 if (pvid->reg[12]&1) table&=0x7e; // Lowest bit 0 in 40-cell mode
\r
980 table<<=8; // Get sprite table address/2
\r
985 // updates: tilecode, sx
\r
986 for (u=0; u < 80 && (pack = *pd); u++, pd+=2)
\r
988 unsigned int *sprite;
\r
989 int code, code2, sx, sy, skip=0;
\r
991 sprite=(unsigned int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
\r
993 // parse sprite info
\r
996 code2 &= ~0xfe000000;
\r
997 code2 -= 0x00780000; // Get X coordinate + 8 in upper 16 bits
\r
1000 if((sx <= 8-((pack>>28)<<3) && sx >= -0x76) || sx >= 328) skip=1<<23;
\r
1001 else if ((sy = (pack<<16)>>16) < 240 && sy > -32) {
\r
1002 int sbl = (2<<(pack>>28))-1;
\r
1003 sblocks |= sbl<<(sy>>3);
\r
1006 *pd = (pack&~(1<<23))|skip;
\r
1009 // Find next sprite
\r
1010 link=(code>>16)&0x7f;
\r
1011 if(!link) break; // End of sprites
\r
1013 SpriteBlocks |= sblocks;
\r
1017 for (; u < 80; u++)
\r
1019 unsigned int *sprite;
\r
1020 int code, code2, sx, sy, hv, height, width, skip=0, sx_min;
\r
1022 sprite=(unsigned int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
\r
1024 // parse sprite info
\r
1026 sy = (code&0x1ff)-0x80;
\r
1027 hv = (code>>24)&0xf;
\r
1028 height = (hv&3)+1;
\r
1030 if(sy > 240 || sy + (height<<3) <= 0) skip|=1<<22;
\r
1032 width = (hv>>2)+1;
\r
1033 code2 = sprite[1];
\r
1034 sx = (code2>>16)&0x1ff;
\r
1035 sx -= 0x78; // Get X coordinate + 8
\r
1036 sx_min = 8-(width<<3);
\r
1038 if((sx <= sx_min && sx >= -0x76) || sx >= 328) skip|=1<<23;
\r
1039 else if (sx > sx_min && !skip) {
\r
1040 int sbl = (2<<height)-1;
\r
1042 if(shi < 0) shi=0; // negative sy
\r
1043 sblocks |= sbl<<shi;
\r
1046 *pd++ = (width<<28)|(height<<24)|skip|(hv<<16)|((unsigned short)sy);
\r
1047 *pd++ = (sx<<16)|((unsigned short)code2);
\r
1049 // Find next sprite
\r
1050 link=(code>>16)&0x7f;
\r
1051 if(!link) break; // End of sprites
\r
1053 SpriteBlocks = sblocks;
\r
1054 *pd = 0; // terminate
\r
1058 static void DrawAllSprites(int *hcache, int maxwidth, int prio, int sh)
\r
1061 int sx1seen=0; // sprite with x coord 1 or 0 seen
\r
1062 int ntiles = 0; // tile counter for sprite limit emulation
\r
1063 int *sprites[40]; // Sprites to draw in fast mode
\r
1064 int *ps, pack, rs = rendstatus, scan=Scanline;
\r
1067 DrawAllSpritesInterlace(prio, maxwidth);
\r
1071 //dprintf("PrepareSprites(%i) [%i]", (rs>>4)&1, scan);
\r
1072 PrepareSprites(rs&0x10);
\r
1073 rendstatus=rs&~0x11;
\r
1075 if (!(SpriteBlocks & (1<<(scan>>3)))) return;
\r
1077 if(((rs&4)||sh)&&prio==0)
\r
1078 memset(HighSprZ, 0, 328);
\r
1079 if(!(rs&4)&&prio) {
\r
1080 if(hcache[0]) DrawSpritesFromCache(hcache, sh);
\r
1086 // Index + 0 : hhhhvvvv ab--hhvv yyyyyyyy yyyyyyyy // a: offscreen h, b: offs. v, h: horiz. size
\r
1087 // Index + 4 : xxxxxxxx xxxxxxxx pccvhnnn nnnnnnnn // x: x coord + 8
\r
1089 for(i=u=n=0; (pack = *ps) && n < 20; ps+=2, u++)
\r
1091 int sx, sy, row, pack2;
\r
1093 if(pack & 0x00400000) continue;
\r
1095 // get sprite info
\r
1098 sy = (pack <<16)>>16;
\r
1101 //dprintf("x: %i y: %i %ix%i", sx, sy, (pack>>28)<<3, (pack>>21)&0x38);
\r
1103 if(sx == -0x77) sx1seen|=1; // for masking mode 2
\r
1105 // check if it is on this line
\r
1106 if(row < 0 || row >= ((pack>>21)&0x38)) continue; // no
\r
1107 n++; // number of sprites on this line (both visible and hidden, max is 20) [broken]
\r
1110 ntiles += pack>>28;
\r
1111 if(ntiles > 40) break;
\r
1113 if(pack & 0x00800000) continue;
\r
1115 // masking sprite?
\r
1117 if(!(sx1seen&1) || sx1seen==3) {
\r
1118 break; // this sprite is not drawn and remaining sprites are masked
\r
1120 if((sx1seen>>8) == 0) sx1seen=(i+1)<<8;
\r
1123 else if(sx == -0x77) {
\r
1124 // masking mode2 (Outrun, Galaxy Force II, Shadow of the beast)
\r
1125 if(sx1seen>>8) { i=(sx1seen>>8)-1; break; } // seen both 0 and 1
\r
1130 // accurate sprites
\r
1131 //dprintf("P:%i",((sx>>15)&1));
\r
1133 // might need to skip this sprite
\r
1134 if((pack2&0x8000) ^ (prio<<15)) continue;
\r
1135 DrawSpriteZ(pack,pack2,sh|(prio<<1),(char)(0x1f-n));
\r
1139 // sprite is good, save it's pointer
\r
1143 // Go through sprites backwards:
\r
1145 for (i--; i>=0; i--)
\r
1146 DrawSprite(sprites[i],&hcache,sh);
\r
1148 // terminate cache list
\r
1154 // --------------------------------------------
\r
1156 #ifndef _ASM_DRAW_C
\r
1157 static void BackFill(int reg7, int sh)
\r
1159 unsigned int back;
\r
1161 // Start with a blank scanline (background colour):
\r
1167 memset32((int *)(HighCol+8), back, 320/4);
\r
1171 // --------------------------------------------
\r
1173 unsigned short HighPal[0x100];
\r
1175 #ifndef _ASM_DRAW_C
\r
1176 static void FinalizeLineBGR444(int sh)
\r
1178 unsigned short *pd=DrawLineDest;
\r
1179 unsigned char *ps=HighCol+8;
\r
1180 unsigned short *pal=Pico.cram;
\r
1183 if (Pico.video.reg[12]&1) {
\r
1186 if(!(PicoOpt&0x100)) pd+=32;
\r
1192 if(Pico.m.dirtyPal) {
\r
1193 blockcpy(pal, Pico.cram, 0x40*2);
\r
1194 // shadowed pixels
\r
1195 for(i = 0x3f; i >= 0; i--)
\r
1196 pal[0x40|i] = pal[0xc0|i] = (unsigned short)((pal[i]>>1)&0x0777);
\r
1197 // hilighted pixels
\r
1198 for(i = 0x3f; i >= 0; i--) {
\r
1199 t=pal[i]&0xeee;t+=0x444;if(t&0x10)t|=0xe;if(t&0x100)t|=0xe0;if(t&0x1000)t|=0xe00;t&=0xeee;
\r
1200 pal[0x80|i]=(unsigned short)t;
\r
1202 Pico.m.dirtyPal = 0;
\r
1206 for(i = 0; i < len; i++)
\r
1207 pd[i] = pal[ps[i]];
\r
1211 static void FinalizeLineRGB555(int sh)
\r
1213 unsigned short *pd=DrawLineDest;
\r
1214 unsigned char *ps=HighCol+8;
\r
1215 unsigned short *pal=HighPal;
\r
1216 int len, i, t, dirtyPal = Pico.m.dirtyPal;
\r
1220 unsigned int *spal=(void *)Pico.cram;
\r
1221 unsigned int *dpal=(void *)HighPal;
\r
1222 for (i = 0x3f/2; i >= 0; i--)
\r
1224 dpal[i] = ((spal[i]&0x000f000f)<< 1)|((spal[i]&0x00f000f0)<<3)|((spal[i]&0x0f000f00)<<4);
\r
1226 dpal[i] = ((spal[i]&0x000f000f)<<12)|((spal[i]&0x00f000f0)<<3)|((spal[i]&0x0f000f00)>>7);
\r
1228 Pico.m.dirtyPal = 0;
\r
1234 // shadowed pixels
\r
1235 for (i = 0x3f; i >= 0; i--)
\r
1236 pal[0x40|i] = pal[0xc0|i] = (unsigned short)((pal[i]>>1)&0x738e);
\r
1237 // hilighted pixels
\r
1238 for (i = 0x3f; i >= 0; i--) {
\r
1239 t=pal[i]&0xe71c;t+=0x4208;if(t&0x20)t|=0x1c;if(t&0x800)t|=0x700;if(t&0x10000)t|=0xe000;t&=0xe71c;
\r
1240 pal[0x80|i]=(unsigned short)t;
\r
1245 if (Pico.video.reg[12]&1) {
\r
1248 if (!(PicoOpt&0x100)) pd+=32;
\r
1253 for (i = 0; i < len; i++)
\r
1254 pd[i] = pal[ps[i]];
\r
1257 extern void amips_clut(unsigned short *dst, unsigned char *src, unsigned short *pal, int count);
\r
1258 amips_clut(pd, ps, pal, len);
\r
1264 static void FinalizeLine8bit(int sh)
\r
1266 unsigned char *pd=DrawLineDest;
\r
1267 int len, rs = rendstatus;
\r
1268 static int dirty_count;
\r
1270 if (!sh && Pico.m.dirtyPal == 1 && Scanline < 222) {
\r
1271 // a hack for mid-frame palette changes
\r
1274 else dirty_count++;
\r
1277 if (dirty_count == 3) {
\r
1278 blockcpy(HighPal, Pico.cram, 0x40*2);
\r
1279 } else if (dirty_count == 11) {
\r
1280 blockcpy(HighPal+0x40, Pico.cram, 0x40*2);
\r
1284 if (Pico.video.reg[12]&1) {
\r
1287 if(!(PicoOpt&0x100)) pd+=32;
\r
1291 if (!sh && rs & 0x20) {
\r
1292 if (dirty_count >= 11) {
\r
1293 blockcpy_or(pd, HighCol+8, len, 0x80);
\r
1295 blockcpy_or(pd, HighCol+8, len, 0x40);
\r
1298 blockcpy(pd, HighCol+8, len);
\r
1302 static void (*FinalizeLine)(int sh) = FinalizeLineBGR444;
\r
1304 // --------------------------------------------
\r
1306 static int DrawDisplay(int sh)
\r
1308 struct PicoVideo *pvid=&Pico.video;
\r
1309 int win=0,edge=0,hvwind=0;
\r
1310 int maxw, maxcells;
\r
1312 rendstatus&=~0xc0;
\r
1314 if(pvid->reg[12]&1) {
\r
1315 maxw = 328; maxcells = 40;
\r
1317 maxw = 264; maxcells = 32;
\r
1320 // Find out if the window is on this line:
\r
1321 win=pvid->reg[0x12];
\r
1322 edge=(win&0x1f)<<3;
\r
1324 if (win&0x80) { if (Scanline>=edge) hvwind=1; }
\r
1325 else { if (Scanline< edge) hvwind=1; }
\r
1327 if (!hvwind) { // we might have a vertical window here
\r
1328 win=pvid->reg[0x11];
\r
1331 if (!edge) hvwind=1;
\r
1332 else if(edge < (maxcells>>1)) hvwind=2;
\r
1335 else if(edge < (maxcells>>1)) hvwind=2;
\r
1340 DrawLayer(1|(sh<<1), HighCacheB, 0, maxcells);
\r
1342 DrawWindow(0, maxcells>>1, 0, sh);
\r
1343 else if (hvwind == 2) {
\r
1344 // ahh, we have vertical window
\r
1345 DrawLayer(0|(sh<<1), HighCacheA, (win&0x80) ? 0 : edge<<1, (win&0x80) ? edge<<1 : maxcells);
\r
1346 DrawWindow( (win&0x80) ? edge : 0, (win&0x80) ? maxcells>>1 : edge, 0, sh);
\r
1348 DrawLayer(0|(sh<<1), HighCacheA, 0, maxcells);
\r
1349 DrawAllSprites(HighCacheS, maxw, 0, sh);
\r
1351 if (HighCacheB[0]) DrawTilesFromCache(HighCacheB, sh, 328);
\r
1353 DrawWindow(0, maxcells>>1, 1, sh);
\r
1354 else if (hvwind == 2) {
\r
1355 if(HighCacheA[0]) DrawTilesFromCache(HighCacheA, sh, (win&0x80) ? edge<<4 : 328);
\r
1356 DrawWindow((win&0x80) ? edge : 0, (win&0x80) ? maxcells>>1 : edge, 1, sh);
\r
1358 if (HighCacheA[0]) DrawTilesFromCache(HighCacheA, sh, 328);
\r
1359 DrawAllSprites(HighCacheS, maxw, 1, sh);
\r
1364 for (a = 0, c = HighCacheA; *c; c++, a++);
\r
1365 for (b = 0, c = HighCacheB; *c; c++, b++);
\r
1366 printf("%i:%03i: a=%i, b=%i\n", Pico.m.frame_count, Scanline, a, b);
\r
1374 static int Skip=0;
\r
1376 PICO_INTERNAL void PicoFrameStart(void)
\r
1378 // prepare to do this frame
\r
1379 rendstatus = (PicoOpt&0x80)>>5; // accurate sprites
\r
1381 Pico.video.status &= ~0x0020;
\r
1382 else Pico.video.status |= 0x0020; // sprite collision
\r
1383 if((Pico.video.reg[12]&6) == 6) rendstatus |= 8; // interlace mode
\r
1384 if(Pico.m.dirtyPal) Pico.m.dirtyPal = 2; // reset dirty if needed
\r
1386 PrepareSprites(1);
\r
1390 PICO_INTERNAL int PicoLine(int scan)
\r
1393 if (Skip>0) { Skip--; return 0; } // Skip rendering lines
\r
1396 sh=(Pico.video.reg[0xC]&8)>>3; // shadow/hilight?
\r
1399 BackFill(Pico.video.reg[7], sh);
\r
1400 if (Pico.video.reg[1]&0x40)
\r
1403 if (FinalizeLine != NULL)
\r
1406 Skip=PicoScan(Scanline,DrawLineDest);
\r
1412 void PicoDrawSetColorFormat(int which)
\r
1416 case 2: FinalizeLine = FinalizeLine8bit; break;
\r
1417 case 1: FinalizeLine = FinalizeLineRGB555; break;
\r
1418 case 0: FinalizeLine = FinalizeLineBGR444; break;
\r
1419 default:FinalizeLine = NULL; break;
\r
1421 #if OVERRIDE_HIGHCOL
\r
1422 if (which) HighCol=DefHighCol;
\r