1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
/* TODO try normalisation if not found, then try fallback fonts */
ssize_t
libskrift_get_cluster_glyph(LIBSKRIFT_CONTEXT *ctx, const char *text, struct libskrift_saved_grapheme *saved,
double x, double y, struct libskrift_glyph **glyphp)
{
struct libskrift_glyph *glyph0, *glyph1, *glyph2;
uint32_t cp0, cp1;
int state = 0;
size_t r, len;
*glyphp = NULL;
if (saved && saved->cp) {
cp0 = saved->cp;
len = saved->len;
} else {
len = grapheme_decode(text, &cp0);
if (!len) {
errno = EINVAL;
return -1;
}
}
if (libskrift_get_grapheme_glyph(ctx, cp0, x, y, &glyph0))
return -1;
x += glyph0->advance;
for (; cp0; cp0 = cp1, len += r) {
r = grapheme_decode(&text[len], &cp1);
if (!r) {
if (saved) {
saved->cp = 0;
saved->len = 0;
}
break;
}
if (grapheme_boundary(cp0, cp1, &state)) {
if (saved) {
saved->cp = cp1;
saved->len = r;
}
break;
}
if (libskrift_get_grapheme_glyph(ctx, cp1, x, y, &glyph1)) {
free(glyph0);
return -1;
}
x += glyph1->advance;
if (libskrift_merge_glyphs(ctx, glyph0, glyph1, &glyph2)) {
free(glyph0);
free(glyph1);
return -1;
}
free(glyph0);
free(glyph1);
glyph0 = glyph2;
}
*glyphp = glyph0;
return (ssize_t)len;
}
|