summaryrefslogtreecommitdiff
path: root/doc/context/sources/general/fonts/fonts/fonts-demo-rule.lua
blob: 667d1e43c908f64b1631c47638405545c4d88957 (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
local startactualtext = backends.codeinjections.startunicodetoactualtext
local stopactualtext  = backends.codeinjections.stopunicodetoactualtext

return function(specification)
    local features = specification.features.normal
    local name     = features.original or "dejavu-serif"
    local option   = features.option      -- we only support "line"
    local size     = specification.size   -- always set
    local detail   = specification.detail -- e.g. default
    if detail then
        name = name .. "*" .. detail
    end
    local f, id = fonts.constructors.readanddefine(name,size)
    if f then
        f.properties.name = specification.name
        f.properties.virtualized = true
        f.fonts = {
            { id = id },
        }
        for s in string.gmatch("aeuioy",".") do
            local n = utf.byte(s)
            local c = f.characters[n]
            if c then
                local w = c.width  or 0
                local h = c.height or 0
                local d = c.depth  or 0
                if option == "line" then
                    f.characters[n].commands = {
                        { "special", "pdf:direct:" .. startactualtext(n) },
                        { "rule", option == "line" and size/10, w },
                        { "special", "pdf:direct:" .. stopactualtext() },
                    }
                else
                    f.characters[n].commands = {
                        { "special", "pdf:direct:" .. startactualtext(n) },
                        { "down", d },
                        { "rule", h + d, w },
                        { "special", "pdf:direct:" .. stopactualtext() },
                    }
                end
            else
                -- probably a real bad font
            end
        end
    end
    return f
end