Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

94 rader
2.3 KiB

  1. /*
  2. * libee ASCII-Art library
  3. * Copyright (c) 2002, 2003 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #include "config.h"
  23. #ifdef USE_SLANG
  24. # include <slang.h>
  25. #elif USE_NCURSES
  26. # include <curses.h>
  27. #endif
  28. #include <stdlib.h>
  29. #include "ee.h"
  30. void ee_fill_triangle(int x1, int y1, int x2, int y2, int x3, int y3, char c)
  31. {
  32. int x, y, xa, xb, xmax, ymax;
  33. /* Bubble-sort y1 <= y2 <= y3 */
  34. if(y1 > y2)
  35. {
  36. ee_fill_triangle(x2, y2, x1, y1, x3, y3, c);
  37. return;
  38. }
  39. if(y2 > y3)
  40. {
  41. ee_fill_triangle(x1, y1, x3, y3, x2, y2, c);
  42. return;
  43. }
  44. /* Promote precision */
  45. x1 *= 4;
  46. x2 *= 4;
  47. x3 *= 4;
  48. xmax = ee_get_width() - 1;
  49. ymax = ee_get_height() - 1;
  50. /* Rasterize our triangle */
  51. for(y = y1 < 0 ? 0 : y1; y <= y3 && y <= ymax; y++)
  52. {
  53. if(y <= y2)
  54. {
  55. xa = (y1 == y2) ? x2 : x1 + (x2 - x1) * (y - y1) / (y2 - y1);
  56. xb = (y1 == y3) ? x3 : x1 + (x3 - x1) * (y - y1) / (y3 - y1);
  57. }
  58. else
  59. {
  60. xa = (y3 == y2) ? x2 : x3 + (x2 - x3) * (y - y3) / (y2 - y3);
  61. xb = (y3 == y1) ? x1 : x3 + (x1 - x3) * (y - y3) / (y1 - y3);
  62. }
  63. if(xb < xa)
  64. {
  65. int tmp = xb;
  66. xb = xa; xa = tmp;
  67. }
  68. /* Rescale xa and xb, slightly cropping */
  69. xa = (xa + 2) / 4;
  70. xb = (xb - 2) / 4;
  71. if(xb < 0) continue;
  72. if(xa > xmax) continue;
  73. if(xa < 0) xa = 0;
  74. if(xb > xmax) xb = xmax;
  75. for(x = xa; x <= xb; x++)
  76. ee_putchar(x, y, c);
  77. }
  78. }