parse.py

Sat, 08 Jun 2019 01:51:50 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Sat, 08 Jun 2019 01:51:50 +0300
changeset 64
1c0884f5506e
parent 62
f0a6bf48b05e
child 65
f2dc17b830e0
child 69
a24c4490d9f2
permissions
-rw-r--r--

changed severity names to be better understood

2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
1 import linetypes
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
2 import re
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
3 from geometry import *
8
303c51137cb2 Added ldconfig.ldr support
Santeri Piippo
parents: 6
diff changeset
4 from colours import Colour
54
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
5 import header
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
6
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
7 class BadLdrawLine(Exception):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
8 pass
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
9
54
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
10 class Model:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
11 def __init__(self, header, body, *, ldraw_directories, header_size = 0):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
12 self.header = header
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
13 self.body = body
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
14 self.header_size = header_size
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
15 self.ldraw_directories = ldraw_directories
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
16 def filter_by_type(self, type):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
17 yield from [
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
18 element
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
19 for element in self.body
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
20 if isinstance(element, type)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
21 ]
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
22 @property
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
23 def subfile_references(self):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
24 yield from self.filter_by_type(linetypes.SubfileReference)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
25 @property
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
26 def line_segments(self):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
27 yield from self.filter_by_type(linetypes.LineSegment)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
28 @property
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
29 def triangles(self):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
30 yield from self.filter_by_type(linetypes.Triangle)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
31 @property
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
32 def quadrilaterals(self):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
33 yield from self.filter_by_type(linetypes.Quadrilateral)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
34 @property
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
35 def has_header(self):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
36 return self.header and not isinstance(self.header, header.BadHeader)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
37
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
38 def model_vertices(
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
39 model,
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
40 transformation_matrix = None,
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
41 file_cache = None,
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
42 ):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
43 if transformation_matrix is None:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
44 transformation_matrix = complete_matrix(Matrix3x3(), Vertex(0, 0, 0))
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
45 if file_cache is None:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
46 import filecache
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
47 file_cache = filecache.SubfileCache(model.ldraw_directories)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
48 for element in model.body:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
49 if isinstance(element, linetypes.BasePolygon):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
50 for point in element.geometry.vertices:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
51 yield point @ transformation_matrix
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
52 if isinstance(element, linetypes.ConditionalLine):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
53 for point in element.control_points:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
54 yield point @ transformation_matrix
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
55 if isinstance(element, linetypes.SubfileReference):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
56 subfile = file_cache.prepare_file(element.subfile_path)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
57 for point in subfile.vertices:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
58 matrix_4x4 = complete_matrix(element.matrix, element.anchor)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
59 point @= matrix_4x4
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
60 yield point @ transformation_matrix
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
61
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
62 def read_ldraw(file, *, ldraw_directories, name = ''):
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
63 model_body = [
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
64 parse_ldraw_code(line)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
65 for line in file
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
66 ]
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
67 headerparser = header.HeaderParser()
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
68 try:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
69 header_parse_result = headerparser.parse(model_body)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
70 header_object = header_parse_result['header']
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
71 end = header_parse_result['end-index']
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
72 except header.HeaderError as error:
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
73 header_object = header.BadHeader(error.index, error.reason)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
74 end = 0
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
75 model = Model(
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
76 header = header_object,
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
77 body = model_body,
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
78 header_size = end,
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
79 ldraw_directories = ldraw_directories)
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
80 model.name = name
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
81 return model
0c686d10eb49 added tests for moved-to files and scaling in flat dimensions
Teemu Piippo <teemu@hecknology.net>
parents: 47
diff changeset
82
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
83 def parse_ldraw_code(line):
38
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
84 try:
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
85 if isinstance(line, bytes):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
86 line = line.decode()
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
87 line = line.strip()
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
88 if not line:
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
89 return linetypes.EmptyLine()
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
90 elif line == '0':
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
91 return linetypes.MetaCommand('')
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
92 elif line.startswith('0 '):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
93 return parse_ldraw_meta_line(line)
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
94 elif line.startswith('1 '):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
95 return parse_ldraw_subfile_reference(line)
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
96 elif line.startswith('2 '):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
97 return parse_ldraw_line(line)
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
98 elif line.startswith('3 '):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
99 return parse_ldraw_triangle(line)
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
100 elif line.startswith('4 '):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
101 return parse_ldraw_quadrilateral(line)
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
102 elif line.startswith('5 '):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
103 return parse_ldraw_conditional_line(line)
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
104 else:
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
105 raise BadLdrawLine('unknown line type')
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
106 except BadLdrawLine as error:
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
107 return linetypes.Error(line, str(error))
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
108
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
109 def parse_ldraw_meta_line(line):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
110 if line.startswith('0 //'):
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
111 return linetypes.Comment(line[4:])
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
112 else:
38
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
113 return linetypes.MetaCommand(line[2:])
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
114
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
115 def parse_ldraw_subfile_reference(line):
3
1dc58f44d556 Can now write dat files, added direct color handling
Santeri Piippo
parents: 2
diff changeset
116 pattern = r'^1\s+([^ ]+)' + r'\s+([^ ]+)' * (3 + 9 + 1) + r'\s*$'
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
117 match = re.search(pattern, line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
118 if not match:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
119 raise BadLdrawLine('unable to parse')
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
120 groups = list(match.groups())
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
121 indices = {
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
122 'colour_index': 0,
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
123 'anchor': slice(1, 4),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
124 'matrix': slice(4, 13),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
125 'subfile_path': 13
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
126 }
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
127 try:
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
128 colour = Colour(groups[indices['colour_index']])
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
129 vertex_values = [float(x) for x in groups[indices['anchor']]]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
130 matrix_values = [float(x) for x in groups[indices['matrix']]]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
131 except ValueError:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
132 raise BadLdrawLine('bad numeric values')
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
133 return linetypes.SubfileReference(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
134 colour = colour,
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
135 anchor = Vertex(*vertex_values),
6
6da1e81c5652 Added code to compute areas of triangles and quadrilaterals
Santeri Piippo
parents: 4
diff changeset
136 matrix = Matrix3x3(matrix_values),
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
137 subfile_path = groups[indices['subfile_path']]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
138 )
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
139
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
140 def generic_parse_polygon(line, *, type_code, vertex_count):
35
865cd526e8b6 cleanup
Teemu Piippo <teemu@hecknology.net>
parents: 29
diff changeset
141 pattern = r'^' # matches the start of line
865cd526e8b6 cleanup
Teemu Piippo <teemu@hecknology.net>
parents: 29
diff changeset
142 pattern += str(type_code) # matches the type code
865cd526e8b6 cleanup
Teemu Piippo <teemu@hecknology.net>
parents: 29
diff changeset
143 pattern += '\s+([^ ]+)' # matches the colour
865cd526e8b6 cleanup
Teemu Piippo <teemu@hecknology.net>
parents: 29
diff changeset
144 pattern += r'\s+([^ ]+)' * (vertex_count * 3) # matches the vertices
865cd526e8b6 cleanup
Teemu Piippo <teemu@hecknology.net>
parents: 29
diff changeset
145 pattern += r'\s*$' # matches any trailing space
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
146 match = re.search(pattern, line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
147 if not match:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
148 raise BadLdrawLine(str.format('cannot parse type-{} line', type_code))
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
149 vertices = []
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
150 for vertex_index in range(vertex_count):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
151 slice_begin = 1 + vertex_index * 3
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
152 slice_end = 1 + (vertex_index + 1) * 3
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
153 coordinates = match.groups()[slice_begin:slice_end]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
154 assert(len(coordinates) == 3)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
155 try:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
156 coordinates = [float(x) for x in coordinates]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
157 except ValueError:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
158 raise BadLdrawLine('bad numeric values')
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
159 vertices.append(Vertex(*coordinates))
38
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
160 try:
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
161 colour = int(match.group(1), 0)
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
162 except ValueError:
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
163 raise BadLdrawLine('invalid syntax for colour: ' + repr(match.group(1)))
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
164 return {
38
66c9591b733d added proper handling of syntax errors
Teemu Piippo <teemu@hecknology.net>
parents: 35
diff changeset
165 'colour': Colour(colour),
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
166 'vertices': vertices,
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
167 }
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
168
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
169 def parse_ldraw_line(line):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
170 parse_result = generic_parse_polygon(line, type_code = 2, vertex_count = 2)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
171 return linetypes.LineSegment(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
172 colour = parse_result['colour'],
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
173 geometry = LineSegment(*parse_result['vertices']),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
174 )
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
175
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
176 def parse_ldraw_triangle(line):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
177 parse_result = generic_parse_polygon(line, type_code = 3, vertex_count = 3)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
178 return linetypes.Triangle(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
179 colour = parse_result['colour'],
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
180 geometry = Polygon(parse_result['vertices']),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
181 )
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
182
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
183 def parse_ldraw_quadrilateral(line):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
184 parse_result = generic_parse_polygon(line, type_code = 4, vertex_count = 4)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
185 return linetypes.Quadrilateral(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
186 colour = parse_result['colour'],
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
187 geometry = Polygon(parse_result['vertices']),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
188 )
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
189
35
865cd526e8b6 cleanup
Teemu Piippo <teemu@hecknology.net>
parents: 29
diff changeset
190 def parse_ldraw_conditional_line(line):
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
191 parse_result = generic_parse_polygon(line, type_code = 5, vertex_count = 4)
35
865cd526e8b6 cleanup
Teemu Piippo <teemu@hecknology.net>
parents: 29
diff changeset
192 return linetypes.ConditionalLine(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
193 colour = parse_result['colour'],
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
194 geometry = LineSegment(*parse_result['vertices'][0:2]),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
195 control_points = parse_result['vertices'][2:],
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
196 )

mercurial