/ld26

To get this branch, use:
bzr branch /bzr/ld26

« back to all changes in this revision

Viewing changes to svg_levels.py

  • Committer: Josh C
  • Date: 2013-04-29 00:08:20 UTC
  • Revision ID: josh@9ix.org-20130429000820-bth2m0z5q94drdxn
fairy

Show diffs side-by-side

added added

removed removed

11
11
ns = {'svg': 'http://www.w3.org/2000/svg',
12
12
      'ink': 'http://www.inkscape.org/namespaces/inkscape'}
13
13
 
14
 
other = ''
 
14
gate = ''
15
15
 
16
16
for svg in glob.glob('data/*.svg'):
17
17
    t = etree.parse(svg)
30
30
},
31
31
""" % (x,y,w,h)
32
32
 
33
 
    sel = CSSSelector('svg|rect[ink|label="maybedisplace"]', ns)
34
 
    for e in sel(t):
35
 
        x, y = float(e.get('x')), float(e.get('y'))
36
 
        w, h = float(e.get('width')), float(e.get('height'))
37
 
 
38
 
        print """
39
 
MaybeDisplacer:new{
40
 
  x = %f, y = %f,
41
 
  width = %f, height = %f
42
 
},
43
 
""" % (x,y,w,h)
44
 
 
45
33
    sel = CSSSelector('svg|rect[ink|label="transition"]', ns)
46
34
    for e in sel(t):
47
35
        x, y = float(e.get('x')), float(e.get('y'))
128
116
},
129
117
""" % (x,y,w,h)
130
118
 
131
 
    sel = CSSSelector('svg|rect[ink|label="fairyactivator"]', ns)
132
 
    for e in sel(t):
133
 
        x, y = float(e.get('x')), float(e.get('y'))
134
 
        w, h = float(e.get('width')), float(e.get('height'))
135
 
 
136
 
        print """
137
 
FairyActivator:new{
138
 
  x = %f, y = %f,
139
 
  width = %f, height = %f,
140
 
},
141
 
""" % (x,y,w,h)
142
 
 
143
 
    sel = CSSSelector('svg|rect[ink|label="boat"]', ns)
144
 
    for e in sel(t):
145
 
        x, y = float(e.get('x')), float(e.get('y'))
146
 
        #w, h = float(e.get('width')), float(e.get('height'))
147
 
 
148
 
        print """
149
 
Boat:new{
150
 
  x = %f, y = %f,
151
 
},
152
 
""" % (x,y)
153
 
 
154
119
    sel = CSSSelector('svg|rect[ink|label="troll"]', ns)
155
120
    for e in sel(t):
156
121
        x, y = float(e.get('x')), float(e.get('y'))
171
136
        x, y = float(e.get('x')), float(e.get('y'))
172
137
        w, h = float(e.get('width')), float(e.get('height'))
173
138
 
174
 
        other = other + """
 
139
        gate = gate + """
175
140
gateup = Fill:new{
176
141
  x = %f, y = %f,
177
142
  width = %f, height = %f,
185
150
        x, y = float(e.get('x')), float(e.get('y'))
186
151
        w, h = float(e.get('width')), float(e.get('height'))
187
152
 
188
 
        other = other + """
 
153
        gate = gate + """
189
154
gatedown = Fill:new{
190
155
  x = %f, y = %f,
191
156
  width = %f, height = %f,
194
159
}
195
160
""" % (x,y,w,h)
196
161
 
197
 
    sel = CSSSelector('svg|rect[ink|label="fairytarget"]', ns)
198
 
    for e in sel(t):
199
 
        x, y = float(e.get('x')), float(e.get('y'))
200
 
        w, h = float(e.get('width')), float(e.get('height'))
201
 
 
202
 
        other = other + """
203
 
fairytarget = Sprite:new{
204
 
  x = %f, y = %f,
205
 
  width = %f, height = %f,
206
 
  visible = false
207
 
}
208
 
""" % (x,y,w,h)
209
 
 
210
162
 
211
163
print '}'
212
164
 
213
 
print other
 
165
print gate