more improvements to, and bugfixes in, the new polygon intersector
[swftools.git] / lib / gfxpoly / convert.c
1 #include <stdlib.h>
2 #include <math.h>
3 #include <assert.h>
4 #include "../gfxdevice.h"
5 #include "poly.h"
6
7 static edge_t*edge_new(int x1, int y1, int x2, int y2)
8 {
9     edge_t*s = malloc(sizeof(edge_t));
10     s->a.x = x1;
11     s->a.y = y1;
12     s->b.x = x2;
13     s->b.y = y2;
14     s->next = 0;
15     return s;
16 }
17
18 static inline void gfxpoly_add_edge(edge_t**list, double _x1, double _y1, double _x2, double _y2)
19 {
20     int x1 = ceil(_x1);
21     int y1 = ceil(_y1);
22     int x2 = ceil(_x2);
23     int y2 = ceil(_y2);
24     if(x1!=x2 || y1!=y2) {
25         edge_t*s = edge_new(x1, y1, x2, y2);
26         s->next = *list;
27         *list = s;
28     }
29 }
30
31 gfxpoly_t* gfxpoly_fillToPoly(gfxline_t*line, double gridsize)
32 {
33     edge_t*s = 0;
34
35     /* factor that determines into how many line fragments a spline is converted */
36     double subfraction = 2.4;//0.3
37
38     double z = 1.0 / gridsize;
39
40     double lastx=0, lasty=0;
41     assert(!line || line[0].type == gfx_moveTo);
42     while(line) {
43         double x = line->x*z;
44         double y = line->y*z;
45         if(line->type == gfx_moveTo) {
46         } else if(line->type == gfx_lineTo) {
47             gfxpoly_add_edge(&s, lastx, lasty, x, y);
48         } else if(line->type == gfx_splineTo) {
49             int parts = (int)(sqrt(fabs(line->x-2*line->sx+lastx) + 
50                                    fabs(line->y-2*line->sy+lasty))*subfraction);
51             if(!parts) parts = 1;
52             double stepsize = 1.0/parts;
53             int i;
54             for(i=0;i<parts;i++) {
55                 double t = (double)i*stepsize;
56                 double sx = (line->x*t*t + 2*line->sx*t*(1-t) + x*(1-t)*(1-t))*z;
57                 double sy = (line->y*t*t + 2*line->sy*t*(1-t) + y*(1-t)*(1-t))*z;
58                 gfxpoly_add_edge(&s, lastx, lasty, sx, sy);
59                 lastx = sx;
60                 lasty = sy;
61             }
62             gfxpoly_add_edge(&s, lastx, lasty, x, y);
63         }
64         lastx = x;
65         lasty = y;
66         line = line->next;
67     }
68
69     gfxline_free(line);
70
71     gfxpoly_t*p = gfxpoly_new(gridsize);
72     p->edges = s;
73     return p;
74 }
75