summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/back-lua.lua
blob: 257fda0a26bd121a74e3f398011ea4f6fb4b9a68 (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
if not modules then modules = { } end modules ['back-lua'] = {
    version   = 1.001,
    comment   = "companion to lpdf-ini.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local buffer = { }
local b      = 0

local function reset()
    buffer = { }
    b      = 0
end

local function initialize(specification)
    reset()
end

local function finalize()
end

local function fetch()
    local saved = buffer
    reset()
    return saved
end

local function flushcharacter(current, pos_h, pos_v, pod_r, font, char)
    b = b + 1 ; buffer[b] = { "glyph", font, char, pos_h, pos_v, pos_r }
end

local function flushrule(current, pos_h, pos_v, pos_r, size_h, size_v)
    b = b + 1 ; buffer[b] = { "rule", size_h, size_v, pos_h, pos_v, pos_r }
end

-- file stuff too

drivers.install {
    name    = "lua",
    actions = {
        initialize = initialize,
        finalize   = finalize,
        fetch      = fetch,
        reset      = reset,
    },
    flushers = {
        character = flushcharacter,
        rule      = flushrule,
    }
}