You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

109 lines
4.7 KiB

  1. /*
  2. * unicode libcaca Unicode rendering test program
  3. * Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This program is free software. It comes without any warranty, to
  9. * the extent permitted by applicable law. You can redistribute it
  10. * and/or modify it under the terms of the Do What The Fuck You Want
  11. * To Public License, Version 2, as published by Sam Hocevar. See
  12. * http://sam.zoy.org/wtfpl/COPYING for more details.
  13. */
  14. #include "config.h"
  15. #include "common.h"
  16. #if !defined(__KERNEL__)
  17. # if defined(HAVE_INTTYPES_H)
  18. # include <inttypes.h>
  19. # endif
  20. # include <stdio.h>
  21. #endif
  22. #include "cucul.h"
  23. #include "caca.h"
  24. int main(int argc, char *argv[])
  25. {
  26. cucul_canvas_t *cv;
  27. caca_display_t *dp;
  28. cv = cucul_create_canvas(0, 0);
  29. if(cv == NULL)
  30. {
  31. printf("Can't created canvas\n");
  32. return -1;
  33. }
  34. dp = caca_create_display(cv);
  35. if(dp == NULL)
  36. {
  37. printf("Can't create display\n");
  38. return -1;
  39. }
  40. cucul_set_color_ansi(cv, CUCUL_WHITE, CUCUL_BLUE);
  41. cucul_put_str(cv, 1, 1, "Basic Unicode support");
  42. cucul_set_color_ansi(cv, CUCUL_DEFAULT, CUCUL_TRANSPARENT);
  43. cucul_put_str(cv, 1, 2, "This is ASCII: | abc DEF 123 !@# |");
  44. cucul_put_str(cv, 1, 3, "This is Unicode: | äßç δεφ ☺♥♀ ╞╬╗ |");
  45. cucul_put_str(cv, 1, 4, "And this is, too: | ἀβϛ ΔЗҒ ᚴᛒᛯ ♩♔✈ |");
  46. cucul_put_str(cv, 1, 5, "If the three lines do not have the same length, there is a bug somewhere.");
  47. cucul_set_color_ansi(cv, CUCUL_WHITE, CUCUL_BLUE);
  48. cucul_put_str(cv, 1, 7, "Gradient glyphs");
  49. cucul_set_color_ansi(cv, CUCUL_DEFAULT, CUCUL_TRANSPARENT);
  50. cucul_put_str(cv, 31, 8, " 0%");
  51. cucul_put_str(cv, 31, 9, " 25%");
  52. cucul_put_str(cv, 31, 10, " 50%");
  53. cucul_put_str(cv, 31, 11, " 75%");
  54. cucul_put_str(cv, 31, 12, "100%");
  55. cucul_set_color_ansi(cv, CUCUL_LIGHTRED, CUCUL_LIGHTGREEN);
  56. cucul_put_str(cv, 1, 8, " ");
  57. cucul_put_str(cv, 1, 9, "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░");
  58. cucul_put_str(cv, 1, 10, "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒");
  59. cucul_put_str(cv, 1, 11, "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓");
  60. cucul_put_str(cv, 1, 12, "█████████████████████████████");
  61. cucul_set_color_ansi(cv, CUCUL_LIGHTGREEN, CUCUL_LIGHTRED);
  62. cucul_put_str(cv, 36, 8, "█████████████████████████████");
  63. cucul_put_str(cv, 36, 9, "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓");
  64. cucul_put_str(cv, 36, 10, "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒");
  65. cucul_put_str(cv, 36, 11, "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░");
  66. cucul_put_str(cv, 36, 12, " ");
  67. cucul_set_color_ansi(cv, CUCUL_WHITE, CUCUL_BLUE);
  68. cucul_put_str(cv, 1, 14, "Double width characters");
  69. cucul_set_color_ansi(cv, CUCUL_LIGHTRED, CUCUL_TRANSPARENT);
  70. cucul_put_str(cv, 1, 15, "| ドラゴン ボーレ |");
  71. cucul_set_color_ansi(cv, CUCUL_DEFAULT, CUCUL_TRANSPARENT);
  72. cucul_put_str(cv, 1, 16, "| ()()()() ()()() |");
  73. cucul_set_color_ansi(cv, CUCUL_YELLOW, CUCUL_TRANSPARENT);
  74. cucul_put_str(cv, 1, 17, "| ドラゴン");
  75. cucul_put_str(cv, 12, 17, "ボーレ |");
  76. cucul_set_color_ansi(cv, CUCUL_DEFAULT, CUCUL_TRANSPARENT);
  77. cucul_put_str(cv, 1, 18, "If the three lines do not have the same length, there is a bug somewhere.");
  78. cucul_put_str(cv, 1, 20, "CP437 glyphs: ☺ ☻ ♥ ♦ ♣ ♠ • ◘ ○ ◙ ♂ ♀ ♪ ♫ ☼ ► ◄ ↕ ‼ ¶ § ▬ ↨ ↑ ↓ → ← ∟ ↔ ▲ ▼");
  79. cucul_put_str(cv, 1, 21, "more CP437: α ß Γ π Σ σ µ τ Φ Θ Ω δ ∞ φ ε ∩ ≡ ± ≥ ≤ ⌠ ⌡ ÷ ≈ ° ∙ · √ ⁿ ² ■");
  80. cucul_put_str(cv, 1, 22, "drawing blocks: ███ ▓▓▓ ▒▒▒ ░░░ ▀ ▄ ▌ ▐ █ ▖ ▗ ▘ ▝ ▚ ▞ ▙ ▛ ▜ ▟ ─ │ ┌ ┐ └ ┘ ├ ┤");
  81. cucul_put_str(cv, 1, 23, "more drawing: ┬ ┴ ┼ ═ ║ ╒ ╓ ╔ ╕ ╖ ╗ ╘ ╙ ╚ ╛ ╜ ╝ ╞ ╟ ╠ ╡ ╢ ╣ ╤ ╥ ╦ ╧ ╨ ╩ ╪ ╫ ╬");
  82. cucul_put_str(cv, 1, 24, "misc Unicode: ● ☭ ☮ ☯ ♔ ♛ ♙ ♞ ⚒ ⚓ ⚠");
  83. caca_refresh_display(dp);
  84. caca_get_event(dp, CACA_EVENT_KEY_PRESS, NULL, -1);
  85. caca_free_display(dp);
  86. cucul_free_canvas(cv);
  87. return 0;
  88. }