summaryrefslogtreecommitdiff
path: root/tex/context/modules/mkiv/m-steps.lua
blob: bbc267274ae003bfbe7fa77d6eae906f899be285 (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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
if not modules then modules = { } end modules ['x-flow'] = {
    version   = 1.001,
    comment   = "companion to m-flow.mkvi",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

-- when we can resolve mpcolor at the lua end we will use metapost.graphic(....) directly

local tonumber = tonumber

moduledata.steps = moduledata.steps or { }

local context    = context
local variables  = interfaces.variables
local formatters = string.formatters
----- mpcolor    = attributes.colors.mpnamedcolor
local concat     = table.concat

local report     = logs.reporter("stepcharts")
local trace      = false

trackers.register("stepcharts",function(v) trace = v end)

local defaults = {
    chart = {
        dx              = 10*65436,
        dy              = 10*65436,
    },
    cell = {
        alternative     = 1,
        offset          = 2*65436,
        rulethickness   = 65436,
        framecolor      = "blue",
        backgroundcolor = "gray",
    },
    text = {
        alternative     = 1,
        offset          = 2*65436,
        distance        = 4*65436,
        rulethickness   = 65436,
        framecolor      = "red",
        backgroundcolor = "gray",
    },
    line = {
        alternative     = 1,
        rulethickness   = 65436,
        height          = 30*65436,
        distance        = 10*65436,
        offset          = 5*65436,
        color           = "green",
    },
}

-- todo : name (no name then direct)
-- maybe: includes
-- maybe: flush ranges

local charts = { } -- not used but we could support nesting
local chart  = nil
local steps  = { }
local count  = 0

local function step_start_chart(name,alternative)
    name = name or ""
    steps = table.setmetatableindex(function(t,k)
        local v = { -- could be metatable
            cell_top = false,
            cell_bot = false,
            text_top = false,
            text_mid = false,
            text_bot = false,
            start_t  = k,
            start_m  = k,
            start_b  = k,
            cell_ali = false,
        }
        t[k] = v
        return v
    end)
    count = 0
    chart = {
        steps       = steps,
        count       = count,
        alternative = alternative,
    }
    charts[name] = chart
end

local function step_stop_chart()
    chart.count = count
end

local function step_make_chart(settings)
    local chartsettings = settings.chart
    if not chartsettings then
        if trace then
            report("no chart")
        end
        return
    end
    local chartname = chartsettings.name
    if not chartname then
        if trace then
            report("no name given")
        end
        return
    end
    local chart = charts[chartname]
    if not chart then
        if trace then
            report("no such chart: %s",chartname)
        end
        return
    end
    local steps = chart.steps or { }
    --
    table.setmetatableindex(settings,defaults)
    --
    if trace then
        report(table.serialize(steps,"chartdata"))
    end
    --
    local textsettings = settings.text
    local cellsettings = settings.cell
    local linesettings = settings.line

    local start = nil
    local stop  = nil
    local flush = nil

    if false then

        -- some 2% faster at most, so neglectable as this kind of graphics
        -- is hardly used in quantity but it saves mem and tokens in tracing
        -- and we lose some aspects, like outer color and so (currently)

        local mpcode = false

        start = function()
            mpcode = { }
        end
        stop = function()
            local code = concat(mpcode,"\n")
         -- print(code)
            metapost.graphic {
             -- instance        = "metafun",
                instance        = "steps",
                format          = "metafun",
                data            = code,
             -- initializations = "",
             -- extensions      = "",
             -- inclusions      = "",
                definitions     = 'loadmodule "step" ;',
             -- figure          = "",
                method          = "double",
            }
            mpcode = false
        end
        flush = function(fmt,first,...)
            if first then
                mpcode[#mpcode+1] = formatters[fmt](first,...)
            else
                mpcode[#mpcode+1] = fmt
            end
        end

    else

        start = function() context.startMPcode("steps") end
        stop  = context.stopMPcode
        flush = context

    end
    --
    start()
    flush("step_begin_chart ;")
    --
    local alternative = chartsettings.alternative
    if not alternative or alternative == "" then
        alternative = chart.alternative
    end
    if not alternative or alternative == "" then
        alternative = variables.horizontal
    end
    local alternative = utilities.parsers.settings_to_hash(alternative)
    local vertical    = alternative[variables.vertical]
    local align       = alternative[variables.three]
    local category    = chartsettings.category
    --
    flush('chart_category := "%s" ;',category)
    --
    if vertical then
        flush("chart_vertical := true ;")
    end
    if align then
        flush("chart_align := true ;")
    end
    --
    flush("text_line_color   := %q ;", textsettings.framecolor)
    flush("text_line_width   := %p ;", textsettings.rulethickness)
    flush("text_fill_color   := %q ;", textsettings.backgroundcolor)
    flush("text_offset       := %p ;", textsettings.offset)
    flush("text_distance_set := %p ;", textsettings.distance)
    --
    flush("cell_line_color := %q ;", cellsettings.framecolor)
    flush("cell_line_width := %p ;", cellsettings.rulethickness)
    flush("cell_fill_color := %q ;", cellsettings.backgroundcolor)
    flush("cell_offset     := %p ;", cellsettings.offset)
    flush("cell_distance_x := %p ;", cellsettings.dx)
    flush("cell_distance_y := %p ;", cellsettings.dy)
    --
    flush("line_line_color := %q ;", linesettings.color)
    flush("line_line_width := %p ;", linesettings.rulethickness)
    flush("line_distance   := %p ;", linesettings.distance)
    flush("line_offset     := %p ;", linesettings.offset)
    flush("line_height     := %p ;", linesettings.height)
    --
    for i=1,chart.count do
        local step = steps[i]
        flush("step_begin_cell ;")
        local ali = step.cell_ali
        local top = step.cell_top
        local bot = step.cell_bot
        if ali then
            local text = ali.text
            local shape = ali.shape
            flush('step_cell_ali(%s,%s,%s,%q,%q,%p,%i) ;',
                tonumber(text.left) or 0,
                tonumber(text.middle) or 0,
                tonumber(text.right) or 0,
                shape.framecolor,
                shape.backgroundcolor,
                shape.rulethickness,
                tonumber(shape.alternative) or 24
            )
        end
        if top then
            local shape = top.shape
            flush('step_cell_top(%s,%q,%q,%p,%i) ;',
                tonumber(top.text.top) or 0,
                shape.framecolor,
                shape.backgroundcolor,
                shape.rulethickness,
                tonumber(shape.alternative) or 24
            )
        end
        if bot then
            local shape = bot.shape
            flush('step_cell_bot(%s,%q,%q,%p,%i) ;',
                tonumber(bot.text.bot) or 0,
                shape.framecolor,
                shape.backgroundcolor,
                shape.rulethickness,
                tonumber(shape.alternative) or 24
            )
        end
        local top = step.text_top
        local mid = step.text_mid
        local bot = step.text_bot
        local s_t = step.start_t
        local s_m = step.start_m
        local s_b = step.start_b
        if top then
            local shape = top.shape
            local line  = top.line
            flush('step_text_top(%s,%q,%q,%p,%i,%q,%p,%i) ;',
                tonumber(top.text.top) or 0,
                shape.framecolor,
                shape.backgroundcolor,
                shape.rulethickness,
                tonumber(shape.alternative) or 24,
                line.color,
                line.rulethickness,
                tonumber(line.alternative) or 1
            )
        end
        if mid then -- used ?
            local shape = mid.shape
            local line  = mid.line
            flush('step_text_mid(%s,%q,%q,%p,%i,%q,%p,%i) ;',
                tonumber(mid.text.mid) or 0,
                shape.framecolor,
                shape.backgroundcolor,
                shape.rulethickness,
                tonumber(shape.alternative) or 24,
                line.color,
                line.rulethickness,
                tonumber(line.alternative) or 1
            )
        end
        if bot then
            local shape = bot.shape
            local line  = bot.line
            flush('step_text_bot(%s,%q,%q,%p,%i,%q,%p,%i) ;',
                tonumber(bot.text.bot) or 0,
                shape.framecolor,
                shape.backgroundcolor,
                shape.rulethickness,
                tonumber(shape.alternative) or 24,
                line.color,
                line.rulethickness,
                tonumber(line.alternative) or 1
            )
        end
        flush('start_t[%i] := %i ;',i,s_t)
        flush('start_m[%i] := %i ;',i,s_m)
        flush('start_b[%i] := %i ;',i,s_b)
        flush("step_end_cell ;")
    end
    --
    flush("step_end_chart ;")
    stop()
end

local function step_cells(spec)
    count = count + 1
    local step = steps[count]
    step.cell_top = spec
    step.cell_bot = spec
end

local function step_cells_three(spec)
    count = count + 1
    local step = steps[count]
    step.cell_ali = spec
end

local function step_texts(spec)
    if count > 0 then
        local step = steps[count]
        step.text_top = spec
        step.text_bot = spec
    end
end

local function step_cell(spec)
    count = count + 1
    steps[count].cell_top = spec
end

local function step_text(spec)
    if count > 0 then
        local c = count
        while true do
            local step = steps[c]
            if step.text_top then
                c = c + 1
                step = steps[c]
            else
                step.text_top = spec
                step.start_b  = count
                break
            end
        end
    end
end

local function step_start_cell()
    count = count + 1
    local step = steps[count] -- creates
end

local function step_stop_cell()
end

local function step_text_top(spec)
    if count > 0 then
        steps[count].text_top = spec
    end
end

local function step_text_mid(spec)
    if count > 0 then
        steps[count].text_mid = spec
    end
end

local function step_text_bot(spec)
    if count > 0 then
        steps[count].text_bot = spec
    end
end

local function step_cell_top(spec)
    if count > 0 then
        steps[count].cell_top = spec
    end
end

local function step_cell_bot(spec)
    if count > 0 then
        steps[count].cell_bot = spec
    end
end

--

interfaces.implement {
    name      = "step_start_chart",
    arguments = "2 strings",
    actions   = step_start_chart,
}

interfaces.implement {
    name      = "step_stop_chart",
    actions   = step_stop_chart,
}

interfaces.implement {
    name      = "step_make_chart",
    actions   = step_make_chart,
    arguments = {
        {
            { "chart", {
                    { "category" },
                    { "name" },
                    { "alternative" },
                }
            },
            { "cell", {
                { "alternative" },
                { "offset", "dimension" },
                { "rulethickness", "dimension" },
                { "framecolor" },
                { "backgroundcolor" },
                { "dx", "dimension" },
                { "dy", "dimension" },
                }
            },
            { "text", {
                { "alternative" },
                { "offset", "dimension" },
                { "distance", "dimension" },
                { "rulethickness", "dimension" },
                { "framecolor" },
                { "backgroundcolor" },
                }
            },
            { "line", {
                { "alternative" },
                { "rulethickness", "dimension" },
                { "height", "dimension" },
                { "distance", "dimension" },
                { "offset", "dimension" },
                { "color" },
                }
            }
        }
    }
}

local step_spec = {
    {
        { "text", {
                { "top" },
                { "middle" },
                { "mid" },
                { "bot" },
                { "left" },
                { "right" },
            }
        },
        { "shape", {
                { "rulethickness", "dimension" },
                { "alternative" },
                { "framecolor" },
                { "backgroundcolor" },
            }
        },
        { "line", {
                { "alternative" },
                { "rulethickness", "dimension" },
                { "color" },
                { "offset", "dimension" },
            }
        }
    }
}

interfaces.implement {
    name      = "step_cell",
    arguments = step_spec,
    actions   = step_cell,
}

interfaces.implement {
    name      = "step_text",
    arguments = step_spec,
    actions   = step_text,
}

interfaces.implement {
    name      = "step_text_top",
    arguments = step_spec,
    actions   = step_text_top,
}

interfaces.implement {
    name      = "step_text_mid",
    arguments = step_spec,
    actions   = step_text_mid,
}

interfaces.implement {
    name      = "step_text_bot",
    arguments = step_spec,
    actions   = step_text_bot,
}

interfaces.implement {
    name      = "step_cell_top",
    arguments = step_spec,
    actions   = step_cell_top,
}

interfaces.implement {
    name      = "step_cell_bot",
    arguments = step_spec,
    actions   = step_cell_bot,
}

interfaces.implement {
    name      = "step_start_cell",
    actions   = step_start_cell,
}

interfaces.implement {
    name      = "step_stop_cell",
    actions   = step_stop_cell,
}

interfaces.implement {
    name      = "step_texts",
    arguments = step_spec,
    actions   = step_texts,
}

interfaces.implement {
    name      = "step_cells",
    arguments = step_spec,
    actions   = step_cells,
}

interfaces.implement {
    name      = "step_cells_three",
    arguments = step_spec,
    actions   = step_cells_three,
}