Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
18 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. * libcaca Colour 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. uint32_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. *screen++ = _cucul_utf32_to_cp437(*chars++);
  105. *screen++ = _cucul_argb32_to_ansi8(*attr++);
  106. }
  107. }
  108. static void vga_handle_resize(caca_t *kk)
  109. {
  110. /* We know nothing about our window */
  111. kk->resize.w = kk->qq->width;
  112. kk->resize.h = kk->qq->height;
  113. }
  114. static int vga_get_event(caca_t *kk, struct caca_event *ev)
  115. {
  116. /* FIXME */
  117. ev->type = CACA_EVENT_NONE;
  118. return 0;
  119. }
  120. /*
  121. * Driver initialisation
  122. */
  123. int vga_install(caca_t *kk)
  124. {
  125. kk->drv.driver = CACA_DRIVER_VGA;
  126. kk->drv.init_graphics = vga_init_graphics;
  127. kk->drv.end_graphics = vga_end_graphics;
  128. kk->drv.set_window_title = vga_set_window_title;
  129. kk->drv.get_window_width = vga_get_window_width;
  130. kk->drv.get_window_height = vga_get_window_height;
  131. kk->drv.display = vga_display;
  132. kk->drv.handle_resize = vga_handle_resize;
  133. kk->drv.get_event = vga_get_event;
  134. kk->drv.set_mouse = NULL;
  135. return 0;
  136. }
  137. #endif /* USE_VGA */