選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

169 行
3.6 KiB

  1. /*
  2. * libcaca ASCII-Art library
  3. * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the Do What The Fuck You Want To
  8. * Public License, Version 2, as published by Sam Hocevar. See
  9. * http://sam.zoy.org/wtfpl/COPYING for more details.
  10. */
  11. /** \file driver_vga.c
  12. * \version \$Id$
  13. * \author Sam Hocevar <sam@zoy.org>
  14. * \brief VGA driver
  15. *
  16. * This file contains the libcaca VGA input and output driver
  17. */
  18. #include "config.h"
  19. #if defined(USE_VGA)
  20. #include "caca.h"
  21. #include "caca_internals.h"
  22. #include "cucul.h"
  23. #include "cucul_internals.h"
  24. /* Address of the VGA screen */
  25. #define VGA_SCREEN ((char *)(intptr_t)0x000b8000)
  26. static uint8_t const vga_colors[][4] =
  27. {
  28. /* Colour values range from 0x00 to 0x3f */
  29. { 0, 0x00, 0x00, 0x00 },
  30. { 1, 0x00, 0x00, 0x1f },
  31. { 2, 0x00, 0x1f, 0x00 },
  32. { 3, 0x00, 0x1f, 0x1f },
  33. { 4, 0x1f, 0x00, 0x00 },
  34. { 5, 0x1f, 0x00, 0x1f },
  35. { 0x14, 0x1f, 0x1f, 0x00 },
  36. { 7, 0x1f, 0x1f, 0x1f },
  37. { 0x38, 0x0f, 0x0f, 0x0f },
  38. { 0x39, 0x0f, 0x0f, 0x3f },
  39. { 0x3a, 0x0f, 0x3f, 0x0f },
  40. { 0x3b, 0x0f, 0x3f, 0x3f },
  41. { 0x3c, 0x3f, 0x0f, 0x0f },
  42. { 0x3d, 0x3f, 0x0f, 0x3f },
  43. { 0x3e, 0x3f, 0x3f, 0x0f },
  44. { 0x3f, 0x3f, 0x3f, 0x3f },
  45. };
  46. static int vga_init_graphics(caca_t *kk)
  47. {
  48. int i;
  49. uint8_t tmp;
  50. /* Blank screen */
  51. memset(VGA_SCREEN, 0, 80 * 25 * 2);
  52. /* Fill VGA palette */
  53. for(i = 0; i < 16; i++)
  54. {
  55. outb(vga_colors[i][0], 0x3c8);
  56. outb(vga_colors[i][1], 0x3c9);
  57. outb(vga_colors[i][2], 0x3c9);
  58. outb(vga_colors[i][3], 0x3c9);
  59. }
  60. /* Hide cursor */
  61. outb(0x0a, 0x3d4);
  62. tmp = inb(0x3d5);
  63. tmp |= 0x20;
  64. outb(0x0a, 0x3d4);
  65. outb(tmp, 0x3d5);
  66. /* We don't have much choice */
  67. _cucul_set_size(kk->qq, 80, 25);
  68. return 0;
  69. }
  70. static int vga_end_graphics(caca_t *kk)
  71. {
  72. uint8_t tmp;
  73. /* Show cursor again */
  74. outb(0x0a, 0x3d4);
  75. tmp = inb(0x3d5);
  76. tmp &= 0xdf;
  77. outb(0x0a, 0x3d4);
  78. outb(tmp, 0x3d5);
  79. return 0;
  80. }
  81. static int vga_set_window_title(caca_t *kk, char const *title)
  82. {
  83. /* Unsupported, of course. */
  84. return 0;
  85. }
  86. static unsigned int vga_get_window_width(caca_t *kk)
  87. {
  88. /* Fallback to a 320x200 screen */
  89. return 320;
  90. }
  91. static unsigned int vga_get_window_height(caca_t *kk)
  92. {
  93. /* Fallback to a 320x200 screen */
  94. return 200;
  95. }
  96. static void vga_display(caca_t *kk)
  97. {
  98. char *screen = (char *)(intptr_t)0x000b8000;
  99. uint8_t *attr = kk->qq->attr;
  100. uint32_t *chars = kk->qq->chars;
  101. int n;
  102. for(n = kk->qq->height * kk->qq->width; n--; )
  103. {
  104. uint32_t c = *chars++;
  105. if(c > 0x00000020 && c < 0x00000080)
  106. *screen++ = (char)c;
  107. else
  108. *screen++ = ' ';
  109. *screen++ = *attr++;
  110. }
  111. }
  112. static void vga_handle_resize(caca_t *kk)
  113. {
  114. /* We know nothing about our window */
  115. kk->resize.w = kk->qq->width;
  116. kk->resize.h = kk->qq->height;
  117. }
  118. static unsigned int vga_get_event(caca_t *kk)
  119. {
  120. /* FIXME */
  121. return CACA_EVENT_NONE;
  122. }
  123. /*
  124. * Driver initialisation
  125. */
  126. void vga_init_driver(caca_t *kk)
  127. {
  128. kk->drv.driver = CACA_DRIVER_VGA;
  129. kk->drv.init_graphics = vga_init_graphics;
  130. kk->drv.end_graphics = vga_end_graphics;
  131. kk->drv.set_window_title = vga_set_window_title;
  132. kk->drv.get_window_width = vga_get_window_width;
  133. kk->drv.get_window_height = vga_get_window_height;
  134. kk->drv.display = vga_display;
  135. kk->drv.handle_resize = vga_handle_resize;
  136. kk->drv.get_event = vga_get_event;
  137. }
  138. #endif /* USE_VGA */