blob: 24e58cee51bb17972c198ae13a32e3d1766440f2 [file] [log] [blame]
reed86217d82014-10-25 20:44:40 -07001function tostr(t)
2 local str = ""
3 for k, v in next, t do
4 if #str > 0 then
5 str = str .. ", "
6 end
7 if type(k) == "number" then
8 str = str .. "[" .. k .. "] = "
9 else
10 str = str .. tostring(k) .. " = "
11 end
12 if type(v) == "table" then
13 str = str .. "{ " .. tostr(v) .. " }"
14 elseif type(v) == "string" then
15 str = str .. '"' .. v .. '"'
16 else
17 str = str .. tostring(v)
18 end
19 end
20 return str
21end
22
23function trim_ws(s)
24 return s:match("^%s*(.*)")
25end
26
27function count_hypens(s)
28 local leftover = s:match("^-*(.*)")
29 return string.len(s) - string.len(leftover)
30end
31
reed86217d82014-10-25 20:44:40 -070032function pretty_print_slide(slide)
33 io.write("{\n")
reed07dada72014-10-29 20:36:05 -070034 if slide.transition then
35 io.write(" transition = \"", slide.transition, "\",\n")
36 end
reed86217d82014-10-25 20:44:40 -070037 for i = 1, #slide do
38 local node = slide[i]
39 for j = 0, node.indent do
40 io.write(" ")
41 end
42 io.write("{ ")
43 io.write(tostr(node))
44 io.write(" },\n")
45 end
46 io.write("},\n")
47end
48
49function pretty_print_slides(slides)
50 io.write("gSlides = {\n")
51 for i = 1, #slides do
52 pretty_print_slide(slides[i])
53 end
54 io.write("}\n")
55end
56
reed07dada72014-10-29 20:36:05 -070057function parse_transition_type(s)
58 return s:match("^<%s*transition%s*=%s*(%a+)%s*>$")
59end
60
reedde330ff2014-11-02 19:19:34 -080061function parse_blockstyle_type(s)
62 return s:match("^<%s*blockstyle%s*=%s*(%a+)%s*>$")
63end
64
reed07dada72014-10-29 20:36:05 -070065function parse_file(file)
66 local slides = {}
67 local block = {}
68
69 for line in file:lines() do
70 local s = trim_ws(line)
71 if #s == 0 then -- done with a block
72 if #block > 0 then
73 slides[#slides + 1] = block
74 block = {}
75 end
76 else
77 local transition_type = parse_transition_type(s)
reedde330ff2014-11-02 19:19:34 -080078 local blockstyle = parse_blockstyle_type(s)
reed07dada72014-10-29 20:36:05 -070079 if transition_type then
80 block["transition"] = transition_type
reedde330ff2014-11-02 19:19:34 -080081 elseif blockstyle then
82 block["blockstyle"] = blockstyle
reed07dada72014-10-29 20:36:05 -070083 else
reedde330ff2014-11-02 19:19:34 -080084 if block.blockstyle == "code" then
85 block[#block + 1] = { text = line }
86 else
87 local n = count_hypens(s)
88 block[#block + 1] = {
89 indent = n,
90 text = trim_ws(s:sub(n + 1, -1))
91 }
92 end
reed07dada72014-10-29 20:36:05 -070093 end
94 end
95 end
96-- pretty_print_slides(slides)
97 return slides
98end
99