Comments, formatting.
[ttfautohint.git] / src / talatin.c
blob1fc17dddbecdfead17ed15f76d292f82aa0ef522
1 /* talatin.c */
3 /* originally file `aflatin.c' (2011-Mar-28) from FreeType */
5 /* heavily modified 2011 by Werner Lemberg <wl@gnu.org> */
7 #include <string.h>
9 #include <ft2build.h>
10 #include FT_ADVANCES_H
12 #include "talatin.h"
13 #include "tasort.h"
16 #ifdef TA_CONFIG_OPTION_USE_WARPER
17 #include "afwarp.h"
18 #endif
21 /* find segments and links, compute all stem widths, and initialize */
22 /* standard width and height for the glyph with given charcode */
24 void
25 ta_latin_metrics_init_widths(TA_LatinMetrics metrics,
26 FT_Face face,
27 FT_ULong charcode)
29 /* scan the array of segments in each direction */
30 TA_GlyphHintsRec hints[1];
33 ta_glyph_hints_init(hints);
35 metrics->axis[TA_DIMENSION_HORZ].width_count = 0;
36 metrics->axis[TA_DIMENSION_VERT].width_count = 0;
39 FT_Error error;
40 FT_UInt glyph_index;
41 int dim;
42 TA_LatinMetricsRec dummy[1];
43 TA_Scaler scaler = &dummy->root.scaler;
46 glyph_index = FT_Get_Char_Index(face, charcode);
47 if (glyph_index == 0)
48 goto Exit;
50 error = FT_Load_Glyph(face, glyph_index, FT_LOAD_NO_SCALE);
51 if (error || face->glyph->outline.n_points <= 0)
52 goto Exit;
54 memset(dummy, 0, sizeof (TA_LatinMetricsRec));
56 dummy->units_per_em = metrics->units_per_em;
58 scaler->x_scale = 0x10000L;
59 scaler->y_scale = 0x10000L;
60 scaler->x_delta = 0;
61 scaler->y_delta = 0;
63 scaler->face = face;
64 scaler->render_mode = FT_RENDER_MODE_NORMAL;
65 scaler->flags = 0;
67 ta_glyph_hints_rescale(hints, (TA_ScriptMetrics)dummy);
69 error = ta_glyph_hints_reload(hints, &face->glyph->outline);
70 if (error)
71 goto Exit;
73 for (dim = 0; dim < TA_DIMENSION_MAX; dim++)
75 TA_LatinAxis axis = &metrics->axis[dim];
76 TA_AxisHints axhints = &hints->axis[dim];
78 TA_Segment seg, limit, link;
79 FT_UInt num_widths = 0;
82 error = ta_latin_hints_compute_segments(hints, (TA_Dimension)dim);
83 if (error)
84 goto Exit;
86 ta_latin_hints_link_segments(hints, (TA_Dimension)dim);
88 seg = axhints->segments;
89 limit = seg + axhints->num_segments;
91 for (; seg < limit; seg++)
93 link = seg->link;
95 /* we only consider stem segments there! */
96 if (link
97 && link->link == seg
98 && link > seg)
100 FT_Pos dist;
103 dist = seg->pos - link->pos;
104 if (dist < 0)
105 dist = -dist;
107 if (num_widths < TA_LATIN_MAX_WIDTHS)
108 axis->widths[num_widths++].org = dist;
112 ta_sort_widths(num_widths, axis->widths);
113 axis->width_count = num_widths;
116 Exit:
117 for (dim = 0; dim < TA_DIMENSION_MAX; dim++)
119 TA_LatinAxis axis = &metrics->axis[dim];
120 FT_Pos stdw;
123 stdw = (axis->width_count > 0) ? axis->widths[0].org
124 : TA_LATIN_CONSTANT(metrics, 50);
126 /* let's try 20% of the smallest width */
127 axis->edge_distance_threshold = stdw / 5;
128 axis->standard_width = stdw;
129 axis->extra_light = 0;
133 ta_glyph_hints_done(hints);
137 #define TA_LATIN_MAX_TEST_CHARACTERS 12
140 static const char ta_latin_blue_chars[TA_LATIN_MAX_BLUES]
141 [TA_LATIN_MAX_TEST_CHARACTERS + 1] =
143 "THEZOCQS",
144 "HEZLOCUS",
145 "fijkdbh",
146 "xzroesc",
147 "xzroesc",
148 "pqgjy"
152 /* find all blue zones; flat segments give the reference points, */
153 /* round segments the overshoot positions */
155 static void
156 ta_latin_metrics_init_blues(TA_LatinMetrics metrics,
157 FT_Face face)
159 FT_Pos flats[TA_LATIN_MAX_TEST_CHARACTERS];
160 FT_Pos rounds[TA_LATIN_MAX_TEST_CHARACTERS];
161 FT_Int num_flats;
162 FT_Int num_rounds;
164 FT_Int bb;
165 TA_LatinBlue blue;
166 FT_Error error;
167 TA_LatinAxis axis = &metrics->axis[TA_DIMENSION_VERT];
168 FT_GlyphSlot glyph = face->glyph;
171 /* we compute the blues simply by loading each character from the */
172 /* `ta_latin_blue_chars[blues]' string, then finding its top-most or */
173 /* bottom-most points (depending on `TA_IS_TOP_BLUE') */
175 TA_LOG(("blue zones computation\n"));
176 TA_LOG(("------------------------------------------------\n"));
178 for (bb = 0; bb < TA_LATIN_BLUE_MAX; bb++)
180 const char* p = ta_latin_blue_chars[bb];
181 const char* limit = p + TA_LATIN_MAX_TEST_CHARACTERS;
182 FT_Pos* blue_ref;
183 FT_Pos* blue_shoot;
186 TA_LOG(("blue %3d: ", bb));
188 num_flats = 0;
189 num_rounds = 0;
191 for (; p < limit && *p; p++)
193 FT_UInt glyph_index;
194 FT_Pos best_y; /* same as points.y */
195 FT_Int best_point, best_first, best_last;
196 FT_Vector* points;
197 FT_Bool round = 0;
200 TA_LOG(("'%c'", *p));
202 /* load the character in the face -- skip unknown or empty ones */
203 glyph_index = FT_Get_Char_Index(face, (FT_UInt)*p);
204 if (glyph_index == 0)
205 continue;
207 error = FT_Load_Glyph(face, glyph_index, FT_LOAD_NO_SCALE);
208 if (error || glyph->outline.n_points <= 0)
209 continue;
211 /* now compute min or max point indices and coordinates */
212 points = glyph->outline.points;
213 best_point = -1;
214 best_y = 0; /* make compiler happy */
215 best_first = 0; /* ditto */
216 best_last = 0; /* ditto */
219 FT_Int nn;
220 FT_Int first = 0;
221 FT_Int last = -1;
224 for (nn = 0; nn < glyph->outline.n_contours; first = last + 1, nn++)
226 FT_Int old_best_point = best_point;
227 FT_Int pp;
230 last = glyph->outline.contours[nn];
232 /* avoid single-point contours since they are never rasterized; */
233 /* in some fonts, they correspond to mark attachment points */
234 /* which are way outside of the glyph's real outline */
235 if (last <= first)
236 continue;
238 if (TA_LATIN_IS_TOP_BLUE(bb))
240 for (pp = first; pp <= last; pp++)
241 if (best_point < 0
242 || points[pp].y > best_y)
244 best_point = pp;
245 best_y = points[pp].y;
248 else
250 for (pp = first; pp <= last; pp++)
251 if (best_point < 0
252 || points[pp].y < best_y)
254 best_point = pp;
255 best_y = points[pp].y;
259 if (best_point != old_best_point)
261 best_first = first;
262 best_last = last;
265 TA_LOG(("%5ld", best_y));
268 /* now check whether the point belongs to a straight or round */
269 /* segment; we first need to find in which contour the extremum */
270 /* lies, then inspect its previous and next points */
271 if (best_point >= 0)
273 FT_Int prev, next;
274 FT_Pos dist;
277 /* now look for the previous and next points that are not on the */
278 /* same Y coordinate and threshold the `closeness'... */
279 prev = best_point;
280 next = prev;
284 if (prev > best_first)
285 prev--;
286 else
287 prev = best_last;
289 dist = points[prev].y - best_y;
290 if (dist < -5 || dist > 5)
291 break;
292 } while (prev != best_point);
296 if (next < best_last)
297 next++;
298 else
299 next = best_first;
301 dist = points[next].y - best_y;
302 if (dist < -5 || dist > 5)
303 break;
304 } while (next != best_point);
306 /* now set the `round' flag depending on the segment's kind */
307 round = FT_BOOL(
308 FT_CURVE_TAG(glyph->outline.tags[prev]) != FT_CURVE_TAG_ON
309 || FT_CURVE_TAG(glyph->outline.tags[next]) != FT_CURVE_TAG_ON);
311 TA_LOG(("%c ", round ? 'r' : 'f'));
314 if (round)
315 rounds[num_rounds++] = best_y;
316 else
317 flats[num_flats++] = best_y;
320 TA_LOG(("\n"));
322 if (num_flats == 0 && num_rounds == 0)
324 /* we couldn't find a single glyph to compute this blue zone, */
325 /* we will simply ignore it then */
326 TA_LOG(("empty\n"));
327 continue;
330 /* we have computed the contents of the `rounds' and `flats' tables, */
331 /* now determine the reference and overshoot position of the blue -- */
332 /* we simply take the median value after a simple sort */
333 ta_sort_pos(num_rounds, rounds);
334 ta_sort_pos(num_flats, flats);
336 blue = &axis->blues[axis->blue_count];
337 blue_ref = &blue->ref.org;
338 blue_shoot = &blue->shoot.org;
340 axis->blue_count++;
342 if (num_flats == 0)
344 *blue_ref =
345 *blue_shoot = rounds[num_rounds / 2];
347 else if (num_rounds == 0)
349 *blue_ref =
350 *blue_shoot = flats[num_flats / 2];
352 else
354 *blue_ref = flats[num_flats / 2];
355 *blue_shoot = rounds[num_rounds / 2];
358 /* there are sometimes problems if the overshoot position of top */
359 /* zones is under its reference position, or the opposite for bottom */
360 /* zones; we must thus check everything there and correct the errors */
361 if (*blue_shoot != *blue_ref)
363 FT_Pos ref = *blue_ref;
364 FT_Pos shoot = *blue_shoot;
365 FT_Bool over_ref = FT_BOOL(shoot > ref);
368 if (TA_LATIN_IS_TOP_BLUE(bb) ^ over_ref)
369 *blue_ref =
370 *blue_shoot = (shoot + ref) / 2;
373 blue->flags = 0;
374 if (TA_LATIN_IS_TOP_BLUE(bb))
375 blue->flags |= TA_LATIN_BLUE_TOP;
377 /* the following flag is used later to adjust the y and x scales */
378 /* in order to optimize the pixel grid alignment */
379 /* of the top of small letters */
380 if (bb == TA_LATIN_BLUE_SMALL_TOP)
381 blue->flags |= TA_LATIN_BLUE_ADJUSTMENT;
383 TA_LOG(("-- ref = %ld, shoot = %ld\n", *blue_ref, *blue_shoot));
386 TA_LOG(("\n"));
388 return;
392 /* check whether all ASCII digits have the same advance width */
394 void
395 ta_latin_metrics_check_digits(TA_LatinMetrics metrics,
396 FT_Face face)
398 FT_UInt i;
399 FT_Bool started = 0, same_width = 1;
400 FT_Fixed advance, old_advance = 0;
403 /* digit `0' is 0x30 in all supported charmaps */
404 for (i = 0x30; i <= 0x39; i++)
406 FT_UInt glyph_index;
409 glyph_index = FT_Get_Char_Index(face, i);
410 if (glyph_index == 0)
411 continue;
413 if (FT_Get_Advance(face, glyph_index,
414 FT_LOAD_NO_SCALE
415 | FT_LOAD_NO_HINTING
416 | FT_LOAD_IGNORE_TRANSFORM,
417 &advance))
418 continue;
420 if (started)
422 if (advance != old_advance)
424 same_width = 0;
425 break;
428 else
430 old_advance = advance;
431 started = 1;
435 metrics->root.digits_have_same_width = same_width;
439 /* initialize global metrics */
441 FT_Error
442 ta_latin_metrics_init(TA_LatinMetrics metrics,
443 FT_Face face)
445 FT_Error error = FT_Err_Ok;
446 FT_CharMap oldmap = face->charmap;
447 FT_UInt ee;
449 static const FT_Encoding latin_encodings[] =
451 FT_ENCODING_UNICODE,
452 FT_ENCODING_APPLE_ROMAN,
453 FT_ENCODING_ADOBE_STANDARD,
454 FT_ENCODING_ADOBE_LATIN_1,
456 FT_ENCODING_NONE /* end of list */
460 metrics->units_per_em = face->units_per_EM;
462 /* do we have a latin charmap in there? */
463 for (ee = 0; latin_encodings[ee] != FT_ENCODING_NONE; ee++)
465 error = FT_Select_Charmap(face, latin_encodings[ee]);
466 if (!error)
467 break;
470 if (!error)
472 /* for now, compute the standard width and height from the `o' */
473 ta_latin_metrics_init_widths(metrics, face, 'o');
474 ta_latin_metrics_init_blues(metrics, face);
475 ta_latin_metrics_check_digits(metrics, face);
478 FT_Set_Charmap(face, oldmap);
479 return FT_Err_Ok;
483 /* adjust scaling value, then scale and shift widths */
484 /* and blue zones (if applicable) for given dimension */
486 static void
487 ta_latin_metrics_scale_dim(TA_LatinMetrics metrics,
488 TA_Scaler scaler,
489 TA_Dimension dim)
491 FT_Fixed scale;
492 FT_Pos delta;
493 TA_LatinAxis axis;
494 FT_UInt nn;
497 if (dim == TA_DIMENSION_HORZ)
499 scale = scaler->x_scale;
500 delta = scaler->x_delta;
502 else
504 scale = scaler->y_scale;
505 delta = scaler->y_delta;
508 axis = &metrics->axis[dim];
510 if (axis->org_scale == scale && axis->org_delta == delta)
511 return;
513 axis->org_scale = scale;
514 axis->org_delta = delta;
516 /* correct X and Y scale to optimize the alignment of the top of */
517 /* small letters to the pixel grid */
519 TA_LatinAxis Axis = &metrics->axis[TA_DIMENSION_VERT];
520 TA_LatinBlue blue = NULL;
523 for (nn = 0; nn < Axis->blue_count; nn++)
525 if (Axis->blues[nn].flags & TA_LATIN_BLUE_ADJUSTMENT)
527 blue = &Axis->blues[nn];
528 break;
532 if (blue)
534 FT_Pos scaled = FT_MulFix(blue->shoot.org, scaler->y_scale);
535 FT_Pos fitted = (scaled + 40) & ~63;
538 if (scaled != fitted)
540 if (dim == TA_DIMENSION_VERT)
541 scale = FT_MulDiv(scale, fitted, scaled);
546 axis->scale = scale;
547 axis->delta = delta;
549 if (dim == TA_DIMENSION_HORZ)
551 metrics->root.scaler.x_scale = scale;
552 metrics->root.scaler.x_delta = delta;
554 else
556 metrics->root.scaler.y_scale = scale;
557 metrics->root.scaler.y_delta = delta;
560 /* scale the widths */
561 for (nn = 0; nn < axis->width_count; nn++)
563 TA_Width width = axis->widths + nn;
566 width->cur = FT_MulFix(width->org, scale);
567 width->fit = width->cur;
570 /* an extra-light axis corresponds to a standard width that is */
571 /* smaller than 5/8 pixels */
572 axis->extra_light =
573 (FT_Bool)(FT_MulFix(axis->standard_width, scale) < 32 + 8);
575 if (dim == TA_DIMENSION_VERT)
577 /* scale the blue zones */
578 for (nn = 0; nn < axis->blue_count; nn++)
580 TA_LatinBlue blue = &axis->blues[nn];
581 FT_Pos dist;
584 blue->ref.cur = FT_MulFix(blue->ref.org, scale) + delta;
585 blue->ref.fit = blue->ref.cur;
586 blue->shoot.cur = FT_MulFix(blue->shoot.org, scale) + delta;
587 blue->shoot.fit = blue->shoot.cur;
588 blue->flags &= ~TA_LATIN_BLUE_ACTIVE;
590 /* a blue zone is only active if it is less than 3/4 pixels tall */
591 dist = FT_MulFix(blue->ref.org - blue->shoot.org, scale);
592 if (dist <= 48 && dist >= -48)
594 #if 0
595 FT_Pos delta1;
596 #endif
597 FT_Pos delta2;
600 /* use discrete values for blue zone widths */
602 #if 0
603 /* generic, original code */
604 delta1 = blue->shoot.org - blue->ref.org;
605 delta2 = delta1;
606 if (delta1 < 0)
607 delta2 = -delta2;
609 delta2 = FT_MulFix(delta2, scale);
611 if (delta2 < 32)
612 delta2 = 0;
613 else if (delta2 < 64)
614 delta2 = 32 + (((delta2 - 32) + 16) & ~31);
615 else
616 delta2 = TA_PIX_ROUND(delta2);
618 if (delta1 < 0)
619 delta2 = -delta2;
620 #else
621 /* simplified version due to abs(dist) <= 48 */
622 delta2 = dist;
623 if (dist < 0)
624 delta2 = -delta2;
626 if (delta2 < 32)
627 delta2 = 0;
628 else if (delta < 48)
629 delta2 = 32;
630 else
631 delta2 = 64;
633 if (dist < 0)
634 delta2 = -delta2;
635 #endif
637 blue->ref.fit = TA_PIX_ROUND(blue->ref.cur);
638 blue->shoot.fit = blue->ref.fit + delta2;
640 blue->flags |= TA_LATIN_BLUE_ACTIVE;
647 /* scale global values in both directions */
649 void
650 ta_latin_metrics_scale(TA_LatinMetrics metrics,
651 TA_Scaler scaler)
653 metrics->root.scaler.render_mode = scaler->render_mode;
654 metrics->root.scaler.face = scaler->face;
656 ta_latin_metrics_scale_dim(metrics, scaler, TA_DIMENSION_HORZ);
657 ta_latin_metrics_scale_dim(metrics, scaler, TA_DIMENSION_VERT);
661 /* walk over all contours and compute its segments */
663 FT_Error
664 ta_latin_hints_compute_segments(TA_GlyphHints hints,
665 TA_Dimension dim)
667 TA_AxisHints axis = &hints->axis[dim];
668 FT_Error error = FT_Err_Ok;
670 TA_Segment segment = NULL;
671 TA_SegmentRec seg0;
673 TA_Point* contour = hints->contours;
674 TA_Point* contour_limit = contour + hints->num_contours;
675 TA_Direction major_dir, segment_dir;
678 memset(&seg0, 0, sizeof (TA_SegmentRec));
679 seg0.score = 32000;
680 seg0.flags = TA_EDGE_NORMAL;
682 major_dir = (TA_Direction)TA_ABS(axis->major_dir);
683 segment_dir = major_dir;
685 axis->num_segments = 0;
687 /* set up (u,v) in each point */
688 if (dim == TA_DIMENSION_HORZ)
690 TA_Point point = hints->points;
691 TA_Point limit = point + hints->num_points;
694 for (; point < limit; point++)
696 point->u = point->fx;
697 point->v = point->fy;
700 else
702 TA_Point point = hints->points;
703 TA_Point limit = point + hints->num_points;
706 for (; point < limit; point++)
708 point->u = point->fy;
709 point->v = point->fx;
713 /* do each contour separately */
714 for (; contour < contour_limit; contour++)
716 TA_Point point = contour[0];
717 TA_Point last = point->prev;
719 int on_edge = 0;
721 FT_Pos min_pos = 32000; /* minimum segment pos != min_coord */
722 FT_Pos max_pos = -32000; /* maximum segment pos != max_coord */
723 FT_Bool passed;
726 if (point == last) /* skip singletons -- just in case */
727 continue;
729 if (TA_ABS(last->out_dir) == major_dir
730 && TA_ABS(point->out_dir) == major_dir)
732 /* we are already on an edge, try to locate its start */
733 last = point;
735 for (;;)
737 point = point->prev;
738 if (TA_ABS(point->out_dir) != major_dir)
740 point = point->next;
741 break;
743 if (point == last)
744 break;
748 last = point;
749 passed = 0;
751 for (;;)
753 FT_Pos u, v;
756 if (on_edge)
758 u = point->u;
759 if (u < min_pos)
760 min_pos = u;
761 if (u > max_pos)
762 max_pos = u;
764 if (point->out_dir != segment_dir
765 || point == last)
767 /* we are just leaving an edge; record a new segment! */
768 segment->last = point;
769 segment->pos = (FT_Short)((min_pos + max_pos) >> 1);
771 /* a segment is round if either its first or last point */
772 /* is a control point */
773 if ((segment->first->flags | point->flags) & TA_FLAG_CONTROL)
774 segment->flags |= TA_EDGE_ROUND;
776 /* compute segment size */
777 min_pos = max_pos = point->v;
779 v = segment->first->v;
780 if (v < min_pos)
781 min_pos = v;
782 if (v > max_pos)
783 max_pos = v;
785 segment->min_coord = (FT_Short)min_pos;
786 segment->max_coord = (FT_Short)max_pos;
787 segment->height = (FT_Short)(segment->max_coord -
788 segment->min_coord);
790 on_edge = 0;
791 segment = NULL;
792 /* fall through */
796 /* now exit if we are at the start/end point */
797 if (point == last)
799 if (passed)
800 break;
801 passed = 1;
804 if (!on_edge
805 && TA_ABS(point->out_dir) == major_dir)
807 /* this is the start of a new segment! */
808 segment_dir = (TA_Direction)point->out_dir;
810 /* clear all segment fields */
811 error = ta_axis_hints_new_segment(axis, &segment);
812 if (error)
813 goto Exit;
815 segment[0] = seg0;
816 segment->dir = (FT_Char)segment_dir;
817 min_pos = max_pos = point->u;
818 segment->first = point;
819 segment->last = point;
820 segment->contour = contour;
821 on_edge = 1;
824 point = point->next;
826 } /* contours */
829 /* now slightly increase the height of segments if this makes sense -- */
830 /* this is used to better detect and ignore serifs */
832 TA_Segment segments = axis->segments;
833 TA_Segment segments_end = segments + axis->num_segments;
836 for (segment = segments; segment < segments_end; segment++)
838 TA_Point first = segment->first;
839 TA_Point last = segment->last;
841 FT_Pos first_v = first->v;
842 FT_Pos last_v = last->v;
845 if (first == last)
846 continue;
848 if (first_v < last_v)
850 TA_Point p;
853 p = first->prev;
854 if (p->v < first_v)
855 segment->height = (FT_Short)(segment->height +
856 ((first_v - p->v) >> 1));
858 p = last->next;
859 if (p->v > last_v)
860 segment->height = (FT_Short)(segment->height +
861 ((p->v - last_v) >> 1));
863 else
865 TA_Point p;
868 p = first->prev;
869 if (p->v > first_v)
870 segment->height = (FT_Short)(segment->height +
871 ((p->v - first_v) >> 1));
873 p = last->next;
874 if (p->v < last_v)
875 segment->height = (FT_Short)(segment->height +
876 ((last_v - p->v) >> 1));
881 Exit:
882 return error;
886 /* link segments to form stems and serifs */
888 void
889 ta_latin_hints_link_segments(TA_GlyphHints hints,
890 TA_Dimension dim)
892 TA_AxisHints axis = &hints->axis[dim];
894 TA_Segment segments = axis->segments;
895 TA_Segment segment_limit = segments + axis->num_segments;
897 FT_Pos len_threshold, len_score;
898 TA_Segment seg1, seg2;
901 len_threshold = TA_LATIN_CONSTANT(hints->metrics, 8);
902 if (len_threshold == 0)
903 len_threshold = 1;
905 len_score = TA_LATIN_CONSTANT(hints->metrics, 6000);
907 /* now compare each segment to the others */
908 for (seg1 = segments; seg1 < segment_limit; seg1++)
910 /* the fake segments are introduced to hint the metrics -- */
911 /* we must never link them to anything */
912 if (seg1->dir != axis->major_dir
913 || seg1->first == seg1->last)
914 continue;
916 /* search for stems having opposite directions, */
917 /* with seg1 to the `left' of seg2 */
918 for (seg2 = segments; seg2 < segment_limit; seg2++)
920 FT_Pos pos1 = seg1->pos;
921 FT_Pos pos2 = seg2->pos;
924 if (seg1->dir + seg2->dir == 0
925 && pos2 > pos1)
927 /* compute distance between the two segments */
928 FT_Pos dist = pos2 - pos1;
929 FT_Pos min = seg1->min_coord;
930 FT_Pos max = seg1->max_coord;
931 FT_Pos len, score;
934 if (min < seg2->min_coord)
935 min = seg2->min_coord;
936 if (max > seg2->max_coord)
937 max = seg2->max_coord;
939 /* compute maximum coordinate difference of the two segments */
940 len = max - min;
941 if (len >= len_threshold)
943 /* small coordinate differences cause a higher score, and */
944 /* segments with a greater distance cause a higher score also */
945 score = dist + len_score / len;
947 /* and we search for the smallest score */
948 /* of the sum of the two values */
949 if (score < seg1->score)
951 seg1->score = score;
952 seg1->link = seg2;
955 if (score < seg2->score)
957 seg2->score = score;
958 seg2->link = seg1;
965 /* now compute the `serif' segments, cf. explanations in `tahints.h' */
966 for (seg1 = segments; seg1 < segment_limit; seg1++)
968 seg2 = seg1->link;
970 if (seg2)
972 if (seg2->link != seg1)
974 seg1->link = 0;
975 seg1->serif = seg2->link;
982 /* link segments to edges, using feature analysis for selection */
984 FT_Error
985 ta_latin_hints_compute_edges(TA_GlyphHints hints,
986 TA_Dimension dim)
988 TA_AxisHints axis = &hints->axis[dim];
989 FT_Error error = FT_Err_Ok;
990 TA_LatinAxis laxis = &((TA_LatinMetrics)hints->metrics)->axis[dim];
992 TA_Segment segments = axis->segments;
993 TA_Segment segment_limit = segments + axis->num_segments;
994 TA_Segment seg;
996 TA_Direction up_dir;
997 FT_Fixed scale;
998 FT_Pos edge_distance_threshold;
999 FT_Pos segment_length_threshold;
1002 axis->num_edges = 0;
1004 scale = (dim == TA_DIMENSION_HORZ) ? hints->x_scale
1005 : hints->y_scale;
1007 up_dir = (dim == TA_DIMENSION_HORZ) ? TA_DIR_UP
1008 : TA_DIR_RIGHT;
1010 /* we ignore all segments that are less than 1 pixel in length */
1011 /* to avoid many problems with serif fonts */
1012 /* (the corresponding threshold is computed in font units) */
1013 if (dim == TA_DIMENSION_HORZ)
1014 segment_length_threshold = FT_DivFix(64, hints->y_scale);
1015 else
1016 segment_length_threshold = 0;
1018 /********************************************************************/
1019 /* */
1020 /* We begin by generating a sorted table of edges for the current */
1021 /* direction. To do so, we simply scan each segment and try to find */
1022 /* an edge in our table that corresponds to its position. */
1023 /* */
1024 /* If no edge is found, we create and insert a new edge in the */
1025 /* sorted table. Otherwise, we simply add the segment to the edge's */
1026 /* list which gets processed in the second step to compute the */
1027 /* edge's properties. */
1028 /* */
1029 /* Note that the table of edges is sorted along the segment/edge */
1030 /* position. */
1031 /* */
1032 /********************************************************************/
1034 /* assure that edge distance threshold is at most 0.25px */
1035 edge_distance_threshold = FT_MulFix(laxis->edge_distance_threshold,
1036 scale);
1037 if (edge_distance_threshold > 64 / 4)
1038 edge_distance_threshold = 64 / 4;
1040 edge_distance_threshold = FT_DivFix(edge_distance_threshold,
1041 scale);
1043 for (seg = segments; seg < segment_limit; seg++)
1045 TA_Edge found = NULL;
1046 FT_Int ee;
1049 if (seg->height < segment_length_threshold)
1050 continue;
1052 /* a special case for serif edges: */
1053 /* if they are smaller than 1.5 pixels we ignore them */
1054 if (seg->serif
1055 && 2 * seg->height < 3 * segment_length_threshold)
1056 continue;
1058 /* look for an edge corresponding to the segment */
1059 for (ee = 0; ee < axis->num_edges; ee++)
1061 TA_Edge edge = axis->edges + ee;
1062 FT_Pos dist;
1065 dist = seg->pos - edge->fpos;
1066 if (dist < 0)
1067 dist = -dist;
1069 if (dist < edge_distance_threshold && edge->dir == seg->dir)
1071 found = edge;
1072 break;
1076 if (!found)
1078 TA_Edge edge;
1081 /* insert a new edge in the list and sort according to the position */
1082 error = ta_axis_hints_new_edge(axis, seg->pos,
1083 (TA_Direction)seg->dir,
1084 &edge);
1085 if (error)
1086 goto Exit;
1088 /* add the segment to the new edge's list */
1089 memset(edge, 0, sizeof (TA_EdgeRec));
1090 edge->first = seg;
1091 edge->last = seg;
1092 edge->dir = seg->dir;
1093 edge->fpos = seg->pos;
1094 edge->opos = FT_MulFix(seg->pos, scale);
1095 edge->pos = edge->opos;
1096 seg->edge_next = seg;
1098 else
1100 /* if an edge was found, simply add the segment to the edge's list */
1101 seg->edge_next = found->first;
1102 found->last->edge_next = seg;
1103 found->last = seg;
1107 /*****************************************************************/
1108 /* */
1109 /* Good, we now compute each edge's properties according to */
1110 /* the segments found on its position. Basically, these are */
1111 /* */
1112 /* - the edge's main direction */
1113 /* - stem edge, serif edge or both (which defaults to stem then) */
1114 /* - rounded edge, straight or both (which defaults to straight) */
1115 /* - link for edge */
1116 /* */
1117 /*****************************************************************/
1119 /* first of all, set the `edge' field in each segment -- this is */
1120 /* required in order to compute edge links */
1122 /* note that removing this loop and setting the `edge' field of each */
1123 /* segment directly in the code above slows down execution speed for */
1124 /* some reasons on platforms like the Sun */
1126 TA_Edge edges = axis->edges;
1127 TA_Edge edge_limit = edges + axis->num_edges;
1128 TA_Edge edge;
1131 for (edge = edges; edge < edge_limit; edge++)
1133 seg = edge->first;
1134 if (seg)
1137 seg->edge = edge;
1138 seg = seg->edge_next;
1139 } while (seg != edge->first);
1142 /* now compute each edge properties */
1143 for (edge = edges; edge < edge_limit; edge++)
1145 FT_Int is_round = 0; /* does it contain round segments? */
1146 FT_Int is_straight = 0; /* does it contain straight segments? */
1147 #if 0
1148 FT_Pos ups = 0; /* number of upwards segments */
1149 FT_Pos downs = 0; /* number of downwards segments */
1150 #endif
1153 seg = edge->first;
1157 FT_Bool is_serif;
1160 /* check for roundness of segment */
1161 if (seg->flags & TA_EDGE_ROUND)
1162 is_round++;
1163 else
1164 is_straight++;
1166 #if 0
1167 /* check for segment direction */
1168 if (seg->dir == up_dir)
1169 ups += seg->max_coord - seg->min_coord;
1170 else
1171 downs += seg->max_coord - seg->min_coord;
1172 #endif
1174 /* check for links -- */
1175 /* if seg->serif is set, then seg->link must be ignored */
1176 is_serif = (FT_Bool)(seg->serif
1177 && seg->serif->edge
1178 && seg->serif->edge != edge);
1180 if ((seg->link && seg->link->edge != NULL)
1181 || is_serif)
1183 TA_Edge edge2;
1184 TA_Segment seg2;
1187 edge2 = edge->link;
1188 seg2 = seg->link;
1190 if (is_serif)
1192 seg2 = seg->serif;
1193 edge2 = edge->serif;
1196 if (edge2)
1198 FT_Pos edge_delta;
1199 FT_Pos seg_delta;
1202 edge_delta = edge->fpos - edge2->fpos;
1203 if (edge_delta < 0)
1204 edge_delta = -edge_delta;
1206 seg_delta = seg->pos - seg2->pos;
1207 if (seg_delta < 0)
1208 seg_delta = -seg_delta;
1210 if (seg_delta < edge_delta)
1211 edge2 = seg2->edge;
1213 else
1214 edge2 = seg2->edge;
1216 if (is_serif)
1218 edge->serif = edge2;
1219 edge2->flags |= TA_EDGE_SERIF;
1221 else
1222 edge->link = edge2;
1225 seg = seg->edge_next;
1226 } while (seg != edge->first);
1228 /* set the round/straight flags */
1229 edge->flags = TA_EDGE_NORMAL;
1231 if (is_round > 0
1232 && is_round >= is_straight)
1233 edge->flags |= TA_EDGE_ROUND;
1235 #if 0
1236 /* set the edge's main direction */
1237 edge->dir = TA_DIR_NONE;
1239 if (ups > downs)
1240 edge->dir = (FT_Char)up_dir;
1242 else if (ups < downs)
1243 edge->dir = (FT_Char)-up_dir;
1245 else if (ups == downs)
1246 edge->dir = 0; /* both up and down! */
1247 #endif
1249 /* get rid of serifs if link is set */
1250 /* XXX: this gets rid of many unpleasant artefacts! */
1251 /* example: the `c' in cour.pfa at size 13 */
1253 if (edge->serif && edge->link)
1254 edge->serif = 0;
1258 Exit:
1259 return error;
1263 /* detect segments and edges for given dimension */
1265 FT_Error
1266 ta_latin_hints_detect_features(TA_GlyphHints hints,
1267 TA_Dimension dim)
1269 FT_Error error;
1272 error = ta_latin_hints_compute_segments(hints, dim);
1273 if (!error)
1275 ta_latin_hints_link_segments(hints, dim);
1277 error = ta_latin_hints_compute_edges(hints, dim);
1280 return error;
1284 /* compute all edges which lie within blue zones */
1286 void
1287 ta_latin_hints_compute_blue_edges(TA_GlyphHints hints,
1288 TA_LatinMetrics metrics)
1290 TA_AxisHints axis = &hints->axis[TA_DIMENSION_VERT];
1292 TA_Edge edge = axis->edges;
1293 TA_Edge edge_limit = edge + axis->num_edges;
1295 TA_LatinAxis latin = &metrics->axis[TA_DIMENSION_VERT];
1296 FT_Fixed scale = latin->scale;
1299 /* compute which blue zones are active, */
1300 /* i.e. have their scaled size < 3/4 pixels */
1302 /* for each horizontal edge search the blue zone which is closest */
1303 for (; edge < edge_limit; edge++)
1305 FT_Int bb;
1306 TA_Width best_blue = NULL;
1307 FT_Pos best_dist; /* initial threshold */
1310 /* compute the initial threshold as a fraction of the EM size */
1311 /* (the value 40 is heuristic) */
1312 best_dist = FT_MulFix(metrics->units_per_em / 40, scale);
1314 /* assure a minimum distance of 0.5px */
1315 if (best_dist > 64 / 2)
1316 best_dist = 64 / 2;
1318 for (bb = 0; bb < TA_LATIN_BLUE_MAX; bb++)
1320 TA_LatinBlue blue = latin->blues + bb;
1321 FT_Bool is_top_blue, is_major_dir;
1324 /* skip inactive blue zones (i.e., those that are too large) */
1325 if (!(blue->flags & TA_LATIN_BLUE_ACTIVE))
1326 continue;
1328 /* if it is a top zone, check for right edges -- */
1329 /* if it is a bottom zone, check for left edges */
1330 is_top_blue = (FT_Byte)((blue->flags & TA_LATIN_BLUE_TOP) != 0);
1331 is_major_dir = FT_BOOL(edge->dir == axis->major_dir);
1333 /* if it is a top zone, the edge must be against the major */
1334 /* direction; if it is a bottom zone, it must be in the major */
1335 /* direction */
1336 if (is_top_blue ^ is_major_dir)
1338 FT_Pos dist;
1341 /* first of all, compare it to the reference position */
1342 dist = edge->fpos - blue->ref.org;
1343 if (dist < 0)
1344 dist = -dist;
1346 dist = FT_MulFix(dist, scale);
1347 if (dist < best_dist)
1349 best_dist = dist;
1350 best_blue = &blue->ref;
1353 /* now compare it to the overshoot position and check whether */
1354 /* the edge is rounded, and whether the edge is over the */
1355 /* reference position of a top zone, or under the reference */
1356 /* position of a bottom zone */
1357 if (edge->flags & TA_EDGE_ROUND
1358 && dist != 0)
1360 FT_Bool is_under_ref = FT_BOOL(edge->fpos < blue->ref.org);
1363 if (is_top_blue ^ is_under_ref)
1365 dist = edge->fpos - blue->shoot.org;
1366 if (dist < 0)
1367 dist = -dist;
1369 dist = FT_MulFix(dist, scale);
1370 if (dist < best_dist)
1372 best_dist = dist;
1373 best_blue = &blue->shoot;
1380 if (best_blue)
1381 edge->blue_edge = best_blue;
1386 /* initalize hinting engine */
1388 static FT_Error
1389 ta_latin_hints_init(TA_GlyphHints hints,
1390 TA_LatinMetrics metrics)
1392 FT_Render_Mode mode;
1393 FT_UInt32 scaler_flags, other_flags;
1394 FT_Face face = metrics->root.scaler.face;
1397 ta_glyph_hints_rescale(hints, (TA_ScriptMetrics)metrics);
1399 /* correct x_scale and y_scale if needed, since they may have */
1400 /* been modified by `ta_latin_metrics_scale_dim' above */
1401 hints->x_scale = metrics->axis[TA_DIMENSION_HORZ].scale;
1402 hints->x_delta = metrics->axis[TA_DIMENSION_HORZ].delta;
1403 hints->y_scale = metrics->axis[TA_DIMENSION_VERT].scale;
1404 hints->y_delta = metrics->axis[TA_DIMENSION_VERT].delta;
1406 /* compute flags depending on render mode, etc. */
1407 mode = metrics->root.scaler.render_mode;
1409 #if 0 /* #ifdef TA_CONFIG_OPTION_USE_WARPER */
1410 if (mode == FT_RENDER_MODE_LCD
1411 || mode == FT_RENDER_MODE_LCD_V)
1412 metrics->root.scaler.render_mode =
1413 mode = FT_RENDER_MODE_NORMAL;
1414 #endif
1416 scaler_flags = hints->scaler_flags;
1417 other_flags = 0;
1419 /* we snap the width of vertical stems for the monochrome */
1420 /* and horizontal LCD rendering targets only */
1421 if (mode == FT_RENDER_MODE_MONO
1422 || mode == FT_RENDER_MODE_LCD)
1423 other_flags |= TA_LATIN_HINTS_HORZ_SNAP;
1425 /* we snap the width of horizontal stems for the monochrome */
1426 /* and vertical LCD rendering targets only */
1427 if (mode == FT_RENDER_MODE_MONO
1428 || mode == FT_RENDER_MODE_LCD_V)
1429 other_flags |= TA_LATIN_HINTS_VERT_SNAP;
1431 /* we adjust stems to full pixels only if we don't use the `light' mode */
1432 if (mode != FT_RENDER_MODE_LIGHT)
1433 other_flags |= TA_LATIN_HINTS_STEM_ADJUST;
1435 if (mode == FT_RENDER_MODE_MONO)
1436 other_flags |= TA_LATIN_HINTS_MONO;
1438 /* in `light' hinting mode we disable horizontal hinting completely; */
1439 /* we also do it if the face is italic */
1440 if (mode == FT_RENDER_MODE_LIGHT
1441 || (face->style_flags & FT_STYLE_FLAG_ITALIC) != 0)
1442 scaler_flags |= TA_SCALER_FLAG_NO_HORIZONTAL;
1444 hints->scaler_flags = scaler_flags;
1445 hints->other_flags = other_flags;
1447 return FT_Err_Ok;
1451 /* snap a given width in scaled coordinates to */
1452 /* one of the current standard widths */
1454 static FT_Pos
1455 ta_latin_snap_width(TA_Width widths,
1456 FT_Int count,
1457 FT_Pos width)
1459 int n;
1460 FT_Pos best = 64 + 32 + 2;
1461 FT_Pos reference = width;
1462 FT_Pos scaled;
1465 for (n = 0; n < count; n++)
1467 FT_Pos w;
1468 FT_Pos dist;
1471 w = widths[n].cur;
1472 dist = width - w;
1473 if (dist < 0)
1474 dist = -dist;
1475 if (dist < best)
1477 best = dist;
1478 reference = w;
1482 scaled = TA_PIX_ROUND(reference);
1484 if (width >= reference)
1486 if (width < scaled + 48)
1487 width = reference;
1489 else
1491 if (width > scaled - 48)
1492 width = reference;
1495 return width;
1499 /* compute the snapped width of a given stem, ignoring very thin ones */
1501 /* there is a lot of voodoo in this function; changing the hard-coded */
1502 /* parameters influence the whole hinting process */
1504 static FT_Pos
1505 ta_latin_compute_stem_width(TA_GlyphHints hints,
1506 TA_Dimension dim,
1507 FT_Pos width,
1508 FT_Byte base_flags,
1509 FT_Byte stem_flags)
1511 TA_LatinMetrics metrics = (TA_LatinMetrics) hints->metrics;
1512 TA_LatinAxis axis = &metrics->axis[dim];
1514 FT_Pos dist = width;
1515 FT_Int sign = 0;
1516 FT_Int vertical = (dim == TA_DIMENSION_VERT);
1519 if (!TA_LATIN_HINTS_DO_STEM_ADJUST(hints)
1520 || axis->extra_light)
1521 return width;
1523 if (dist < 0)
1525 dist = -width;
1526 sign = 1;
1529 if ((vertical && !TA_LATIN_HINTS_DO_VERT_SNAP(hints))
1530 || (!vertical && !TA_LATIN_HINTS_DO_HORZ_SNAP(hints)))
1532 /* smooth hinting process: very lightly quantize the stem width */
1534 /* leave the widths of serifs alone */
1535 if ((stem_flags & TA_EDGE_SERIF)
1536 && vertical
1537 && (dist < 3 * 64))
1538 goto Done_Width;
1539 else if (base_flags & TA_EDGE_ROUND)
1541 if (dist < 80)
1542 dist = 64;
1544 else if (dist < 56)
1545 dist = 56;
1547 if (axis->width_count > 0)
1549 FT_Pos delta;
1552 /* compare to standard width */
1553 delta = dist - axis->widths[0].cur;
1555 if (delta < 0)
1556 delta = -delta;
1558 if (delta < 40)
1560 dist = axis->widths[0].cur;
1561 if (dist < 48)
1562 dist = 48;
1564 goto Done_Width;
1567 if (dist < 3 * 64)
1569 delta = dist & 63;
1570 dist &= -64;
1572 if (delta < 10)
1573 dist += delta;
1574 else if (delta < 32)
1575 dist += 10;
1576 else if (delta < 54)
1577 dist += 54;
1578 else
1579 dist += delta;
1581 else
1582 dist = (dist + 32) & ~63;
1585 else
1587 /* strong hinting process: snap the stem width to integer pixels */
1589 FT_Pos org_dist = dist;
1592 dist = ta_latin_snap_width(axis->widths, axis->width_count, dist);
1594 if (vertical)
1596 /* in the case of vertical hinting, */
1597 /* always round the stem heights to integer pixels */
1599 if (dist >= 64)
1600 dist = (dist + 16) & ~63;
1601 else
1602 dist = 64;
1604 else
1606 if (TA_LATIN_HINTS_DO_MONO(hints))
1608 /* monochrome horizontal hinting: */
1609 /* snap widths to integer pixels with a different threshold */
1611 if (dist < 64)
1612 dist = 64;
1613 else
1614 dist = (dist + 32) & ~63;
1616 else
1618 /* for horizontal anti-aliased hinting, we adopt a more subtle */
1619 /* approach: we strengthen small stems, round stems whose size */
1620 /* is between 1 and 2 pixels to an integer, otherwise nothing */
1622 if (dist < 48)
1623 dist = (dist + 64) >> 1;
1625 else if (dist < 128)
1627 /* we only round to an integer width if the corresponding */
1628 /* distortion is less than 1/4 pixel -- otherwise, this */
1629 /* makes everything worse since the diagonals, which are */
1630 /* not hinted, appear a lot bolder or thinner than the */
1631 /* vertical stems */
1633 FT_Pos delta;
1636 dist = (dist + 22) & ~63;
1637 delta = dist - org_dist;
1638 if (delta < 0)
1639 delta = -delta;
1641 if (delta >= 16)
1643 dist = org_dist;
1644 if (dist < 48)
1645 dist = (dist + 64) >> 1;
1648 else
1649 /* round otherwise to prevent color fringes in LCD mode */
1650 dist = (dist + 32) & ~63;
1655 Done_Width:
1656 if (sign)
1657 dist = -dist;
1659 return dist;
1663 /* align one stem edge relative to the previous stem edge */
1665 static void
1666 ta_latin_align_linked_edge(TA_GlyphHints hints,
1667 TA_Dimension dim,
1668 TA_Edge base_edge,
1669 TA_Edge stem_edge)
1671 FT_Pos dist = stem_edge->opos - base_edge->opos;
1673 FT_Pos fitted_width = ta_latin_compute_stem_width(
1674 hints, dim, dist,
1675 base_edge->flags,
1676 stem_edge->flags);
1679 stem_edge->pos = base_edge->pos + fitted_width;
1681 TA_LOG((" LINK: edge %d (opos=%.2f) linked to (%.2f),"
1682 " dist was %.2f, now %.2f\n",
1683 stem_edge - hints->axis[dim].edges, stem_edge->opos / 64.0,
1684 stem_edge->pos / 64.0, dist / 64.0, fitted_width / 64.0));
1688 /* shift the coordinates of the `serif' edge by the same amount */
1689 /* as the corresponding `base' edge has been moved already */
1691 static void
1692 ta_latin_align_serif_edge(TA_GlyphHints hints,
1693 TA_Edge base,
1694 TA_Edge serif)
1696 FT_UNUSED(hints);
1698 serif->pos = base->pos + (serif->opos - base->opos);
1702 /* the main grid-fitting routine */
1704 void
1705 ta_latin_hint_edges(TA_GlyphHints hints,
1706 TA_Dimension dim)
1708 TA_AxisHints axis = &hints->axis[dim];
1710 TA_Edge edges = axis->edges;
1711 TA_Edge edge_limit = edges + axis->num_edges;
1712 FT_PtrDist n_edges;
1713 TA_Edge edge;
1715 TA_Edge anchor = NULL;
1716 FT_Int has_serifs = 0;
1719 TA_LOG(("%s edge hinting\n", dim == TA_DIMENSION_VERT ? "horizontal"
1720 : "vertical"));
1722 /* we begin by aligning all stems relative to the blue zone if needed -- */
1723 /* that's only for horizontal edges */
1725 if (dim == TA_DIMENSION_VERT
1726 && TA_HINTS_DO_BLUES(hints))
1728 for (edge = edges; edge < edge_limit; edge++)
1730 TA_Width blue;
1731 TA_Edge edge1, edge2; /* these edges form the stem to check */
1734 if (edge->flags & TA_EDGE_DONE)
1735 continue;
1737 blue = edge->blue_edge;
1738 edge1 = NULL;
1739 edge2 = edge->link;
1741 if (blue)
1742 edge1 = edge;
1744 /* flip edges if the other stem is aligned to a blue zone */
1745 else if (edge2 && edge2->blue_edge)
1747 blue = edge2->blue_edge;
1748 edge1 = edge2;
1749 edge2 = edge;
1752 if (!edge1)
1753 continue;
1755 TA_LOG((" BLUE: edge %d (opos=%.2f) snapped to (%.2f),"
1756 " was (%.2f)\n",
1757 edge1 - edges, edge1->opos / 64.0, blue->fit / 64.0,
1758 edge1->pos / 64.0));
1760 edge1->pos = blue->fit;
1761 edge1->flags |= TA_EDGE_DONE;
1763 if (edge2 && !edge2->blue_edge)
1765 ta_latin_align_linked_edge(hints, dim, edge1, edge2);
1766 edge2->flags |= TA_EDGE_DONE;
1769 if (!anchor)
1770 anchor = edge;
1774 /* now we align all other stem edges, */
1775 /* trying to maintain the relative order of stems in the glyph */
1776 for (edge = edges; edge < edge_limit; edge++)
1778 TA_Edge edge2;
1781 if (edge->flags & TA_EDGE_DONE)
1782 continue;
1784 /* skip all non-stem edges */
1785 edge2 = edge->link;
1786 if (!edge2)
1788 has_serifs++;
1789 continue;
1792 /* now align the stem */
1794 /* this should not happen, but it's better to be safe */
1795 if (edge2->blue_edge)
1797 TA_LOG((" ASSERTION FAILED for edge %d\n", edge2-edges));
1799 ta_latin_align_linked_edge(hints, dim, edge2, edge);
1800 edge->flags |= TA_EDGE_DONE;
1801 continue;
1804 if (!anchor)
1806 /* if we reach this if clause, no stem has been aligned yet */
1808 FT_Pos org_len, org_center, cur_len;
1809 FT_Pos cur_pos1, error1, error2, u_off, d_off;
1812 org_len = edge2->opos - edge->opos;
1813 cur_len = ta_latin_compute_stem_width(hints, dim, org_len,
1814 edge->flags, edge2->flags);
1816 /* some voodoo to specially round edges for small stem widths; */
1817 /* the idea is to align the center of a stem, */
1818 /* then shifting the stem edges to suitable positions */
1819 if (cur_len <= 64)
1821 /* width <= 1px */
1822 u_off = 32;
1823 d_off = 32;
1825 else
1827 /* 1px < width < 1.5px */
1828 u_off = 38;
1829 d_off = 26;
1832 if (cur_len < 96)
1834 org_center = edge->opos + (org_len >> 1);
1835 cur_pos1 = TA_PIX_ROUND(org_center);
1837 error1 = org_center - (cur_pos1 - u_off);
1838 if (error1 < 0)
1839 error1 = -error1;
1841 error2 = org_center - (cur_pos1 + d_off);
1842 if (error2 < 0)
1843 error2 = -error2;
1845 if (error1 < error2)
1846 cur_pos1 -= u_off;
1847 else
1848 cur_pos1 += d_off;
1850 edge->pos = cur_pos1 - cur_len / 2;
1851 edge2->pos = edge->pos + cur_len;
1853 else
1854 edge->pos = TA_PIX_ROUND(edge->opos);
1856 TA_LOG((" ANCHOR: edge %d (opos=%.2f) and %d (opos=%.2f)"
1857 " snapped to (%.2f) (%.2f)\n",
1858 edge - edges, edge->opos / 64.0,
1859 edge2 - edges, edge2->opos / 64.0,
1860 edge->pos / 64.0, edge2->pos / 64.0));
1861 anchor = edge;
1863 edge->flags |= TA_EDGE_DONE;
1865 ta_latin_align_linked_edge(hints, dim, edge, edge2);
1867 else
1869 FT_Pos org_pos, org_len, org_center, cur_len;
1870 FT_Pos cur_pos1, cur_pos2, delta1, delta2;
1873 org_pos = anchor->pos + (edge->opos - anchor->opos);
1874 org_len = edge2->opos - edge->opos;
1875 org_center = org_pos + (org_len >> 1);
1877 cur_len = ta_latin_compute_stem_width(hints, dim, org_len,
1878 edge->flags, edge2->flags);
1880 if (edge2->flags & TA_EDGE_DONE)
1881 edge->pos = edge2->pos - cur_len;
1883 else if (cur_len < 96)
1885 FT_Pos u_off, d_off;
1888 cur_pos1 = TA_PIX_ROUND(org_center);
1890 if (cur_len <= 64)
1892 u_off = 32;
1893 d_off = 32;
1895 else
1897 u_off = 38;
1898 d_off = 26;
1901 delta1 = org_center - (cur_pos1 - u_off);
1902 if (delta1 < 0)
1903 delta1 = -delta1;
1905 delta2 = org_center - (cur_pos1 + d_off);
1906 if (delta2 < 0)
1907 delta2 = -delta2;
1909 if (delta1 < delta2)
1910 cur_pos1 -= u_off;
1911 else
1912 cur_pos1 += d_off;
1914 edge->pos = cur_pos1 - cur_len / 2;
1915 edge2->pos = cur_pos1 + cur_len / 2;
1917 TA_LOG((" STEM: %d (opos=%.2f) to %d (opos=%.2f)"
1918 " snapped to (%.2f) and (%.2f)\n",
1919 edge - edges, edge->opos / 64.0,
1920 edge2 - edges, edge2->opos / 64.0,
1921 edge->pos / 64.0, edge2->pos / 64.0));
1924 else
1926 org_pos = anchor->pos + (edge->opos - anchor->opos);
1927 org_len = edge2->opos - edge->opos;
1928 org_center = org_pos + (org_len >> 1);
1930 cur_len = ta_latin_compute_stem_width(hints, dim, org_len,
1931 edge->flags, edge2->flags);
1933 cur_pos1 = TA_PIX_ROUND(org_pos);
1934 delta1 = cur_pos1 + (cur_len >> 1) - org_center;
1935 if (delta1 < 0)
1936 delta1 = -delta1;
1938 cur_pos2 = TA_PIX_ROUND(org_pos + org_len) - cur_len;
1939 delta2 = cur_pos2 + (cur_len >> 1) - org_center;
1940 if (delta2 < 0)
1941 delta2 = -delta2;
1943 edge->pos = (delta1 < delta2) ? cur_pos1 : cur_pos2;
1944 edge2->pos = edge->pos + cur_len;
1946 TA_LOG((" STEM: %d (opos=%.2f) to %d (opos=%.2f)"
1947 " snapped to (%.2f) and (%.2f)\n",
1948 edge - edges, edge->opos / 64.0,
1949 edge2 - edges, edge2->opos / 64.0,
1950 edge->pos / 64.0, edge2->pos / 64.0));
1953 edge->flags |= TA_EDGE_DONE;
1954 edge2->flags |= TA_EDGE_DONE;
1956 if (edge > edges
1957 && edge->pos < edge[-1].pos)
1959 TA_LOG((" BOUND: %d (pos=%.2f) to (%.2f)\n",
1960 edge - edges, edge->pos / 64.0, edge[-1].pos / 64.0));
1961 edge->pos = edge[-1].pos;
1966 /* make sure that lowercase m's maintain their symmetry */
1968 /* In general, lowercase m's have six vertical edges if they are sans */
1969 /* serif, or twelve if they are with serifs. This implementation is */
1970 /* based on that assumption, and seems to work very well with most */
1971 /* faces. However, if for a certain face this assumption is not */
1972 /* true, the m is just rendered like before. In addition, any stem */
1973 /* correction will only be applied to symmetrical glyphs (even if the */
1974 /* glyph is not an m), so the potential for unwanted distortion is */
1975 /* relatively low. */
1977 /* we don't handle horizontal edges since we can't easily assure that */
1978 /* the third (lowest) stem aligns with the base line; it might end up */
1979 /* one pixel higher or lower */
1981 n_edges = edge_limit - edges;
1982 if (dim == TA_DIMENSION_HORZ
1983 && (n_edges == 6 || n_edges == 12))
1985 TA_Edge edge1, edge2, edge3;
1986 FT_Pos dist1, dist2, span, delta;
1989 if (n_edges == 6)
1991 edge1 = edges;
1992 edge2 = edges + 2;
1993 edge3 = edges + 4;
1995 else
1997 edge1 = edges + 1;
1998 edge2 = edges + 5;
1999 edge3 = edges + 9;
2002 dist1 = edge2->opos - edge1->opos;
2003 dist2 = edge3->opos - edge2->opos;
2005 span = dist1 - dist2;
2006 if (span < 0)
2007 span = -span;
2009 if (span < 8)
2011 delta = edge3->pos - (2 * edge2->pos - edge1->pos);
2012 edge3->pos -= delta;
2013 if (edge3->link)
2014 edge3->link->pos -= delta;
2016 /* move the serifs along with the stem */
2017 if (n_edges == 12)
2019 (edges + 8)->pos -= delta;
2020 (edges + 11)->pos -= delta;
2023 edge3->flags |= TA_EDGE_DONE;
2024 if (edge3->link)
2025 edge3->link->flags |= TA_EDGE_DONE;
2029 if (has_serifs || !anchor)
2031 /* now hint the remaining edges (serifs and single) */
2032 /* in order to complete our processing */
2033 for (edge = edges; edge < edge_limit; edge++)
2035 FT_Pos delta;
2038 if (edge->flags & TA_EDGE_DONE)
2039 continue;
2041 delta = 1000;
2043 if (edge->serif)
2045 delta = edge->serif->opos - edge->opos;
2046 if (delta < 0)
2047 delta = -delta;
2050 if (delta < 64 + 16)
2052 ta_latin_align_serif_edge(hints, edge->serif, edge);
2053 TA_LOG((" SERIF: edge %d (opos=%.2f) serif to %d (opos=%.2f)"
2054 " aligned to (%.2f)\n",
2055 edge - edges, edge->opos / 64.0,
2056 edge->serif - edges, edge->serif->opos / 64.0,
2057 edge->pos / 64.0));
2059 else if (!anchor)
2061 TA_LOG((" SERIF_ANCHOR: edge %d (opos=%.2f) snapped to (%.2f)\n",
2062 edge - edges, edge->opos / 64.0, edge->pos / 64.0));
2063 edge->pos = TA_PIX_ROUND(edge->opos);
2064 anchor = edge;
2066 else
2068 TA_Edge before, after;
2071 for (before = edge - 1; before >= edges; before--)
2072 if (before->flags & TA_EDGE_DONE)
2073 break;
2075 for (after = edge + 1; after < edge_limit; after++)
2076 if (after->flags & TA_EDGE_DONE)
2077 break;
2079 if (before >= edges && before < edge
2080 && after < edge_limit && after > edge)
2082 if (after->opos == before->opos)
2083 edge->pos = before->pos;
2084 else
2085 edge->pos = before->pos + FT_MulDiv(edge->opos - before->opos,
2086 after->pos - before->pos,
2087 after->opos - before->opos);
2089 TA_LOG((" SERIF_LINK1: edge %d (opos=%.2f) snapped to (%.2f)"
2090 " from %d (opos=%.2f)\n",
2091 edge - edges, edge->opos / 64.0,
2092 edge->pos / 64.0,
2093 before - edges, before->opos / 64.0));
2095 else
2097 edge->pos = anchor->pos + ((edge->opos - anchor->opos + 16) & ~31);
2099 TA_LOG((" SERIF_LINK2: edge %d (opos=%.2f) snapped to (%.2f)\n",
2100 edge - edges, edge->opos / 64.0, edge->pos / 64.0));
2104 edge->flags |= TA_EDGE_DONE;
2106 if (edge > edges
2107 && edge->pos < edge[-1].pos)
2108 edge->pos = edge[-1].pos;
2110 if (edge + 1 < edge_limit
2111 && edge[1].flags & TA_EDGE_DONE
2112 && edge->pos > edge[1].pos)
2113 edge->pos = edge[1].pos;
2117 TA_LOG(("\n"));
2121 /* apply the complete hinting algorithm to a latin glyph */
2123 static FT_Error
2124 ta_latin_hints_apply(TA_GlyphHints hints,
2125 FT_Outline* outline,
2126 TA_LatinMetrics metrics)
2128 FT_Error error;
2129 int dim;
2132 error = ta_glyph_hints_reload(hints, outline);
2133 if (error)
2134 goto Exit;
2136 /* analyze glyph outline */
2137 #ifdef TA_CONFIG_OPTION_USE_WARPER
2138 if (metrics->root.scaler.render_mode == FT_RENDER_MODE_LIGHT
2139 || TA_HINTS_DO_HORIZONTAL(hints))
2140 #else
2141 if (TA_HINTS_DO_HORIZONTAL(hints))
2142 #endif
2144 error = ta_latin_hints_detect_features(hints, TA_DIMENSION_HORZ);
2145 if (error)
2146 goto Exit;
2149 if (TA_HINTS_DO_VERTICAL(hints))
2151 error = ta_latin_hints_detect_features(hints, TA_DIMENSION_VERT);
2152 if (error)
2153 goto Exit;
2155 ta_latin_hints_compute_blue_edges(hints, metrics);
2158 /* grid-fit the outline */
2159 for (dim = 0; dim < TA_DIMENSION_MAX; dim++)
2161 #ifdef TA_CONFIG_OPTION_USE_WARPER
2162 if (dim == TA_DIMENSION_HORZ
2163 && metrics->root.scaler.render_mode == FT_RENDER_MODE_LIGHT)
2165 TA_WarperRec warper;
2166 FT_Fixed scale;
2167 FT_Pos delta;
2170 ta_warper_compute(&warper, hints, (TA_Dimension)dim, &scale, &delta);
2171 ta_glyph_hints_scale_dim(hints, (TA_Dimension)dim, scale, delta);
2173 continue;
2175 #endif
2177 if ((dim == TA_DIMENSION_HORZ && TA_HINTS_DO_HORIZONTAL(hints))
2178 || (dim == TA_DIMENSION_VERT && TA_HINTS_DO_VERTICAL(hints)))
2180 ta_latin_hint_edges(hints, (TA_Dimension)dim);
2181 ta_glyph_hints_align_edge_points(hints, (TA_Dimension)dim);
2182 ta_glyph_hints_align_strong_points(hints, (TA_Dimension)dim);
2183 ta_glyph_hints_align_weak_points(hints, (TA_Dimension)dim);
2186 ta_glyph_hints_save(hints, outline);
2188 Exit:
2189 return error;
2193 /* XXX: this should probably fine tuned to differentiate better between */
2194 /* scripts... */
2196 static const TA_Script_UniRangeRec ta_latin_uniranges[] =
2198 TA_UNIRANGE_REC(0x0020UL, 0x007FUL), /* Basic Latin (no control chars) */
2199 TA_UNIRANGE_REC(0x00A0UL, 0x00FFUL), /* Latin-1 Supplement (no control chars) */
2200 TA_UNIRANGE_REC(0x0100UL, 0x017FUL), /* Latin Extended-A */
2201 TA_UNIRANGE_REC(0x0180UL, 0x024FUL), /* Latin Extended-B */
2202 TA_UNIRANGE_REC(0x0250UL, 0x02AFUL), /* IPA Extensions */
2203 TA_UNIRANGE_REC(0x02B0UL, 0x02FFUL), /* Spacing Modifier Letters */
2204 TA_UNIRANGE_REC(0x0300UL, 0x036FUL), /* Combining Diacritical Marks */
2205 TA_UNIRANGE_REC(0x0370UL, 0x03FFUL), /* Greek and Coptic */
2206 TA_UNIRANGE_REC(0x0400UL, 0x04FFUL), /* Cyrillic */
2207 TA_UNIRANGE_REC(0x0500UL, 0x052FUL), /* Cyrillic Supplement */
2208 TA_UNIRANGE_REC(0x1D00UL, 0x1D7FUL), /* Phonetic Extensions */
2209 TA_UNIRANGE_REC(0x1D80UL, 0x1DBFUL), /* Phonetic Extensions Supplement */
2210 TA_UNIRANGE_REC(0x1DC0UL, 0x1DFFUL), /* Combining Diacritical Marks Supplement */
2211 TA_UNIRANGE_REC(0x1E00UL, 0x1EFFUL), /* Latin Extended Additional */
2212 TA_UNIRANGE_REC(0x1F00UL, 0x1FFFUL), /* Greek Extended */
2213 TA_UNIRANGE_REC(0x2000UL, 0x206FUL), /* General Punctuation */
2214 TA_UNIRANGE_REC(0x2070UL, 0x209FUL), /* Superscripts and Subscripts */
2215 TA_UNIRANGE_REC(0x20A0UL, 0x20CFUL), /* Currency Symbols */
2216 TA_UNIRANGE_REC(0x2150UL, 0x218FUL), /* Number Forms */
2217 TA_UNIRANGE_REC(0x2460UL, 0x24FFUL), /* Enclosed Alphanumerics */
2218 TA_UNIRANGE_REC(0x2C60UL, 0x2C7FUL), /* Latin Extended-C */
2219 TA_UNIRANGE_REC(0x2DE0UL, 0x2DFFUL), /* Cyrillic Extended-A */
2220 TA_UNIRANGE_REC(0xA640UL, 0xA69FUL), /* Cyrillic Extended-B */
2221 TA_UNIRANGE_REC(0xA720UL, 0xA7FFUL), /* Latin Extended-D */
2222 TA_UNIRANGE_REC(0xFB00UL, 0xFB06UL), /* Alphab. Present. Forms (Latin Ligs) */
2223 TA_UNIRANGE_REC(0x1D400UL, 0x1D7FFUL), /* Mathematical Alphanumeric Symbols */
2224 TA_UNIRANGE_REC(0UL, 0UL)
2228 const TA_ScriptClassRec ta_latin_script_class =
2230 TA_SCRIPT_LATIN,
2231 ta_latin_uniranges,
2233 sizeof (TA_LatinMetricsRec),
2235 (TA_Script_InitMetricsFunc)ta_latin_metrics_init,
2236 (TA_Script_ScaleMetricsFunc)ta_latin_metrics_scale,
2237 (TA_Script_DoneMetricsFunc)NULL,
2239 (TA_Script_InitHintsFunc)ta_latin_hints_init,
2240 (TA_Script_ApplyHintsFunc)ta_latin_hints_apply
2243 /* end of talatin.c */