GUIEncJS.c
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:3k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/GUI
  4. *                        Universal graphic software for embedded applications
  5. *
  6. *                       (c) Copyright 2002, Micrium Inc., Weston, FL
  7. *                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
  8. *
  9. *              礐/GUI is protected by international copyright laws. Knowledge of the
  10. *              source code may not be used to write a similar product. This file may
  11. *              only be used in accordance with a license and should not be redistributed
  12. *              in any way. We appreciate your understanding and fairness.
  13. *
  14. ----------------------------------------------------------------------
  15. File        : GUIEncSJ.C
  16. Purpose     : Implementation of Shift JIS decoding
  17. ----------------------------------------------------------------------
  18. Version-Date---Author-Explanation
  19. ---------------------------END-OF-HEADER------------------------------
  20. */
  21. #include <stddef.h>           /* needed for definition of NULL */
  22. #include "GUI_Protected.H"
  23.  
  24. /*
  25. ***********************************************************
  26. *
  27. *                       Static subroutines
  28. *
  29. ***********************************************************
  30. */
  31. static U16 DB2SJIS(U8 Byte0, U8 Byte1) {
  32.   return Byte1 | (((U16)Byte0)<<8);
  33. }
  34. /*************** GUI_GetStringDistX ****************************
  35. This routine is used to calculate the length of a string in pixels.
  36. */
  37. int GUI_GetLineDistX_SJIS(const char GUI_FAR *s, int Len) {
  38.   int Dist =0;
  39.   if (s) {
  40.     U8 c0;
  41.     while (((c0=*(U8*)s) !=0) && Len >=0) {
  42.       s++; Len--;
  43.       if (c0 > 127) {
  44.         U8  c1 = *(U8*)s++;
  45.         Len--;
  46.         Dist += GUI_GetCharDistX(DB2SJIS(c0, c1));
  47.       } else {
  48.         Dist += GUI_GetCharDistX(c0);
  49.       }
  50.     }
  51.   }
  52.   return Dist;
  53. }
  54. /*************** GUI_GetLineLen ****************************
  55. Returns the number of characters in a string
  56. Note: tthe return value can be used as offset into the
  57. string, which means that double characters count double
  58. */
  59. int GUI_GetLineLen_SJIS(const char GUI_FAR *s, int MaxLen) {
  60.   int Len =0;
  61.   U8 c0;
  62.   while (((c0=*(U8*)s) !=0) && Len < MaxLen) {
  63.     s++;
  64.     if (c0 > 127) {
  65.       Len++; s++;
  66.     } else {
  67.       switch (c0) {
  68.       case 'n': return Len;
  69.       }
  70.     }
  71.     Len++;
  72.   }
  73.   return Len;
  74. }
  75. /*
  76. ********************************************************
  77. *
  78. *                Display line
  79. *
  80. ********************************************************
  81. */
  82. void GL_DispLine_SJIS(const char GUI_FAR *s, int Len) {
  83.   U8 c0;
  84.   while (--Len >=0) {
  85.     c0=*(U8*)s++;
  86.     if (c0 > 127) {
  87.       U8  c1 = *(U8*)s++;
  88.       Len--;
  89.       GL_DispChar (DB2SJIS(c0, c1));
  90.     } else {
  91.       GL_DispChar(c0);
  92.     }
  93.   }
  94. }
  95. tGUI_ENC_APIList GUI_ENC_APIList_SJIS = {
  96.   GUI_GetLineDistX_SJIS,
  97.   GUI_GetLineLen_SJIS,
  98.   GL_DispLine_SJIS
  99. };