parse.py

Fri, 18 Sep 2020 20:39:57 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Fri, 18 Sep 2020 20:39:57 +0300
changeset 124
09a44834c65a
parent 101
745f2c3aec0a
child 127
97de6058109e
permissions
-rw-r--r--

added moved test

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

mercurial