gds_font.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #ifndef _GDS_FONT_H_
  2. #define _GDS_FONT_H_
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. struct GDS_Device;
  9. /*
  10. * X-GLCD Font format:
  11. *
  12. * First byte of glyph is it's width in pixels.
  13. * Each data byte represents 8 pixels going down from top to bottom.
  14. *
  15. * Example glyph layout for a 16x16 font
  16. * 'a': [Glyph width][Pixel column 0][Pixel column 1] where the number of pixel columns is the font height divided by 8
  17. * 'b': [Glyph width][Pixel column 0][Pixel column 1]...
  18. * 'c': And so on...
  19. */
  20. #pragma pack(push, 1) // Disable padding
  21. struct GDS_FontDef {
  22. const void* dummy; // 4 bytes (assuming 32-bit pointers)
  23. int Width; // 4 bytes
  24. int Height; // 4 bytes
  25. int StartChar; // 4 bytes
  26. int EndChar; // 4 bytes
  27. bool Monospace; // 1 byte
  28. uint8_t padding[3]; // 3 bytes padding to align to 24 bytes
  29. const uint8_t FontData[]; // 4 bytes (assuming 32-bit pointers)
  30. };
  31. #pragma pack(pop) // Re-enable padding
  32. typedef enum {
  33. TextAnchor_East = 0,
  34. TextAnchor_West,
  35. TextAnchor_North,
  36. TextAnchor_South,
  37. TextAnchor_NorthEast,
  38. TextAnchor_NorthWest,
  39. TextAnchor_SouthEast,
  40. TextAnchor_SouthWest,
  41. TextAnchor_Center
  42. } TextAnchor;
  43. bool gds_init_fonts();
  44. const struct GDS_FontDef* GDS_SetFont( struct GDS_Device* Display, const struct GDS_FontDef* Font );
  45. void GDS_FontForceProportional( struct GDS_Device* Display, bool Force );
  46. void GDS_FontForceMonospace( struct GDS_Device* Display, bool Force );
  47. int GDS_FontGetWidth( struct GDS_Device* Display );
  48. int GDS_FontGetHeight( struct GDS_Device* Display );
  49. int GDS_FontGetMaxCharsPerRow( struct GDS_Device* Display );
  50. int GDS_FontGetMaxCharsPerColumn( struct GDS_Device* Display );
  51. int GDS_FontGetCharWidth( struct GDS_Device* Display, char Character );
  52. int GDS_FontGetCharHeight( struct GDS_Device* Display );
  53. int GDS_FontMeasureString( struct GDS_Device* Display, const char* Text );
  54. int GDS_FontMeasureStringLine( struct GDS_Device* Display, int Line, const char* Text );
  55. void GDS_FontDrawChar( struct GDS_Device* Display, char Character, int x, int y, int Color );
  56. void GDS_FontDrawString( struct GDS_Device* Display, int x, int y, const char* Text, int Color );
  57. void GDS_FontDrawAnchoredString( struct GDS_Device* Display, TextAnchor Anchor, const char* Text, int Color );
  58. void GDS_FontGetAnchoredStringCoords( struct GDS_Device* Display, int* OutX, int* OutY, TextAnchor Anchor, const char* Text );
  59. struct GDS_FontDef * Font_droid_sans_fallback_11x13;
  60. // const struct GDS_FontDef * Font_droid_sans_fallback_15x17;
  61. // const struct GDS_FontDef * Font_droid_sans_fallback_24x28;
  62. // const struct GDS_FontDef * Font_droid_sans_mono_7x13;
  63. // const struct GDS_FontDef * Font_droid_sans_mono_13x24;
  64. // const struct GDS_FontDef * Font_droid_sans_mono_16x31;
  65. // const struct GDS_FontDef * Font_liberation_mono_9x15;
  66. // const struct GDS_FontDef * Font_liberation_mono_13x21;
  67. // const struct GDS_FontDef * Font_liberation_mono_17x30;
  68. // const struct GDS_FontDef * Font_Tarable7Seg_16x32;
  69. // const struct GDS_FontDef * Font_Tarable7Seg_32x64;
  70. struct GDS_FontDef * Font_line_1;
  71. struct GDS_FontDef * Font_line_2;
  72. #ifdef __cplusplus
  73. }
  74. #endif
  75. #endif