blob: a0b42b4425883da30f879024902a495e2e46f03a [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
61function parse_file(file)
62 local slides = {}
63 local block = {}
64
65 for line in file:lines() do
66 local s = trim_ws(line)
67 if #s == 0 then -- done with a block
68 if #block > 0 then
69 slides[#slides + 1] = block
70 block = {}
71 end
72 else
73 local transition_type = parse_transition_type(s)
74 if transition_type then
75 block["transition"] = transition_type
76 else
77 local n = count_hypens(s)
78 block[#block + 1] = {
79 indent = n,
80 text = trim_ws(s:sub(n + 1, -1))
81 }
82 end
83 end
84 end
85-- pretty_print_slides(slides)
86 return slides
87end
88