ref: 9e966c54e959a01244ae56e8acdf1b8d9097f1d6
dir: /font.c/
/* font handling */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include "roff.h" #define GHASH(g1, g2) ((((g2) + 1) << 16) | ((g1) + 1)) /* glyph pattern for gsub and gpos tables; each grule has some gpats */ struct gpat { short g; /* glyph index */ short rep; /* ignore this glyph; gsub replacement */ short x, y, xadv, yadv; /* gpos data */ }; /* glyph substitution and positioning rules */ struct grule { struct gpat *pats; short len; /* pats[] length */ short feat; /* feature owning this rule */ int hash; /* hash of this rule for sorting and comparison */ }; struct font { char name[FNLEN]; char fontname[FNLEN]; struct glyph glyphs[NGLYPHS]; int nglyphs; int spacewid; int special; int cs, bd; /* for .cs and .bd requests */ struct dict gdict; /* mapping from glyphs[i].id to i */ /* charset section characters */ char c[NGLYPHS][GNLEN]; /* character names in charset */ struct glyph *g[NGLYPHS]; /* character glyphs in charset */ struct glyph *g_map[NGLYPHS]; /* character remapped via font_map() */ int n; /* number of characters in charset */ struct dict cdict; /* mapping from c[i] to i */ /* font features */ char feat_name[NFEATS][8]; /* feature names */ int feat_set[NFEATS]; /* feature enabled */ int feat_n; /* glyph substitution and positioning */ struct gpat pats[NGPATS]; /* glyph pattern space */ int pats_pos; /* current position in pats[] */ struct grule gsub[NGRULES]; /* glyph substitution rules */ int gsub_n; struct grule gpos[NGRULES]; /* glyph positioning rules */ int gpos_n; }; /* find a glyph by its name */ struct glyph *font_find(struct font *fn, char *name) { int i = dict_get(&fn->cdict, name); if (i < 0) return NULL; return fn->g_map[i] ? fn->g_map[i] : fn->g[i]; } /* find a glyph by its device-dependent identifier */ struct glyph *font_glyph(struct font *fn, char *id) { int i = dict_get(&fn->gdict, id); return i >= 0 ? &fn->glyphs[i] : NULL; } static struct glyph *font_glyphput(struct font *fn, char *id, char *name, int type) { int i = fn->nglyphs++; struct glyph *g; g = &fn->glyphs[i]; strcpy(g->id, id); strcpy(g->name, name); g->type = type; g->font = fn; dict_put(&fn->gdict, g->id, i); return g; } /* map character name to the given glyph */ int font_map(struct font *fn, char *name, struct glyph *g) { int i = dict_get(&fn->cdict, name); if (g && g->font != fn) return 1; if (i < 0) { if (fn->n >= NGLYPHS) return 1; i = fn->n++; strcpy(fn->c[i], name); dict_put(&fn->cdict, fn->c[i], i); } fn->g_map[i] = g; return 0; } /* return nonzero if character name has been mapped with font_map() */ int font_mapped(struct font *fn, char *name) { int i = dict_get(&fn->cdict, name); return i >= 0 && fn->g_map[i]; } /* glyph index in fn->glyphs[] */ static int font_idx(struct font *fn, struct glyph *g) { return g ? g - fn->glyphs : -1; } static int grulecmp(void *v1, void *v2) { return ((struct grule *) v1)->hash - ((struct grule *) v2)->hash; } /* the hashing function for grule structs, based on their first two glyphs */ static int grule_hash(struct grule *rule) { int g1 = -1, g2 = -1; int i = 0; while (i < rule->len && rule->pats[i].rep) i++; g1 = i < rule->len ? rule->pats[i++].g : -1; while (i < rule->len && rule->pats[i].rep) i++; g2 = i < rule->len ? rule->pats[i++].g : -1; return GHASH(g1, g2); } static int grule_find(struct grule *rules, int n, int hash) { int l = 0; int h = n; while (l < h) { int m = (l + h) >> 1; if (rules[m].hash >= hash) h = m; else l = m + 1; } return rules[l].hash == hash ? l : -1; } static int font_rulematches(struct font *fn, struct grule *rule, int *src, int len) { int j, sidx = 0; if (!fn->feat_set[rule->feat]) return 0; for (j = 0; j < rule->len; j++) if (!rule->pats[j].rep) if (sidx >= len || rule->pats[j].g != src[sidx++]) return 0; return j == rule->len; } static struct grule *font_findrule(struct font *fn, struct grule *rules, int n, int *src, int len) { int i, j; for (j = 0; j < 2 && j < len; j++) { int hash = GHASH(src[0], j == 0 ? -1 : src[1]); int idx = grule_find(rules, n, hash); if (idx < 0) continue; for (i = idx; i < n && rules[i].hash == hash; i++) if (font_rulematches(fn, rules + i, src, len)) return rules + i; } return NULL; } int font_layout(struct font *fn, struct glyph **gsrc, int nsrc, int sz, struct glyph **gdst, int *dmap, int *x, int *y, int *xadv, int *yadv) { int src[WORDLEN], dst[WORDLEN]; int ndst = 0; int i, j; for (i = 0; i < nsrc; i++) src[i] = font_idx(fn, gsrc[i]); for (i = 0; i < nsrc; i++) { struct grule *rule = font_findrule(fn, fn->gsub, fn->gsub_n, src + i, nsrc - i); dmap[ndst] = i; if (rule) { for (j = 0; j < rule->len; j++) { if (rule->pats[j].rep) dst[ndst++] = rule->pats[j].g; else i++; } i--; } else { dst[ndst++] = src[i]; } } memset(x, 0, ndst * sizeof(x[0])); memset(y, 0, ndst * sizeof(y[0])); memset(xadv, 0, ndst * sizeof(xadv[0])); memset(yadv, 0, ndst * sizeof(yadv[0])); for (i = 0; i < ndst; i++) gdst[i] = fn->glyphs + dst[i]; for (i = 0; i < ndst; i++) { struct grule *rule = font_findrule(fn, fn->gpos, fn->gpos_n, dst + i, ndst - i); if (!rule) continue; for (j = 0; j < rule->len; j++) { x[i + j] = rule->pats[j].x; y[i + j] = rule->pats[j].y; xadv[i + j] = rule->pats[j].xadv; yadv[i + j] = rule->pats[j].yadv; } } return ndst; } static int font_readchar(struct font *fn, FILE *fin) { char tok[ILNLEN]; char name[ILNLEN]; char id[ILNLEN]; struct glyph *glyph = NULL; int type; if (fn->n + 1 == NGLYPHS) errmsg("neatroff: NGLYPHS too low\n"); if (fn->n >= NGLYPHS) return 0; if (fscanf(fin, "%s %s", name, tok) != 2) return 1; if (!strcmp("---", name)) sprintf(name, "c%04d", fn->n); if (!strcmp("\"", tok)) { glyph = fn->g[fn->n - 1]; } else { if (fscanf(fin, "%d %s", &type, id) != 2) return 1; glyph = font_glyph(fn, id); if (!glyph) { glyph = font_glyphput(fn, id, name, type); sscanf(tok, "%hd,%hd,%hd,%hd,%hd", &glyph->wid, &glyph->llx, &glyph->lly, &glyph->urx, &glyph->ury); } } strcpy(fn->c[fn->n], name); fn->g[fn->n] = glyph; dict_put(&fn->cdict, fn->c[fn->n], fn->n); fn->n++; return 0; } static int font_findfeat(struct font *fn, char *feat, int mk) { int i; for (i = 0; i < fn->feat_n; i++) if (!strcmp(feat, fn->feat_name[i])) return i; if (mk) strcpy(fn->feat_name[fn->feat_n], feat); return mk ? fn->feat_n++ : -1; } static struct gpat *font_gpat(struct font *fn, int len) { int pos = fn->pats_pos; if (pos + 9 > LEN(fn->pats) && pos + 6 < LEN(fn->pats)) errmsg("neatroff: NGPATS too low\n"); if (pos + len > LEN(fn->pats)) return NULL; memset(fn->pats + pos, 0, sizeof(fn->pats[0]) * len); fn->pats_pos += len; return fn->pats + pos; } static struct grule *font_gsub(struct font *fn, char *feat, int len) { struct grule *rule; struct gpat *pats = font_gpat(fn, len); if (fn->gsub_n + 1 == LEN(fn->gsub)) errmsg("neatroff: NGRULES too low\n"); if (fn->gsub_n >= LEN(fn->gsub) || !pats) return NULL; rule = &fn->gsub[fn->gsub_n++]; rule->pats = pats; rule->len = len; rule->feat = font_findfeat(fn, feat, 1); return rule; } static struct grule *font_gpos(struct font *fn, char *feat, int len) { struct grule *rule; struct gpat *pats = font_gpat(fn, len); if (fn->gpos_n + 1 == LEN(fn->gpos)) errmsg("neatroff: NGRULES too low\n"); if (fn->gpos_n >= LEN(fn->gpos) || !pats) return NULL; rule = &fn->gpos[fn->gpos_n++]; rule->pats = pats; rule->len = len; rule->feat = font_findfeat(fn, feat, 1); return rule; } static int font_readgsub(struct font *fn, FILE *fin) { char tok[128]; struct grule *rule; struct glyph *g; int i, n; if (fscanf(fin, "%s %d", tok, &n) != 2) return 1; if (!(rule = font_gsub(fn, tok, n))) return 0; for (i = 0; i < n; i++) { if (fscanf(fin, "%s", tok) != 1) return 1; if (!tok[0] || !(g = font_glyph(fn, tok + 1))) return 0; rule->pats[i].g = font_idx(fn, g); rule->pats[i].rep = tok[0] == '+'; } return 0; } static int font_readgpos(struct font *fn, FILE *fin) { char tok[128]; char *col; struct grule *rule; struct glyph *g; int i, n; if (fscanf(fin, "%s %d", tok, &n) != 2) return 1; if (!(rule = font_gpos(fn, tok, n))) return 0; for (i = 0; i < n; i++) { if (fscanf(fin, "%s", tok) != 1) return 1; col = strchr(tok, ':'); if (col) *col = '\0'; if (!(g = font_glyph(fn, tok))) return 0; rule->pats[i].g = font_idx(fn, g); if (col) sscanf(col + 1, "%hd%hd%hd%hd", &rule->pats[i].x, &rule->pats[i].y, &rule->pats[i].xadv, &rule->pats[i].yadv); } return 0; } static int font_readkern(struct font *fn, FILE *fin) { char c1[ILNLEN], c2[ILNLEN]; struct grule *rule; int val; if (fscanf(fin, "%s %s %d", c1, c2, &val) != 3) return 1; if (!(rule = font_gpos(fn, "kern", 2))) return 0; rule->pats[0].g = font_idx(fn, font_glyph(fn, c1)); rule->pats[1].g = font_idx(fn, font_glyph(fn, c2)); rule->pats[0].xadv = val; return 0; } static void font_lig(struct font *fn, char *lig) { char c[GNLEN]; int g[WORDLEN]; struct grule *rule; char *s = lig; int j, n = 0; while (utf8read(&s, c) > 0) g[n++] = font_idx(fn, font_find(fn, c)); if (!(rule = font_gsub(fn, "liga", n + 1))) return; for (j = 0; j < n; j++) rule->pats[j].g = g[j]; rule->pats[n].g = font_idx(fn, font_glyph(fn, lig)); rule->pats[n].rep = 1; } static void skipline(FILE* filp) { int c; do { c = getc(filp); } while (c != '\n' && c != EOF); } struct font *font_open(char *path) { struct font *fn; char tok[ILNLEN]; FILE *fin; char ligs[512][GNLEN]; int ligs_n = 0; int i; fin = fopen(path, "r"); if (!fin) return NULL; fn = xmalloc(sizeof(*fn)); if (!fn) { fclose(fin); return NULL; } memset(fn, 0, sizeof(*fn)); dict_init(&fn->gdict, NGLYPHS, -1, 0, 0); dict_init(&fn->cdict, NGLYPHS, -1, 0, 0); while (fscanf(fin, "%s", tok) == 1) { if (!strcmp("char", tok)) { font_readchar(fn, fin); } else if (!strcmp("kern", tok)) { font_readkern(fn, fin); } else if (!strcmp("ligatures", tok)) { while (fscanf(fin, "%s", ligs[ligs_n]) == 1) { if (!strcmp("0", ligs[ligs_n])) break; if (ligs_n < LEN(ligs)) ligs_n++; } } else if (!strcmp("gsub", tok)) { font_readgsub(fn, fin); } else if (!strcmp("gpos", tok)) { font_readgpos(fn, fin); } else if (!strcmp("spacewidth", tok)) { fscanf(fin, "%d", &fn->spacewid); } else if (!strcmp("special", tok)) { fn->special = 1; } else if (!strcmp("name", tok)) { fscanf(fin, "%s", fn->name); } else if (!strcmp("fontname", tok)) { fscanf(fin, "%s", fn->fontname); } else if (!strcmp("charset", tok)) { while (!font_readchar(fn, fin)) ; break; } skipline(fin); } for (i = 0; i < ligs_n; i++) font_lig(fn, ligs[i]); fclose(fin); for (i = 0; i < fn->gsub_n; i++) fn->gsub[i].hash = grule_hash(&fn->gsub[i]); for (i = 0; i < fn->gpos_n; i++) fn->gpos[i].hash = grule_hash(&fn->gpos[i]); qsort(fn->gsub, fn->gsub_n, sizeof(fn->gsub[0]), (void *) grulecmp); qsort(fn->gpos, fn->gpos_n, sizeof(fn->gpos[0]), (void *) grulecmp); return fn; } void font_close(struct font *fn) { dict_done(&fn->gdict); dict_done(&fn->cdict); free(fn); } int font_special(struct font *fn) { return fn->special; } int font_spacewid(struct font *fn) { return fn->spacewid; } int font_getcs(struct font *fn) { return fn->cs; } void font_setcs(struct font *fn, int cs) { fn->cs = cs; } int font_getbd(struct font *fn) { return fn->bd; } void font_setbd(struct font *fn, int bd) { fn->bd = bd; } /* enable/disable font features; returns the previous value */ int font_feat(struct font *fn, char *name, int val) { int idx = font_findfeat(fn, name, 0); int old = idx >= 0 ? fn->feat_set[idx] : 0; if (idx >= 0) fn->feat_set[idx] = val; return old; }