videotest.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * GRUB -- GRand Unified Bootloader
  3. * Copyright (C) 2006,2007,2009 Free Software Foundation, Inc.
  4. *
  5. * GRUB is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * GRUB is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <grub/video.h>
  19. #include <grub/types.h>
  20. #include <grub/dl.h>
  21. #include <grub/misc.h>
  22. #include <grub/mm.h>
  23. #include <grub/font.h>
  24. #include <grub/term.h>
  25. #include <grub/command.h>
  26. #include <grub/i18n.h>
  27. static grub_err_t
  28. grub_cmd_videotest (grub_command_t cmd __attribute__ ((unused)),
  29. int argc __attribute__ ((unused)),
  30. char **args __attribute__ ((unused)))
  31. {
  32. grub_err_t err;
  33. grub_video_color_t color;
  34. unsigned int x;
  35. unsigned int y;
  36. unsigned int width;
  37. unsigned int height;
  38. int i;
  39. grub_font_t sansbig;
  40. grub_font_t sans;
  41. grub_font_t sanssmall;
  42. grub_font_t fixed;
  43. struct grub_font_glyph *glyph;
  44. struct grub_video_render_target *text_layer;
  45. grub_video_color_t palette[16];
  46. const char *str;
  47. int texty;
  48. err = grub_video_set_mode ("auto", GRUB_VIDEO_MODE_TYPE_PURE_TEXT, 0);
  49. if (err)
  50. return err;
  51. grub_video_get_viewport (&x, &y, &width, &height);
  52. grub_video_create_render_target (&text_layer, width, height,
  53. GRUB_VIDEO_MODE_TYPE_RGB
  54. | GRUB_VIDEO_MODE_TYPE_ALPHA);
  55. grub_video_set_active_render_target (GRUB_VIDEO_RENDER_TARGET_DISPLAY);
  56. color = grub_video_map_rgb (0, 0, 0);
  57. grub_video_fill_rect (color, 0, 0, width, height);
  58. color = grub_video_map_rgb (255, 0, 0);
  59. grub_video_fill_rect (color, 0, 0, 100, 100);
  60. color = grub_video_map_rgb (0, 255, 255);
  61. grub_video_fill_rect (color, 100, 100, 100, 100);
  62. sansbig = grub_font_get ("Unknown Regular 16");
  63. sans = grub_font_get ("Unknown Regular 16");
  64. sanssmall = grub_font_get ("Unknown Regular 16");
  65. fixed = grub_font_get ("Fixed 20");
  66. if (! sansbig || ! sans || ! sanssmall || ! fixed)
  67. return grub_error (GRUB_ERR_BAD_FONT, "no font loaded");
  68. glyph = grub_font_get_glyph (fixed, '*');
  69. grub_font_draw_glyph (glyph, color, 200 ,0);
  70. grub_video_set_viewport (x + 150, y + 150,
  71. width - 150 * 2, height - 150 * 2);
  72. color = grub_video_map_rgb (77, 33, 77);
  73. grub_video_fill_rect (color, 0, 0, width, height);
  74. grub_video_set_active_render_target (text_layer);
  75. color = grub_video_map_rgb (255, 255, 255);
  76. texty = 32;
  77. grub_font_draw_string ("The quick brown fox jumped over the lazy dog.",
  78. sans, color, 16, texty);
  79. texty += grub_font_get_descent (sans) + grub_font_get_leading (sans);
  80. texty += grub_font_get_ascent (fixed);
  81. grub_font_draw_string ("The quick brown fox jumped over the lazy dog.",
  82. fixed, color, 16, texty);
  83. texty += grub_font_get_descent (fixed) + grub_font_get_leading (fixed);
  84. /* To convert Unicode characters into UTF-8 for this test, the following
  85. command is useful:
  86. echo -ne '\x00\x00\x26\x3A' | iconv -f UTF-32BE -t UTF-8 | od -t x1
  87. This converts the Unicode character U+263A to UTF-8. */
  88. /* Characters used:
  89. Code point Description UTF-8 encoding
  90. ----------- ------------------------------ --------------
  91. U+263A unfilled smiley face E2 98 BA
  92. U+00A1 inverted exclamation point C2 A1
  93. U+00A3 British pound currency symbol C2 A3
  94. U+03C4 Greek tau CF 84
  95. U+00E4 lowercase letter a with umlaut C3 A4
  96. U+2124 set 'Z' symbol (integers) E2 84 A4
  97. U+2287 subset symbol E2 8A 87
  98. U+211D set 'R' symbol (real numbers) E2 84 9D */
  99. str =
  100. "Unicode test: happy\xE2\x98\xBA \xC2\xA3 5.00"
  101. " \xC2\xA1\xCF\x84\xC3\xA4u! "
  102. " \xE2\x84\xA4\xE2\x8A\x87\xE2\x84\x9D";
  103. color = grub_video_map_rgb (128, 128, 255);
  104. /* All characters in the string exist in the 'Fixed 20' (10x20) font. */
  105. texty += grub_font_get_ascent(fixed);
  106. grub_font_draw_string (str, fixed, color, 16, texty);
  107. texty += grub_font_get_descent (fixed) + grub_font_get_leading (fixed);
  108. texty += grub_font_get_ascent(sansbig);
  109. grub_font_draw_string (str, sansbig, color, 16, texty);
  110. texty += grub_font_get_descent (sansbig) + grub_font_get_leading (sansbig);
  111. texty += grub_font_get_ascent(sans);
  112. grub_font_draw_string (str, sans, color, 16, texty);
  113. texty += grub_font_get_descent (sans) + grub_font_get_leading (sans);
  114. texty += grub_font_get_ascent(sanssmall);
  115. grub_font_draw_string (str, sanssmall, color, 16, texty);
  116. texty += (grub_font_get_descent (sanssmall)
  117. + grub_font_get_leading (sanssmall));
  118. glyph = grub_font_get_glyph (fixed, '*');
  119. for (i = 0; i < 16; i++)
  120. {
  121. color = grub_video_map_color (i);
  122. palette[i] = color;
  123. grub_font_draw_glyph (glyph, color, 16 + i * 16, 220);
  124. }
  125. grub_video_set_active_render_target (GRUB_VIDEO_RENDER_TARGET_DISPLAY);
  126. for (i = 0; i < 5; i++)
  127. {
  128. color = grub_video_map_rgb (i, 33, 77);
  129. grub_video_fill_rect (color, 0, 0, width, height);
  130. grub_video_blit_render_target (text_layer, GRUB_VIDEO_BLIT_BLEND, 0, 0,
  131. 0, 0, width, height);
  132. grub_video_swap_buffers ();
  133. }
  134. grub_getkey ();
  135. grub_video_delete_render_target (text_layer);
  136. grub_video_restore ();
  137. for (i = 0; i < 16; i++)
  138. grub_printf("color %d: %08x\n", i, palette[i]);
  139. grub_errno = GRUB_ERR_NONE;
  140. return grub_errno;
  141. }
  142. static grub_command_t cmd;
  143. GRUB_MOD_INIT(videotest)
  144. {
  145. cmd = grub_register_command ("videotest", grub_cmd_videotest,
  146. 0, N_("Test video subsystem."));
  147. }
  148. GRUB_MOD_FINI(videotest)
  149. {
  150. grub_unregister_command (cmd);
  151. }