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.

пре 16 година
пре 16 година
пре 16 година
пре 16 година
пре 16 година
пре 16 година
пре 16 година
пре 16 година
пре 16 година
пре 16 година
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #!/usr/bin/php5
  2. <?php
  3. /*
  4. * colors display all possible libcaca colour pairs
  5. * Copyright (c) 2008 Benjamin C. Wiley Sittler <bsittler@gmail.com>
  6. *
  7. * This file is a Php port of "examples/colors.c"
  8. * Copyright (c) 2003-2004 Sam Hocevar <sam@zoy.org>
  9. * All Rights Reserved
  10. *
  11. * $Id$
  12. *
  13. * This program is free software. It comes without any warranty, to
  14. * the extent permitted by applicable law. You can redistribute it
  15. * and/or modify it under the terms of the Do What The Fuck You Want
  16. * To Public License, Version 2, as published by Sam Hocevar. See
  17. * http://sam.zoy.org/wtfpl/COPYING for more details.
  18. */
  19. if (php_sapi_name() != "cli") {
  20. die("You have to run this program with php-cli!\n");
  21. }
  22. $cv = caca_create_canvas(80, 24);
  23. if(!$cv)
  24. {
  25. die("Failed to create canvas\n");
  26. }
  27. $dp = caca_create_display($cv);
  28. if(!$dp)
  29. {
  30. die("Failed to create display\n");
  31. }
  32. caca_set_color_ansi($cv, CACA_LIGHTGRAY, CACA_BLACK);
  33. caca_clear_canvas($cv);
  34. for($i = 0; $i < 16; $i++)
  35. {
  36. caca_set_color_ansi($cv, CACA_LIGHTGRAY, CACA_BLACK);
  37. caca_put_str($cv, 3, $i + ($i >= 8 ? 3 : 2), "ANSI " . $i);
  38. for($j = 0; $j < 16; $j++)
  39. {
  40. caca_set_color_ansi($cv, $i, $j);
  41. caca_put_str($cv, ($j >= 8 ? 13 : 12) + $j * 4, $i + ($i >= 8 ? 3 : 2),
  42. "Aaホ");
  43. }
  44. }
  45. caca_set_color_ansi($cv, CACA_LIGHTGRAY, CACA_BLACK);
  46. caca_put_str($cv, 3, 20, "This is bold This is blink This is italics This is underline");
  47. caca_set_attr($cv, CACA_BOLD);
  48. caca_put_str($cv, 3 + 8, 20, "bold");
  49. caca_set_attr($cv, CACA_BLINK);
  50. caca_put_str($cv, 3 + 24, 20, "blink");
  51. caca_set_attr($cv, CACA_ITALICS);
  52. caca_put_str($cv, 3 + 41, 20, "italics");
  53. caca_set_attr($cv, CACA_UNDERLINE);
  54. caca_put_str($cv, 3 + 60, 20, "underline");
  55. caca_refresh_display($dp);
  56. caca_get_event($dp, CACA_EVENT_KEY_PRESS, -1);
  57. ?>