Restructure pret-lam.
[matthijs/master-project/report.git] / pret-lam.lua
1 -- filename : type-lam.lua
2 -- comment  : Pretty printing of (extended) lambda calculus
3 -- author   : Matthijs Kooijman, Universiteit Twente, NL
4 -- copyright: Matthijs Kooijman
5 -- license  : None
6
7 local utf = unicode.utf8
8
9 if not buffers                 then buffers                 = { } end
10 if not buffers.visualizers     then buffers.visualizers     = { } end
11 if not buffers.visualizers.lam then buffers.visualizers.lam = { } end
12
13 buffers.visualizers.lam.colors = {
14     "prettytwo",
15     "prettyone",
16     "prettythree",
17     "prettyfour"
18 }
19
20 buffers.visualizers.lam.symbols = {
21     [' '] = {repr = '\\obs '},
22     ['_'] = {repr = '\\_'},
23     ['->'] = {repr = '\\rightarrow'},
24     -- The default * sits very high above the baseline, \ast (u+2217) looks
25     -- better.
26     ['*'] = {repr = '\\ast'},
27 }
28
29 buffers.visualizers.lam.keywords = {
30     ['case'] = {},
31     ['of'] = {},
32     ['let'] = {},
33     ['in'] = {},
34 }
35
36
37 function buffers.visualizers.lam.take_symbol(str)
38     -- See if str starts with a symbol, and return the remaining
39     -- string and that symbol. If no symbol from the table is matched,
40     -- just returns the first character.
41     -- We can do a lookup directly, since symbols can be different in
42     -- length, so we just loop over all symbols, trying them in turn.
43     for symbol,props in pairs(buffers.visualizers.lam.symbols) do
44         -- Try to remove symbol from the start of str 
45         symbol, newstr = utf.match(str, "^(" .. symbol .. ")(.*)")
46         if symbol then
47             -- Return this tokens repr, or just the token if it has no
48             -- repr.
49             res = props.repr or symbol
50             -- Enclose the token in {\style .. }
51             if props.style then
52                 res = "{\\" .. props.style ..  " " .. res ..  "}"
53             end
54             return res, newstr
55         end
56     end
57     -- No symbol found, just return the first character
58     return utf.match(str, "^(.)(.*)")
59 end
60
61 -- Take a single word from str, if posible. Returns the rest of the string and
62 -- the word taken.
63 function buffers.visualizers.lam.take_word(str)
64         res, newstr = utf.match(str, "^(%a+)(.*)")
65         return res, newstr or str
66 end
67
68 function buffers.visualizers.lam.flush_line(str,nested)
69     local result, state = { }, 0
70     local finish, change = buffers.finish_state, buffers.change_state
71     local take_symbol = buffers.visualizers.lam.take_symbol
72     local take_word = buffers.visualizers.lam.take_word
73     -- Set the colorscheme, which is used by finish_state and change_state
74     buffers.currentcolors = buffers.visualizers.lam.colors
75
76     while str ~= "" do
77         local found = false
78         local res
79         -- See if the next token is a word
80         res, str = take_word(str)
81         if res then
82             if buffers.visualizers.lam.keywords[res] then
83                 -- Make all keywors bold
84                 res = "{\\bold " .. res ..  "}"
85             end
86             -- All other words are unmodified
87         else
88             -- The next token is not a word, it must be a symbol
89             res, str = take_symbol(str)
90         end
91
92         -- Append the resulting token
93         result[#result+1] = res
94     end
95
96     state = finish(state, result)
97     buffers.flush_result(result,nested)
98 end
99
100 -- vim: set sw=4 sts=4 expandtab ai: