Diff for /np2/sdl/fontmng.c between versions 1.3 and 1.5

version 1.3, 2004/06/25 11:47:11 version 1.5, 2005/02/13 05:31:26
Line 175  static BOOL fdatgetcache(FNTMNG fhdl, co Line 175  static BOOL fdatgetcache(FNTMNG fhdl, co
                 fhdl->cachehead = pos;                  fhdl->cachehead = pos;
         }          }
         if (pfdat) {          if (pfdat) {
                 *pfdat = (FNTDAT)(((BYTE *)(fhdl + 1)) + (pos * fhdl->fontalign));                  *pfdat = (FNTDAT)(((UINT8 *)(fhdl + 1)) + (pos * fhdl->fontalign));
         }          }
         return(r);          return(r);
 }  }
Line 220  static void getlength1(FNTMNG fhdl, FNTD Line 220  static void getlength1(FNTMNG fhdl, FNTD
         SDL_Surface     *text;          SDL_Surface     *text;
   
         if (fhdl->fonttype & FDAT_PROPORTIONAL) {          if (fhdl->fonttype & FDAT_PROPORTIONAL) {
                 codecnv_sjis2utf(utext, 2, string, length);                  codecnv_euctoucs2(utext, NELEMENTS(utext), string, length);
                 text = TTF_RenderUNICODE_Solid(fhdl->ttf_font, utext, white);                  text = TTF_RenderUNICODE_Solid(fhdl->ttf_font, utext, white);
                 setfdathead(fhdl, fdat, length, text);                  setfdathead(fhdl, fdat, length, text);
                 if (text) {                  if (text) {
Line 232  static void getlength1(FNTMNG fhdl, FNTD Line 232  static void getlength1(FNTMNG fhdl, FNTD
         }          }
 }  }
   
 static BYTE getpixeldepth(SDL_Surface *s, int x, int y) {  static UINT8 getpixeldepth(SDL_Surface *s, int x, int y) {
   
         int             bpp;          int             bpp;
 const BYTE      *ptr;  const UINT8     *ptr;
   
         if ((x >= 0) && (x < s->w) && (y >= 0) && (y < s->h)) {          if ((x >= 0) && (x < s->w) && (y >= 0) && (y < s->h)) {
                 bpp = s->format->BytesPerPixel;                  bpp = s->format->BytesPerPixel;
                 ptr = (BYTE *)s->pixels + (y * s->pitch) + (x * bpp);                  ptr = (UINT8 *)s->pixels + (y * s->pitch) + (x * bpp);
                 switch(bpp) {                  switch(bpp) {
                         case 1:                          case 1:
                                 return((ptr[0] != 0)?FDAT_DEPTH:0);                                  return((ptr[0] != 0)?FDAT_DEPTH:0);
Line 257  static void getfont1(FNTMNG fhdl, FNTDAT Line 257  static void getfont1(FNTMNG fhdl, FNTDAT
   
         UINT16          utext[2];          UINT16          utext[2];
         SDL_Surface     *text;          SDL_Surface     *text;
         BYTE            *dst;          UINT8           *dst;
         int                     x;          int                     x;
         int                     y;          int                     y;
         int                     depth;          int                     depth;
   
         codecnv_sjis2utf(utext, 2, string, length);          codecnv_euctoucs2(utext, NELEMENTS(utext), string, length);
         text = TTF_RenderUNICODE_Solid(fhdl->ttf_font, utext, white);          text = TTF_RenderUNICODE_Solid(fhdl->ttf_font, utext, white);
         setfdathead(fhdl, fdat, length, text);          setfdathead(fhdl, fdat, length, text);
         dst = (BYTE *)(fdat + 1);          dst = (UINT8 *)(fdat + 1);
         if (text) {          if (text) {
                 if (fhdl->fonttype & FDAT_ALIAS) {                  if (fhdl->fonttype & FDAT_ALIAS) {
                         for (y=0; y<fdat->height; y++) {                          for (y=0; y<fdat->height; y++) {
Line 274  static void getfont1(FNTMNG fhdl, FNTDAT Line 274  static void getfont1(FNTMNG fhdl, FNTDAT
                                         depth += getpixeldepth(text, x*2+1, y*2+0);                                          depth += getpixeldepth(text, x*2+1, y*2+0);
                                         depth += getpixeldepth(text, x*2+0, y*2+1);                                          depth += getpixeldepth(text, x*2+0, y*2+1);
                                         depth += getpixeldepth(text, x*2+1, y*2+1);                                          depth += getpixeldepth(text, x*2+1, y*2+1);
                                         *dst++ = (BYTE)((depth + 2) / 4);                                          *dst++ = (UINT8)((depth + 2) / 4);
                                 }                                  }
                         }                          }
                 }                  }
Line 292  static void getfont1(FNTMNG fhdl, FNTDAT Line 292  static void getfont1(FNTMNG fhdl, FNTDAT
         }          }
 }  }
   
 BOOL fontmng_getsize(void *hdl, const char *string, POINT_T *pt) {  BRESULT fontmng_getsize(void *hdl, const char *string, POINT_T *pt) {
   
         FNTMNG  fhdl;  
         char    buf[4];  
         _FNTDAT fdat;  
         int             width;          int             width;
         int             leng;          int             leng;
           _FNTDAT fdat;
   
         if ((hdl == NULL) || (string == NULL)) {          if ((hdl == NULL) || (string == NULL)) {
                 goto fmgs_exit;                  goto fmgs_exit;
         }          }
         fhdl = (FNTMNG)hdl;  
   
         width = 0;          width = 0;
         buf[2] = '\0';  
         while(1) {          while(1) {
                 buf[0] = *string++;                  leng = milstr_charsize(string);
                 if ((((buf[0] ^ 0x20) - 0xa1) & 0xff) < 0x3c) {                  if (!leng) {
                         buf[1] = *string++;  
                         if (buf[1] == '\0') {  
                                 break;  
                         }  
                         leng = 2;  
                 }  
                 else if (buf[0]) {  
                         buf[1] = '\0';  
                         leng = 1;  
                 }  
                 else {  
                         break;                          break;
                 }                  }
                 getlength1(fhdl, &fdat, buf, leng);                  getlength1((FNTMNG)hdl, &fdat, string, leng);
                   string += leng;
                 width += fdat.pitch;                  width += fdat.pitch;
         }          }
   
         if (pt) {          if (pt) {
                 pt->x = width;                  pt->x = width;
                 pt->y = fhdl->fontsize;                  pt->y = ((FNTMNG)hdl)->fontsize;
         }          }
         return(SUCCESS);          return(SUCCESS);
   
Line 336  fmgs_exit: Line 323  fmgs_exit:
         return(FAILURE);          return(FAILURE);
 }  }
   
 BOOL fontmng_getdrawsize(void *hdl, const char *string, POINT_T *pt) {  BRESULT fontmng_getdrawsize(void *hdl, const char *string, POINT_T *pt) {
   
         FNTMNG  fhdl;  
         char    buf[4];  
         _FNTDAT fdat;  
         int             width;          int             width;
         int             leng;  
         int             posx;          int             posx;
           int             leng;
           _FNTDAT fdat;
   
         if ((hdl == NULL) || (string == NULL)) {          if ((hdl == NULL) || (string == NULL)) {
                 goto fmgds_exit;                  goto fmgds_exit;
         }          }
         fhdl = (FNTMNG)hdl;  
   
         width = 0;          width = 0;
         posx = 0;          posx = 0;
         buf[2] = '\0';  
         while(1) {          while(1) {
                 buf[0] = *string++;                  leng = milstr_charsize(string);
                 if ((((buf[0] ^ 0x20) - 0xa1) & 0xff) < 0x3c) {                  if (!leng) {
                         buf[1] = *string++;  
                         if (buf[1] == '\0') {  
                                 break;  
                         }  
                         leng = 2;  
                 }  
                 else if (buf[0]) {  
                         buf[1] = '\0';  
                         leng = 1;  
                 }  
                 else {  
                         break;                          break;
                 }                  }
                 getlength1(fhdl, &fdat, buf, leng);                  getlength1((FNTMNG)hdl, &fdat, string, leng);
                   string += leng;
                 width = posx + max(fdat.width, fdat.pitch);                  width = posx + max(fdat.width, fdat.pitch);
                 posx += fdat.pitch;                  posx += fdat.pitch;
         }          }
         if (pt) {          if (pt) {
                 pt->x = width;                  pt->x = width;
                 pt->y = fhdl->fontsize;                  pt->y = ((FNTMNG)hdl)->fontsize;
         }          }
         return(SUCCESS);          return(SUCCESS);
   
Line 402  FNTDAT fontmng_get(void *hdl, const char Line 375  FNTDAT fontmng_get(void *hdl, const char
         fdat = (FNTDAT)(fhdl + 1);          fdat = (FNTDAT)(fhdl + 1);
 #endif  #endif
   
         leng = 1;          leng = milstr_charsize(string);
         if (((((string[0] ^ 0x20) - 0xa1) & 0xff) < 0x3c) &&  
                 (string[1] != '\0')) {  
                 leng = 2;  
         }  
         getfont1(fhdl, fdat, string, leng);          getfont1(fhdl, fdat, string, leng);
         return(fdat);          return(fdat);
   
Line 500  static void getfont1(FNTMNG fhdl, FNTDAT Line 469  static void getfont1(FNTMNG fhdl, FNTDAT
                                                                                         const char *string, int length) {                                                                                          const char *string, int length) {
   
         int             c;          int             c;
 const BYTE      *src;  const UINT8     *src;
         int             width;          int             width;
         BYTE    *dst;          UINT8   *dst;
         int             x;          int             x;
         int             y;          int             y;
   
Line 513  const BYTE *src; Line 482  const BYTE *src;
         src = ankfont + (c * ANKFONTSIZE);          src = ankfont + (c * ANKFONTSIZE);
         width = *src++;          width = *src++;
         setfdathead(fhdl, fdat, width);          setfdathead(fhdl, fdat, width);
         dst = (BYTE *)(fdat + 1);          dst = (UINT8 *)(fdat + 1);
         ZeroMemory(dst, fdat->width * fdat->height);          ZeroMemory(dst, fdat->width * fdat->height);
         dst += ((fdat->height - ANKFONTSIZE) / 2) * fdat->width;          dst += ((fdat->height - ANKFONTSIZE) / 2) * fdat->width;
         dst += (fdat->width - width) / 2;          dst += (fdat->width - width) / 2;
Line 526  const BYTE *src; Line 495  const BYTE *src;
         }          }
 }  }
   
 BOOL fontmng_getsize(void *hdl, const char *string, POINT_T *pt) {  BRESULT fontmng_getsize(void *hdl, const char *string, POINT_T *pt) {
   
         FNTMNG  fhdl;          FNTMNG  fhdl;
         char    buf[4];          char    buf[4];
Line 570  fmgs_exit: Line 539  fmgs_exit:
         return(FAILURE);          return(FAILURE);
 }  }
   
 BOOL fontmng_getdrawsize(void *hdl, const char *string, POINT_T *pt) {  BRESULT fontmng_getdrawsize(void *hdl, const char *string, POINT_T *pt) {
   
         FNTMNG  fhdl;          FNTMNG  fhdl;
         char    buf[4];          char    buf[4];

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


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