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
|
if not modules then modules = { } end modules ['node-typ'] = {
version = 1.001,
comment = "companion to node-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local utfvalues = utf.values
local currentfont = font.current
local fontparameters = fonts.hashes.parameters
local hpack = node.hpack
local vpack = node.vpack
local fast_hpack = nodes.fasthpack
local nodepool = nodes.pool
local newglyph = nodepool.glyph
local newglue = nodepool.glue
typesetters = typesetters or { }
local function tonodes(str,fontid,spacing) -- quick and dirty
local head, prev = nil, nil
if not fontid then
fontid = currentfont()
end
local fp = fontparameters[fontid]
local s, p, m
if spacing then
s, p, m = spacing, 0, 0
else
s, p, m = fp.space, fp.space_stretch, fp,space_shrink
end
local spacedone = false
for c in utfvalues(str) do
local next
if c == 32 then
if not spacedone then
next = newglue(s,p,m)
spacedone = true
end
else
next = newglyph(fontid or 1,c)
spacedone = false
end
if not next then
-- nothing
elseif not head then
head = next
else
prev.next = next
next.prev = prev
end
prev = next
end
return head
end
typesetters.tonodes = tonodes
function typesetters.hpack(str,fontid,spacing)
return hpack(tonodes(str,fontid,spacing),"exactly")
end
function typesetters.fast_hpack(str,fontid,spacing)
return fast_hpack(tonodes(str,fontid,spacing),"exactly")
end
function typesetters.vpack(str,fontid,spacing)
-- vpack is just a hack, and a proper implentation is on the agenda
-- as it needs more info etc than currently available
return vpack(tonodes(str,fontid,spacing))
end
--~ node.write(typesetters.hpack("Hello World!"))
--~ node.write(typesetters.hpack("Hello World!",1,100*1024*10))
|