parse.py

Tue, 12 Dec 2017 13:46:17 +0200

author
Santeri Piippo
date
Tue, 12 Dec 2017 13:46:17 +0200
changeset 5
e340e35d6e4c
parent 4
8eb83f200486
child 6
6da1e81c5652
permissions
-rw-r--r--

Added vertex operators

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 *
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
4 from ldraw import Colour
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
5
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
6 class BadLdrawLine(Exception):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
7 pass
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
8
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
9 def parse_ldraw_code(line):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
10 line = line.strip()
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
11 if not line:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
12 return linetypes.EmptyLine()
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
13 elif line == '0':
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
14 return linetypes.Comment('')
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
15 elif line.startswith('0 '):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
16 return linetypes.Comment(line[2:].strip())
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
17 elif line.startswith('1 '):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
18 return parse_ldraw_subfile_reference(line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
19 elif line.startswith('2 '):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
20 return parse_ldraw_line(line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
21 elif line.startswith('3 '):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
22 return parse_ldraw_triangle(line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
23 elif line.startswith('4 '):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
24 return parse_ldraw_quadrilateral(line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
25 elif line.startswith('5 '):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
26 return parse_ldraw_contour(line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
27 else:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
28 raise BadLdrawLine('unknown line type')
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
29
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
30 def parse_ldraw_subfile_reference(line):
3
1dc58f44d556 Can now write dat files, added direct color handling
Santeri Piippo
parents: 2
diff changeset
31 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
32 match = re.search(pattern, line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
33 if not match:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
34 raise BadLdrawLine('unable to parse')
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
35 groups = list(match.groups())
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
36 indices = {
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
37 'colour_index': 0,
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
38 'anchor': slice(1, 4),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
39 'matrix': slice(4, 13),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
40 'subfile_path': 13
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
41 }
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
42 try:
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
43 colour = Colour(groups[indices['colour_index']])
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
44 vertex_values = [float(x) for x in groups[indices['anchor']]]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
45 matrix_values = [float(x) for x in groups[indices['matrix']]]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
46 except ValueError:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
47 raise BadLdrawLine('bad numeric values')
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
48 return linetypes.SubfileReference(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
49 colour = colour,
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
50 anchor = Vertex(*vertex_values),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
51 matrix = TransformationMatrix(matrix_values),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
52 subfile_path = groups[indices['subfile_path']]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
53 )
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
54
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
55 def generic_parse_polygon(line, *, type_code, vertex_count):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
56 pattern = r'^' \
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
57 + str(type_code) \
3
1dc58f44d556 Can now write dat files, added direct color handling
Santeri Piippo
parents: 2
diff changeset
58 + '\s+([^ ]+)' \
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
59 + r'\s+([^ ]+)' * (vertex_count * 3) \
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
60 + r'\s*$'
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
61 match = re.search(pattern, line)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
62 if not match:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
63 raise BadLdrawLine(str.format('cannot parse type-{} line', type_code))
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
64 vertices = []
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
65 for vertex_index in range(vertex_count):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
66 slice_begin = 1 + vertex_index * 3
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
67 slice_end = 1 + (vertex_index + 1) * 3
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
68 coordinates = match.groups()[slice_begin:slice_end]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
69 assert(len(coordinates) == 3)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
70 try:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
71 coordinates = [float(x) for x in coordinates]
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
72 except ValueError:
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
73 raise BadLdrawLine('bad numeric values')
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
74 vertices.append(Vertex(*coordinates))
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
75 return {
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
76 'colour': Colour(match.group(1)),
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
77 'vertices': vertices,
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
78 }
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
79
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
80 def parse_ldraw_line(line):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
81 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
82 return linetypes.LineSegment(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
83 colour = parse_result['colour'],
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
84 geometry = LineSegment(*parse_result['vertices']),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
85 )
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
86
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
87 def parse_ldraw_triangle(line):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
88 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
89 return linetypes.Triangle(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
90 colour = parse_result['colour'],
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
91 geometry = Polygon(parse_result['vertices']),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
92 )
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
93
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
94 def parse_ldraw_quadrilateral(line):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
95 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
96 return linetypes.Quadrilateral(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
97 colour = parse_result['colour'],
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
98 geometry = Polygon(parse_result['vertices']),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
99 )
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
100
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
101 def parse_ldraw_contour(line):
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
102 parse_result = generic_parse_polygon(line, type_code = 5, vertex_count = 4)
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
103 return linetypes.Contour(
4
8eb83f200486 color -> colour
Santeri Piippo
parents: 3
diff changeset
104 colour = parse_result['colour'],
2
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
105 geometry = LineSegment(*parse_result['vertices'][0:2]),
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
106 control_points = parse_result['vertices'][2:],
50d3086070df Moved the parsing function into a new file
Santeri Piippo
parents:
diff changeset
107 )

mercurial