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
|
if not modules then modules = { } end modules ['blob-ini'] = {
version = 1.001,
comment = "companion to blob-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- This module is just a playground. Occasionally we need to typeset at the lua and and
-- this is one method. In principle we can construct pages this way too which sometimes
-- makes sense in dumb cases. Actually, if one only needs this, one does not really need
-- tex, okay maybe the parbuilder but that one can be simplified as well then.
-- set fonts, attributes
-- rest already done in packers etc
-- add local par whatsit (or wait till cleaned up)
-- collapse or new pars
-- interline spacing etc
-- blob.char
-- blob.line
-- blob.paragraph
-- blob.page
local type, tostring = type, tostring
local lpegmatch, lpegpatterns = lpeg.match, lpeg.patterns
local report_blobs = logs.reporter("blobs")
local flush_node_list = node.flush_list
local hpack_node_list = node.hpack
----- vpack_node_list = node.vpack
local write_node = node.write
local typesetters = nodes.typesetters
local tonodes = typesetters.tonodes
local tohpack = typesetters.tohpack
local tovpack = typesetters.tovpack
local implement = interfaces.implement
-- provide copies here (nicer for manuals)
blobs = blobs or { }
local blobs = blobs
blobs.tonodes = tonodes
blobs.tohpack = tohpack
blobs.tovpack = tovpack
-- end of helpers
local newline = lpeg.patterns.newline
local space = lpeg.patterns.spacer
local newpar = (space^0*newline*space^0)^2
local ctxtextcapture = lpeg.Ct ( ( space^0 * ( newpar + lpeg.Cs(((space^1/" " + 1)-newpar)^1) ) )^0)
function blobs.new()
return {
list = { },
}
end
function blobs.dispose(t)
local list = t.list
for i=1,#list do
local li = list[i]
local pack = li.pack
if pack then
flush_node_list(pack)
li.pack = nil
end
end
end
function blobs.append(t,str) -- compare concat and link
local typ = type(str)
local dummy = nil
if typ == "number" then
str = tostring(str)
typ = "string"
end
if typ == "string" then
local pars = lpegmatch(ctxtextcapture,str)
local list = t.list
for p=1,#pars do
local head, tail = tonodes(pars[p],nil,nil)
list[#list+1] = { head = head, tail = tail }
end
end
end
function blobs.pack(t,how)
local list = t.list
for i=1,#list do
local pack = list[i].pack
if pack then
flush_node_list(node.pack)
end
if how == "vertical" then
-- we need to prepend a local par node
-- list[i].pack = vpack_node_list(list[i].head,"exactly")
report_blobs("vpack not yet supported")
else
list[i].pack = hpack_node_list(list[i].head,"exactly")
end
end
end
function blobs.write(t)
local list = t.list
for i=1,#list do
local li = list[i]
local pack = li.pack
if pack then
write_node(pack)
flush_node_list(pack)
li.pack = nil
end
end
end
function blobs.dimensions(t)
local list = t.list
local first = list and list[1]
if first then
local pack = first.pack
return pack.width, pack.height, pack.depth
else
return 0, 0, 0
end
end
-- blob.char
-- blob.line: head, tail
-- blob.paragraph
-- blob.page
-- local lineblob = {
-- type = "line",
-- head = false,
-- tail = false,
-- pack = false,
-- properties = { },
-- end
-- local parblob = {
-- type = "line",
-- head = false,
-- tail = false,
-- pack = false,
-- properties = { },
-- end
-- for the moment here:
local function strwd(str)
local l = tohpack(str)
local w = l.width
flush_node_list(l)
return w
end
local function strht(str)
local l = tohpack(str)
local h = l.height
flush_node_list(l)
return h
end
local function strdp(str)
local l = tohpack(str)
local d = l.depth
flush_node_list(l)
return d
end
local function strhd(str)
local l = tohpack(str)
local s = l.height + l.depth
flush_node_list(l)
return s
end
blobs.strwd = strwd
blobs.strht = strht
blobs.strdp = strdp
blobs.strhd = strhd
-- upgraded
local dimension_code = tokens.values.dimension
local scan_hbox = tokens.scanners.hbox
local function action(field,what)
local l = scan_hbox()
local d = l[field]
flush_node_list(l)
if what == "value" then
return dimension_code, d
else
context("%p",d)
end
end
implement { name = "widthofstring", public = true, usage = "value", actions = function(w) return action("width", w) end }
implement { name = "heightofstring", public = true, usage = "value", actions = function(w) return action("height",w) end }
implement { name = "depthofstring", public = true, usage = "value", actions = function(w) return action("depth", w) end }
implement { name = "totalofstring", public = true, usage = "value", actions = function(w) return action("total", w) end }
|