X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fgfxpoly%2Fconvert.c;h=bb019422e9e9fe9ad2401f4a8c7eb2c236bc266f;hp=c6e365d2697988333302a7e8ef564b96f7c11123;hb=9b4a07900f07d05f0f39c511c189489114817aba;hpb=2cdbdbb4012575119c1a92e9c4662df9f4e81737 diff --git a/lib/gfxpoly/convert.c b/lib/gfxpoly/convert.c index c6e365d..bb01942 100644 --- a/lib/gfxpoly/convert.c +++ b/lib/gfxpoly/convert.c @@ -12,12 +12,13 @@ static inline int32_t convert_coord(double x, double z) { - /* we clamp to 31 bit instead of 32 bit because we use - a (x1-x2) shortcut when comparing coordinates + /* we clamp to 26 bit because: + a) we use a (x1-x2) shortcut when comparing coordinates + b) we need to be able to multiply two coordinates and store them in a double w/o loss of precision */ x *= z; - if(x < -0x40000000) x = -0x40000000; - if(x > 0x3fffffff) x = 0x3fffffff; + if(x < -0x2000000) x = -0x2000000; + if(x > 0x1ffffff) x = 0x1ffffff; return ceil(x); } @@ -91,7 +92,7 @@ static void convert_file(const char*filename, polywriter_t*w, double gridsize) break; double x,y; char s[256]; - if(sscanf(line, "%lf %lf %s", &x, &y, &s) == 3) { + if(sscanf(line, "%lf %lf %s", &x, &y, (char*)&s) == 3) { if(s && !strcmp(s,"moveto")) { w->moveto(w, convert_coord(x,z), convert_coord(y,z)); count++; @@ -132,6 +133,7 @@ void finish_segment(compactpoly_t*data) return; point_t*p = malloc(sizeof(point_t)*data->num_points); gfxpolystroke_t*s = rfx_calloc(sizeof(gfxpolystroke_t)); + s->fs = &edgestyle_default; s->next = data->poly->strokes; data->poly->strokes = s; s->num_points = s->points_size = data->num_points; @@ -165,20 +167,29 @@ static void compactmoveto(polywriter_t*w, int32_t x, int32_t y) } data->last = p; } + +static inline int direction(point_t p1, point_t p2) +{ + int diff = p1.y - p2.y; + if(diff) return diff; + return p1.x - p2.x; +} + static void compactlineto(polywriter_t*w, int32_t x, int32_t y) { compactpoly_t*data = (compactpoly_t*)w->internal; point_t p; p.x = x; p.y = y; - if(p.x == data->last.x && p.y == data->last.y) + + int diff = direction(p, data->last); + if(!diff) return; + segment_dir_t dir = diff<0?DIR_UP:DIR_DOWN; - if(p.y < data->last.y && data->dir != DIR_UP || - p.y > data->last.y && data->dir != DIR_DOWN || - data->new) { + if(dir!=data->dir || data->new) { finish_segment(data); - data->dir = p.y > data->last.y ? DIR_DOWN : DIR_UP; + data->dir = dir; data->points[0] = data->last; data->num_points = 1; } @@ -264,6 +275,7 @@ typedef struct _polydraw_internal { double lx, ly; int32_t lastx, lasty; + int32_t x0, y0; double z; char last; polywriter_t writer; @@ -279,6 +291,8 @@ static void polydraw_moveTo(gfxdrawer_t*d, gfxcoord_t _x, gfxcoord_t _y) } i->lx = _x; i->ly = _y; + i->x0 = x; + i->y0 = y; i->lastx = x; i->lasty = y; i->last = 1; @@ -332,6 +346,21 @@ static void polydraw_splineTo(gfxdrawer_t*d, gfxcoord_t sx, gfxcoord_t sy, gfxco i->lasty = ny; i->last = 1; } +static void polydraw_close(gfxdrawer_t*d) +{ + polydraw_internal_t*i = (polydraw_internal_t*)d->internal; + assert(!(i->last && (i->x0 == INVALID_COORD || i->y0 == INVALID_COORD))); + if(!i->last) + return; + if(i->lastx != i->x0 || i->lasty != i->y0) { + i->writer.lineto(&i->writer, i->x0, i->y0); + i->lastx = i->x0; + i->lasty = i->y0; + } + i->last = 0; + i->x0 = INVALID_COORD; + i->y0 = INVALID_COORD; +} static void* polydraw_result(gfxdrawer_t*d) { polydraw_internal_t*i = (polydraw_internal_t*)d->internal; @@ -347,9 +376,12 @@ void gfxdrawer_target_poly(gfxdrawer_t*d, double gridsize) d->internal = i; i->lastx = INVALID_COORD; // convert_coord can never return this value i->lasty = INVALID_COORD; + i->x0 = INVALID_COORD; + i->y0 = INVALID_COORD; d->moveTo = polydraw_moveTo; d->lineTo = polydraw_lineTo; d->splineTo = polydraw_splineTo; + d->close = polydraw_close; d->result = polydraw_result; gfxpolywriter_init(&i->writer); i->writer.setgridsize(&i->writer, gridsize); @@ -385,7 +417,7 @@ gfxline_t*gfxline_from_gfxpoly(gfxpoly_t*poly) } #endif -gfxline_t*gfxline_from_gfxpoly(gfxpoly_t*poly) +static gfxline_t*mkgfxline(gfxpoly_t*poly, char preserve_direction) { gfxpolystroke_t*stroke; int count = 0; @@ -393,29 +425,58 @@ gfxline_t*gfxline_from_gfxpoly(gfxpoly_t*poly) return 0; dict_t*d = dict_new2(&point_type); dict_t*todo = dict_new2(&ptr_type); + gfxpolystroke_t*stroke_min= poly->strokes; + int32_t x_min=stroke_min->points[0].x; + int32_t y_min=stroke_min->points[0].y; for(stroke=poly->strokes;stroke;stroke=stroke->next) { dict_put(todo, stroke, stroke); assert(stroke->num_points>1); count += stroke->num_points; if(stroke->dir == DIR_UP) { dict_put(d, &stroke->points[stroke->num_points-1], stroke); + if(!preserve_direction) + dict_put(d, &stroke->points[0], stroke); } else { dict_put(d, &stroke->points[0], stroke); + if(!preserve_direction) + dict_put(d, &stroke->points[stroke->num_points-1], stroke); + } + if(stroke->points[0].y < y_min || + (stroke->points[0].y == y_min && stroke->points[0].x < x_min)) { + y_min = stroke->points[0].y; + stroke_min = stroke; } } gfxpolystroke_t*next_todo = poly->strokes; gfxline_t*l = malloc(sizeof(gfxline_t)*count); count = 0; - stroke = poly->strokes; + stroke = stroke_min; + point_t last = {INVALID_COORD, INVALID_COORD}; + char should_connect = 0; while(stroke) { + if(stroke && !preserve_direction) { + char del1 = dict_del2(d, &stroke->points[0], stroke); + char del2 = dict_del2(d, &stroke->points[stroke->num_points-1], stroke); + assert(del1 && del2); + } assert(dict_contains(todo, stroke)); int t; int pos = 0; int incr = 1; - if(stroke->dir == DIR_UP) { - pos = stroke->num_points-1; - incr = -1; + if(preserve_direction) { + if(stroke->dir == DIR_UP) { + pos = stroke->num_points-1; + incr = -1; + } + } else { + // try to find matching point on either end. + // Prefer downward. + if(last.x == stroke->points[stroke->num_points-1].x && + last.y == stroke->points[stroke->num_points-1].y) { + pos = stroke->num_points-1; + incr = -1; + } } if(last.x != stroke->points[pos].x || last.y != stroke->points[pos].y) { l[count].x = stroke->points[pos].x * poly->gridsize; @@ -423,6 +484,7 @@ gfxline_t*gfxline_from_gfxpoly(gfxpoly_t*poly) l[count].type = gfx_moveTo; l[count].next = &l[count+1]; count++; + assert(!should_connect); } pos += incr; for(t=1;tnum_points;t++) { @@ -440,7 +502,9 @@ gfxline_t*gfxline_from_gfxpoly(gfxpoly_t*poly) /* try to find a poly which starts at the point we drew last */ stroke = dict_lookup(d, &last); + should_connect = 1; while(!dict_contains(todo, stroke)) { + should_connect = 0; stroke = next_todo; if(!next_todo) { stroke = 0; @@ -455,6 +519,16 @@ gfxline_t*gfxline_from_gfxpoly(gfxpoly_t*poly) return l; } +gfxline_t*gfxline_from_gfxpoly(gfxpoly_t*poly) +{ + return mkgfxline(poly, 0); +} + +gfxline_t*gfxline_from_gfxpoly_with_direction(gfxpoly_t*poly) +{ + return mkgfxline(poly, 1); +} + static windcontext_t onepolygon = {1}; gfxline_t* gfxpoly_circular_to_evenodd(gfxline_t*line, double gridsize) {