summaryrefslogtreecommitdiff
path: root/tex/context/modules/mkiv/s-fonts-emoji.mkiv
blob: 096b90263b74b6813dd2e50d9ffe8a04e42a3669 (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
%D \module
%D   [      file=s-fonts-emoji,
%D        version=2017.04.26,
%D          title=\CONTEXT\ Style File,
%D       subtitle=Emoji Helpers,
%D         author=Hans Hagen,
%D           date=\currentdate,
%D      copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.

\startluacode
moduledata.emoji    = moduledata.emoji or { }

local find          = string.find
local sortedhash    = table.sortedhash
local utfvalues     = string.utfvalues

local context       = context

local traverseid    = nodes.traverseid

local glyph_code    = nodes.nodecodes.glyph

local descriptions  = fonts.hashes.descriptions
local checkedemoji  = fonts.symbols.emoji.checked
local compactemoji  = characters.emoji.compact
local resolvedemoji = characters.emoji.resolve
local knownemoji    = characters.emoji.known

local function emojisnippets(name)
    local d = descriptions[true]
    if d then
        local e = resolvedemoji(name)
        local s = { }
        for b in utfvalues(e) do
            if not (b == 0x200D or (b >= 0x1F3FB and b <= 0x1F3FF)) then
                local t = { }
                s[#s+1] = t
                local c = d[b]
                if c then
                    c = c.colors
                    if c then
                        for i=1,#c do
                            t[#t+1] = c[i].slot
                        end
                    else
                        t[#t+1] = b
                    end
                end
            end
        end
        return #s > 0 and s or nil
    end
end

local function emojiglyphs(name)
    local d = descriptions[true]
    if d then
        local e = checkedemoji(name)
        local s = { }
        for n in traverseid(glyph_code,e) do
            local b = n.char
            if not (b == 0x200D or (b >= 0x1F3FB and b <= 0x1F3FF)) then
                local t = { }
                s[#s+1] = t
                local c = d[b]
                if c then
                    c = c.colors
                    if c then
                        for i=1,#c do
                            t[#t+1] = c[i].slot
                        end
                    else
                        t[#t+1] = b
                    end
                end
            end
        end
        nodes.flush_list(e)
        return #s > 0 and s or nil
    end
end

characters.emojisnippets  = emojisnippets
fonts.symbols.emojiglyphs = emojiglyphs

function moduledata.emoji.showsnippets(name)
    local s = emojisnippets(name)
    if s then
        local ni = #s
        for i=1,ni do
            local si = s[i]
            local nj = #si
            for j=1,nj do
                context.WrapEmojiSnippet(i,ni,j,nj,si[j])
            end
        end
    end
end

function moduledata.emoji.showglyphs(name)
    local s = emojiglyphs(name)
    if s then
        local ni = #s
        for i=1,ni do
            local si = s[i]
            local nj = #si
            for j=1,nj do
                context.WrapEmojiSnippet(i,ni,j,nj,si[j])
            end
        end
    end
end

function moduledata.emoji.showknown(list)
    local hash = knownemoji()
    local size = 0
    if list then
        list = utilities.parsers.settings_to_array(list)
        size = #list
        if size == 0 then
            list = false
        else
            for i=1,size do
                list[i] = string.escapedpattern(list[i])
            end
        end
    end
    for k, v in sortedhash(hash) do
        local okay = true
        if find(compactemoji(k),"%-s%-t") then
            okay = false
        elseif list then
            okay = false
            for i=1,size do
                if find(k,list[i]) then
                    okay = true
                    break
                end
            end
        end
        if okay then
            context("\\WrapEmojiPlusText{%s}{%!tex!}",k,v)
        end
    end
end

local function convert(t,k)
    local v = { }
    for i=1,#k do
        local p = k[i]
    end
    return v
end

function moduledata.emoji.showpalette(list)
    local colorpalettes = fonts.hashes.resources[true].colorpalettes
    if colorpalettes then
        if list then
            list = utilities.parsers.settings_to_hash(list)
            if not next(list) then
                list = false
            end
        end
        context.starttabulate { "||lp|" }
        for i=1,#colorpalettes do
            if not list or list[tostring(i)] then
                local palette = colorpalettes[i]
                context.BC()
                context.type(i)
                context.NC()
                for j=1,#palette do
                    local p = palette[j]
                    local r, g, b = p[1]/255, p[2]/255, p[3]/255
                    local s = attributes.colors.rgbtogray(r,g,b)
                    context.WrapEmojiColorEntry(j,s,r,g,b)
                end
                context.NC()
                context.NR()
            end
        end
        context.stoptabulate()
    end
end

\stopluacode

\unexpanded\def\WrapEmojiPlusText#1#2%
  {\dontleavehmode\hbox\bgroup
     \tttf % determines em
     \hpack to 8\emwidth{\setfontid\scratchcounter#2\hss}%
     \hpack to 8\emwidth{\setfontid\scratchcounter\checkedemoji{#1}\hss}%
     #1%
   \egroup\par}

\unexpanded\def\ShowEmoji
  {\dosingleempty\doShowEmoji}

\unexpanded\def\doShowEmoji[#1]%
  {\begingroup
   \scratchcounter\fontid\font
   \ctxlua{moduledata.emoji.showknown([[#1]])}%
   \endgroup}

\unexpanded\def\WrapEmojiSnippet#1#2#3#4#5%
  {\ifnum#3=\plusone
     \par
     \dontleavehmode\ruledhbox\bgroup
   \fi
   \ruledhbox to 2\emwidth{\hss\char#5\hss}%
   \ifnum#3=#4\relax
     \egroup
     \par
   \fi}

\unexpanded\def\ShowEmojiSnippets[#1]%
  {\ctxlua{moduledata.emoji.showsnippets("#1")}}

\unexpanded\def\ShowEmojiGlyphs[#1]%
  {\ctxlua{moduledata.emoji.showglyphs("#1")}}

\unexpanded\def\OverlayEmojiSnippet#1#2#3#4#5%
  {\setbox\scratchbox\hbox{\color[trace:#3]{\char#5}}%
   \ifnum#3=\plusone
     \ifnum#1=\plusone
       \dontleavehmode\ruledhbox\bgroup
     \fi
     \hbox\bgroup
   \else
     \hskip-\wd\scratchbox
   \fi
   \box\scratchbox
   \ifnum#3=#4\relax
     \egroup
     \ifnum#1=#2\relax
       \egroup
     \fi
   \fi}

\unexpanded\def\ShowEmojiSnippetsOverlay[#1]%
  {\begingroup
   \let\WrapEmojiSnippet\OverlayEmojiSnippet
   \ctxlua{moduledata.emoji.showsnippets("#1")}%
   \endgroup}

\unexpanded\def\WrapEmojiColorEntry#1#2#3#4#5%
  {\dontleavehmode\hpack\bgroup
     \definecolor
        [dummy]
        [r=#3,g=#4,b=#5]%
     \backgroundline
        [dummy]
        {\setbox\scratchbox\hpack to 2\emwidth{\hss\ifdim#2pt<.5pt\white\fi\ttx#1\hss}%
         \ht\scratchbox.8\strutht\dp\scratchbox.6\strutdp\box\scratchbox}%
   \egroup
   \quad}

\unexpanded\def\ShowEmojiPalettes
  {\dosingleempty\doShowEmojiPalettes}

\unexpanded\def\doShowEmojiPalettes[#1]%
  {\ctxlua{moduledata.emoji.showpalette([[#1]])}}

% \definefontfeature[bandw:overlay][ccmp=yes,dist=yes]
% \definefontfeature[color:overlay][ccmp=yes,dist=yes,colr=yes]
% %definefontfeature[bandw:svg]    [ccmp=yes,dist=yes]
% \definefontfeature[color:svg]    [ccmp=yes,dist=yes,svg=yes]
% %definefontfeature[bandw:bitmap] [ccmp=yes,dist=yes,sbix=yes]
% \definefontfeature[color:bitmap] [ccmp=yes,dist=yes,sbix=yes]

\definefontfeature[seguiemj-cl][color:overlay]
\definefontfeature[seguiemj-bw][bandw:overlay]

% \definefont[MyEmoji] [seguiemj*seguiemj-bw]
% \definefont[MyEmoji] [seguiemj*seguiemj-cl]
% \definefont[MyEmoji] [emojionecolor-svginot*default,svg]
% \definefont[MyEmoji] [emojionemozilla*default,overlay]
% \definefont[MyEmoji] [applecoloremoji*default,bitmap]

% \definecolor[trace:1][s=0,t=.5,a=1]
% \definecolor[trace:2][s=0,t=.5,a=1]
% \definecolor[trace:3][s=0,t=.5,a=1]
% \definecolor[trace:4][s=0,t=.5,a=1]
% \definecolor[trace:5][s=0,t=.5,a=1]
% \definecolor[trace:6][s=0,t=.5,a=1]

\continueifinputfile{s-fonts-emoji.mkiv}

\starttext

\start

\definedfont[file:seguiemj.any*default,seguiemj-cl]

% \ShowEmojiSnippets
%   [family man light skin tone woman dark skin tone girl medium skin tone boy medium skin tone]

% \ShowEmojiSnippetsOverlay
%   [family man light skin tone woman dark skin tone girl medium skin tone boy medium skin tone]

% \ShowEmojiGlyphs
%   [family man light skin tone woman dark skin tone girl medium skin tone boy medium skin tone]

% \page

% \ShowEmoji[^man]

% \ShowEmoji[backhand index pointing down]
% \ShowEmoji[backhand index pointing up]

\startTEXpage
[\char8205\char128104]=\char988828\par
[\char8205\char128105]=\char988851\par
[\char8205\char983484]=\char988834\par
[\char8205\char983485]=\char988835\par
[\char8205\char983486]=\char988836\par
[\char8205\char983487]=\char988837\par
[\char8205\char983488]=\char988838\par
[\char8205\char983495]=\char988858\par
[\char8205\char983496]=\char988859\par
[\char8205\char983497]=\char988860\par
[\char8205\char983498]=\char988861\par
[\char8205\char983499]=\char988862\par
\stopTEXpage








% \page

% \definecolor[emoji-base][r=.4]
% \definecolor[emoji-gray][s=.5,t=.5,a=1]

% \definefontcolorpalette
%   [emoji-gray]
%   [emoji-base,emoji-gray]

% \definefontfeature[seguiemj-cl][ccmp=yes,dist=yes,colr=emoji-gray]

% \definedfont[seguiemj*seguiemj-cl]

% \ShowEmoji

% \page

% \ShowEmojiPalettes[1]

\stop

\stoptext