Diff for /np2/generic/cmndraw.c between versions 1.1 and 1.3

version 1.1, 2003/11/21 06:51:11 version 1.3, 2004/03/10 02:42:51
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
 #include        "scrnmng.h"  #include        "scrnmng.h"
   #include        "cpucore.h"
   #include        "font.h"
 #include        "cmndraw.h"  #include        "cmndraw.h"
   
   
   void cmndraw_getpals(CMNPALFN *fn, CMNPAL *pal, UINT pals) {
   
           UINT    i;
   
           if (fn == NULL) {
                   return;
           }
           if (fn->get8) {
                   for (i=0; i<pals; i++) {
                           pal[i].pal8 = (*fn->get8)(fn, i);
                   }
           }
           if (fn->get32) {
                   for (i=0; i<pals; i++) {
                           pal[i].pal32.d = (*fn->get32)(fn, i);
                   }
                   if (fn->cnv16) {
                           for (i=0; i<pals; i++) {
                                   pal[i].pal16 = (*fn->cnv16)(fn, pal[i].pal32);
                           }
                   }
           }
   }
   
 void cmndraw_makegrad(RGB32 *pal, int pals, RGB32 bg, RGB32 fg) {  void cmndraw_makegrad(RGB32 *pal, int pals, RGB32 bg, RGB32 fg) {
   
         int             i;          int             i;
Line 396  const BYTE *p; Line 422  const BYTE *p;
 }  }
 #endif  #endif
   
   
   
   // ----
   
   void cmddraw_fill(CMNVRAM *vram, int x, int y, int cx, int cy, CMNPAL *pal) {
   
           if ((vram == NULL) || (pal == NULL)) {
                   return;
           }
           switch(vram->bpp) {
   #if defined(SUPPORT_8BPP)
                   case 8:
                           cmndraw8_fill(vram, x, y, cx, cy, pal->pal8);
                           break;
   #endif
   #if defined(SUPPORT_16BPP)
                   case 16:
                           cmndraw16_fill(vram, x, y, cx, cy, pal->pal16);
                           break;
   #endif
   #if defined(SUPPORT_24BPP)
                   case 24:
                           cmndraw24_fill(vram, x, y, cx, cy, pal->pal32);
                           break;
   #endif
   #if defined(SUPPORT_32BPP)
                   case 32:
                           cmndraw32_fill(vram, x, y, cx, cy, pal->pal32);
                           break;
   #endif
           }
   }
   
   void cmddraw_text8(CMNVRAM *vram, int x, int y, const char *str, CMNPAL *pal) {
   
           UINT    s;
           BYTE    src[10];
   
           if ((vram == NULL) || (str == NULL) || (pal == NULL)) {
                   return;
           }
           src[0] = 8;
           src[1] = 8;
           while(*str) {
                   s = (UINT)(*str++);
                   CopyMemory(src + 2, fontrom + 0x82000 + (s * 16), 8);
                   switch(vram->bpp) {
   #if defined(SUPPORT_8BPP)
                           case 8:
                                   cmndraw8_setfg(vram, src, x, y, pal->pal8);
                                   break;
   #endif
   #if defined(SUPPORT_16BPP)
                           case 16:
                                   cmndraw16_setfg(vram, src, x, y, pal->pal16);
                                   break;
   #endif
   #if defined(SUPPORT_24BPP)
                           case 24:
                                   cmndraw24_setfg(vram, src, x, y, pal->pal32);
                                   break;
   #endif
   #if defined(SUPPORT_32BPP)
                           case 32:
                                   cmndraw32_setfg(vram, src, x, y, pal->pal32);
                                   break;
   #endif
                   }
                   x += 8;
           }
   }
   

Removed from v.1.1  
changed lines
  Added in v.1.3


RetroPC.NET-CVS <cvs@retropc.net>