3
# ./svg_levels.py >svg_levels.lua
7
from lxml.cssselect import CSSSelector
9
print '-- autogenerated by svg_levels.py\n\nsvg_objects = {'
11
ns = {'svg': 'http://www.w3.org/2000/svg',
12
'ink': 'http://www.inkscape.org/namespaces/inkscape'}
16
for svg in glob.glob('data/*.svg'):
18
basefile = os.path.basename(svg).split('.')[0]
19
print '%s = {' % basefile
21
sel = CSSSelector('svg|rect[ink|label="displace"]', ns)
23
x, y = float(e.get('x')), float(e.get('y'))
24
w, h = float(e.get('width')), float(e.get('height'))
29
width = %f, height = %f
33
sel = CSSSelector('svg|rect[ink|label="transition"]', ns)
35
x, y = float(e.get('x')), float(e.get('y'))
36
w, h = float(e.get('width')), float(e.get('height'))
39
descSel = CSSSelector('svg|desc', ns)
46
width = %f, height = %f,
51
sel = CSSSelector('svg|rect[ink|label="flower"]', ns)
53
x, y = float(e.get('x')), float(e.get('y'))
61
sel = CSSSelector('svg|rect[ink|label="fish"]', ns)
63
x, y = float(e.get('x')), float(e.get('y'))
64
w, h = float(e.get('width')), float(e.get('height'))
69
width = %f, height = %f,
73
sel = CSSSelector('svg|rect[ink|label="flag"]', ns)
75
x, y = float(e.get('x')), float(e.get('y'))
76
w, h = float(e.get('width')), float(e.get('height'))
81
width = %f, height = %f,
85
sel = CSSSelector('svg|rect[ink|label="gatetrigger"]', ns)
87
x, y = float(e.get('x')), float(e.get('y'))
88
w, h = float(e.get('width')), float(e.get('height'))
93
width = %f, height = %f,
97
sel = CSSSelector('svg|rect[ink|label="troll"]', ns)
99
x, y = float(e.get('x')), float(e.get('y'))
100
#w, h = float(e.get('width')), float(e.get('height'))
112
sel = CSSSelector('svg|rect[ink|label="gateup"]', ns)
114
x, y = float(e.get('x')), float(e.get('y'))
115
w, h = float(e.get('width')), float(e.get('height'))
120
width = %f, height = %f,
121
fill = {108,57,22,255},
126
sel = CSSSelector('svg|rect[ink|label="gatedown"]', ns)
128
x, y = float(e.get('x')), float(e.get('y'))
129
w, h = float(e.get('width')), float(e.get('height'))
134
width = %f, height = %f,
135
fill = {108,57,22,255},