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.
 
 
 
 
 

103 lines
2.6 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. #include <stdlib.h>
  24. #include "ee.h"
  25. #include "ee_internals.h"
  26. void ee_draw_triangle(int x1, int y1, int x2, int y2, int x3, int y3, char c)
  27. {
  28. ee_draw_line(x1, y1, x2, y2, c);
  29. ee_draw_line(x2, y2, x3, y3, c);
  30. ee_draw_line(x3, y3, x1, y1, c);
  31. }
  32. void ee_draw_thin_triangle(int x1, int y1, int x2, int y2, int x3, int y3)
  33. {
  34. ee_draw_thin_line(x1, y1, x2, y2);
  35. ee_draw_thin_line(x2, y2, x3, y3);
  36. ee_draw_thin_line(x3, y3, x1, y1);
  37. }
  38. void ee_fill_triangle(int x1, int y1, int x2, int y2, int x3, int y3, char c)
  39. {
  40. int x, y, xa, xb, xmax, ymax;
  41. /* Bubble-sort y1 <= y2 <= y3 */
  42. if(y1 > y2)
  43. {
  44. ee_fill_triangle(x2, y2, x1, y1, x3, y3, c);
  45. return;
  46. }
  47. if(y2 > y3)
  48. {
  49. ee_fill_triangle(x1, y1, x3, y3, x2, y2, c);
  50. return;
  51. }
  52. /* Promote precision */
  53. x1 *= 4;
  54. x2 *= 4;
  55. x3 *= 4;
  56. xmax = ee_get_width() - 1;
  57. ymax = ee_get_height() - 1;
  58. /* Rasterize our triangle */
  59. for(y = y1 < 0 ? 0 : y1; y <= y3 && y <= ymax; y++)
  60. {
  61. if(y <= y2)
  62. {
  63. xa = (y1 == y2) ? x2 : x1 + (x2 - x1) * (y - y1) / (y2 - y1);
  64. xb = (y1 == y3) ? x3 : x1 + (x3 - x1) * (y - y1) / (y3 - y1);
  65. }
  66. else
  67. {
  68. xa = (y3 == y2) ? x2 : x3 + (x2 - x3) * (y - y3) / (y2 - y3);
  69. xb = (y3 == y1) ? x1 : x3 + (x1 - x3) * (y - y3) / (y1 - y3);
  70. }
  71. if(xb < xa)
  72. {
  73. int tmp = xb;
  74. xb = xa; xa = tmp;
  75. }
  76. /* Rescale xa and xb, slightly cropping */
  77. xa = (xa + 2) / 4;
  78. xb = (xb - 2) / 4;
  79. if(xb < 0) continue;
  80. if(xa > xmax) continue;
  81. if(xa < 0) xa = 0;
  82. if(xb > xmax) xb = xmax;
  83. for(x = xa; x <= xb; x++)
  84. ee_putchar(x, y, c);
  85. }
  86. }