videotest.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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. #include <grub/gfxmenu_view.h>
  28. #include <grub/env.h>
  29. GRUB_MOD_LICENSE ("GPLv3+");
  30. static grub_err_t
  31. grub_cmd_videotest (grub_command_t cmd __attribute__ ((unused)),
  32. int argc, char **args)
  33. {
  34. grub_err_t err;
  35. grub_video_color_t color;
  36. unsigned int x;
  37. unsigned int y;
  38. unsigned int width;
  39. unsigned int height;
  40. int i;
  41. struct grub_video_render_target *text_layer;
  42. grub_video_color_t palette[16];
  43. const char *mode = NULL;
  44. #ifdef GRUB_MACHINE_PCBIOS
  45. if (grub_strcmp (cmd->name, "vbetest") == 0)
  46. grub_dl_load ("vbe");
  47. #endif
  48. mode = grub_env_get ("gfxmode");
  49. if (argc)
  50. mode = args[0];
  51. if (!mode)
  52. mode = "auto";
  53. err = grub_video_set_mode (mode, GRUB_VIDEO_MODE_TYPE_PURE_TEXT, 0);
  54. if (err)
  55. return err;
  56. grub_video_get_viewport (&x, &y, &width, &height);
  57. {
  58. const char *str;
  59. int texty;
  60. grub_font_t sansbig;
  61. grub_font_t sans;
  62. grub_font_t sanssmall;
  63. grub_font_t fixed;
  64. struct grub_font_glyph *glyph;
  65. if (grub_video_create_render_target (&text_layer, width, height,
  66. GRUB_VIDEO_MODE_TYPE_RGB
  67. | GRUB_VIDEO_MODE_TYPE_ALPHA)
  68. || !text_layer)
  69. goto fail;
  70. grub_video_set_active_render_target (text_layer);
  71. color = grub_video_map_rgb (0, 255, 255);
  72. sansbig = grub_font_get ("Unknown Regular 16");
  73. sans = grub_font_get ("Unknown Regular 16");
  74. sanssmall = grub_font_get ("Unknown Regular 16");
  75. fixed = grub_font_get ("Fixed 20");
  76. if (! sansbig || ! sans || ! sanssmall || ! fixed)
  77. return grub_error (GRUB_ERR_BAD_FONT, "no font loaded");
  78. glyph = grub_font_get_glyph (fixed, '*');
  79. grub_font_draw_glyph (glyph, color, 200 ,0);
  80. color = grub_video_map_rgb (255, 255, 255);
  81. texty = 32;
  82. grub_font_draw_string ("The quick brown fox jumped over the lazy dog.",
  83. sans, color, 16, texty);
  84. texty += grub_font_get_descent (sans) + grub_font_get_leading (sans);
  85. texty += grub_font_get_ascent (fixed);
  86. grub_font_draw_string ("The quick brown fox jumped over the lazy dog.",
  87. fixed, color, 16, texty);
  88. texty += grub_font_get_descent (fixed) + grub_font_get_leading (fixed);
  89. /* To convert Unicode characters into UTF-8 for this test, the following
  90. command is useful:
  91. echo -ne '\x00\x00\x26\x3A' | iconv -f UTF-32BE -t UTF-8 | od -t x1
  92. This converts the Unicode character U+263A to UTF-8. */
  93. /* Characters used:
  94. Code point Description UTF-8 encoding
  95. ----------- ------------------------------ --------------
  96. U+263A unfilled smiley face E2 98 BA
  97. U+00A1 inverted exclamation point C2 A1
  98. U+00A3 British pound currency symbol C2 A3
  99. U+03C4 Greek tau CF 84
  100. U+00E4 lowercase letter a with umlaut C3 A4
  101. U+2124 set 'Z' symbol (integers) E2 84 A4
  102. U+2286 subset symbol E2 8A 86
  103. U+211D set 'R' symbol (real numbers) E2 84 9D */
  104. str =
  105. "Unicode test: happy\xE2\x98\xBA \xC2\xA3 5.00"
  106. " \xC2\xA1\xCF\x84\xC3\xA4u! "
  107. " \xE2\x84\xA4\xE2\x8A\x86\xE2\x84\x9D";
  108. color = grub_video_map_rgb (128, 128, 255);
  109. /* All characters in the string exist in the 'Fixed 20' (10x20) font. */
  110. texty += grub_font_get_ascent(fixed);
  111. grub_font_draw_string (str, fixed, color, 16, texty);
  112. texty += grub_font_get_descent (fixed) + grub_font_get_leading (fixed);
  113. texty += grub_font_get_ascent(sansbig);
  114. grub_font_draw_string (str, sansbig, color, 16, texty);
  115. texty += grub_font_get_descent (sansbig) + grub_font_get_leading (sansbig);
  116. texty += grub_font_get_ascent(sans);
  117. grub_font_draw_string (str, sans, color, 16, texty);
  118. texty += grub_font_get_descent (sans) + grub_font_get_leading (sans);
  119. texty += grub_font_get_ascent(sanssmall);
  120. grub_font_draw_string (str, sanssmall, color, 16, texty);
  121. texty += (grub_font_get_descent (sanssmall)
  122. + grub_font_get_leading (sanssmall));
  123. glyph = grub_font_get_glyph (fixed, '*');
  124. for (i = 0; i < 16; i++)
  125. {
  126. color = grub_video_map_color (i);
  127. palette[i] = color;
  128. grub_font_draw_glyph (glyph, color, 16 + i * 16, 220);
  129. }
  130. }
  131. grub_video_set_active_render_target (GRUB_VIDEO_RENDER_TARGET_DISPLAY);
  132. for (i = 0; i < 5; i++)
  133. {
  134. if (i == 0 || i == 1)
  135. {
  136. color = grub_video_map_rgb (0, 0, 0);
  137. grub_video_fill_rect (color, 0, 0, width, height);
  138. color = grub_video_map_rgb (255, 0, 0);
  139. grub_video_fill_rect (color, 0, 0, 100, 100);
  140. color = grub_video_map_rgb (0, 255, 0);
  141. grub_video_fill_rect (color, 100, 0, 100, 100);
  142. color = grub_video_map_rgb (0, 0, 255);
  143. grub_video_fill_rect (color, 200, 0, 100, 100);
  144. color = grub_video_map_rgb (0, 255, 255);
  145. grub_video_fill_rect (color, 0, 100, 100, 100);
  146. color = grub_video_map_rgb (255, 0, 255);
  147. grub_video_fill_rect (color, 100, 100, 100, 100);
  148. color = grub_video_map_rgb (255, 255, 0);
  149. grub_video_fill_rect (color, 200, 100, 100, 100);
  150. grub_video_set_viewport (x + 150, y + 150,
  151. width - 150 * 2, height - 150 * 2);
  152. color = grub_video_map_rgb (77, 33, 77);
  153. grub_video_fill_rect (color, 0, 0, width, height);
  154. }
  155. color = grub_video_map_rgb (i, 33, 77);
  156. grub_video_fill_rect (color, 0, 0, width, height);
  157. grub_video_blit_render_target (text_layer, GRUB_VIDEO_BLIT_BLEND, 0, 0,
  158. 0, 0, width, height);
  159. grub_video_swap_buffers ();
  160. }
  161. grub_getkey ();
  162. grub_video_delete_render_target (text_layer);
  163. grub_video_restore ();
  164. for (i = 0; i < 16; i++)
  165. grub_printf("color %d: %08x\n", i, palette[i]);
  166. grub_errno = GRUB_ERR_NONE;
  167. return grub_errno;
  168. fail:
  169. grub_video_delete_render_target (text_layer);
  170. grub_video_restore ();
  171. return grub_errno;
  172. }
  173. static grub_command_t cmd;
  174. #ifdef GRUB_MACHINE_PCBIOS
  175. static grub_command_t cmd_vbe;
  176. #endif
  177. GRUB_MOD_INIT(videotest)
  178. {
  179. cmd = grub_register_command ("videotest", grub_cmd_videotest,
  180. /* TRANSLATORS: "x" has to be entered in,
  181. like an identifier, so please don't
  182. use better Unicode codepoints. */
  183. N_("[WxH]"),
  184. /* TRANSLATORS: Here, on the other hand, it's
  185. nicer to use unicode cross instead of x. */
  186. N_("Test video subsystem in mode WxH."));
  187. #ifdef GRUB_MACHINE_PCBIOS
  188. cmd_vbe = grub_register_command ("vbetest", grub_cmd_videotest,
  189. 0, N_("Test video subsystem."));
  190. #endif
  191. }
  192. GRUB_MOD_FINI(videotest)
  193. {
  194. grub_unregister_command (cmd);
  195. #ifdef GRUB_MACHINE_PCBIOS
  196. grub_unregister_command (cmd_vbe);
  197. #endif
  198. }