home · contact · privacy
e806ef70f8c721386bf9cdeada5733fc57eea176
[plomrogue2] / plomrogue / mapping.py
1 import collections
2 from plomrogue.errors import ArgError
3
4
5
6 class YX(collections.namedtuple('YX', ('y', 'x'))):
7
8     def __add__(self, other):
9         return YX(self.y + other.y, self.x + other.x)
10
11     def __sub__(self, other):
12         return YX(self.y - other.y, self.x - other.x)
13
14     def __str__(self):
15         return 'Y:%s,X:%s' % (self.y, self.x)
16
17
18
19 class MapGeometry():
20
21     def __init__(self, size):
22         self.size = size
23         self.neighbors_i = {}
24
25     def get_directions(self):
26         directions = []
27         prefix = 'move__'
28         for name in dir(self):
29             if name[:len(prefix)] == prefix:
30                 directions += [name[len(prefix):]]
31         return directions
32
33     def get_neighbors_yxyx(self, yxyx):
34         neighbors = {}
35         for direction in self.get_directions():
36             neighbors[direction] = self.move_yxyx(yxyx, direction)
37         return neighbors
38
39     def get_neighbors_yx(self, pos):
40         neighbors = {}
41         for direction in self.get_directions():
42             neighbors[direction] = self.move_yx(pos, direction)
43         return neighbors
44
45     def get_neighbors_i(self, i):
46         if i in self.neighbors_i:
47             return self.neighbors_i[i]
48         pos = YX(i // self.size.x, i % self.size.x)
49         neighbors_pos = self.get_neighbors_yx(pos)
50         neighbors_i = {}
51         for direction in neighbors_pos:
52             pos = neighbors_pos[direction]
53             if pos is None:
54                 neighbors_i[direction] = None
55             else:
56                 neighbors_i[direction] = pos.y * self.size.x + pos.x
57         self.neighbors_i[i] = neighbors_i
58         return self.neighbors_i[i]
59
60     def move_yx(self, start_yx, direction, check=True):
61         mover = getattr(self, 'move__' + direction)
62         target = mover(start_yx)
63         # TODO refactor with SourcedMap.inside?
64         if target.y < 0 or target.x < 0 or \
65            target.y >= self.size.y or target.x >= self.size.x:
66             return None
67         return target
68
69     def move_yxyx(self, start_yxyx, direction):
70         mover = getattr(self, 'move__' + direction)
71         start_yx = self.undouble_yxyx(*start_yxyx)
72         target_yx = mover(start_yx)
73         return self.double_yx(target_yx)
74
75     def double_yx(self, absolute_yx):
76         big_y = absolute_yx.y // self.size.y
77         little_y = absolute_yx.y % self.size.y
78         big_x = absolute_yx.x // self.size.x
79         little_x = absolute_yx.x % self.size.x
80         return YX(big_y, big_x), YX(little_y, little_x)
81
82     def undouble_yxyx(self, big_yx, little_yx):
83         y = big_yx.y * self.size.y + little_yx.y
84         x = big_yx.x * self.size.x + little_yx.x
85         return YX(y, x)
86
87
88
89 class MapGeometryWithLeftRightMoves(MapGeometry):
90
91     def move__LEFT(self, start_pos):
92         return YX(start_pos.y, start_pos.x - 1)
93
94     def move__RIGHT(self, start_pos):
95         return YX(start_pos.y, start_pos.x + 1)
96
97
98
99 class MapGeometrySquare(MapGeometryWithLeftRightMoves):
100
101     def __init__(self, *args, **kwargs):
102         super().__init__(*args, **kwargs)
103         self.fov_map_class = FovMapSquare
104
105     def define_segment(self, source_center, radius):
106         source_center = self.undouble_yxyx(*source_center)
107         size = YX(2 * radius + 1, 2 * radius + 1)
108         offset = YX(source_center.y - radius, source_center.x - radius)
109         center = YX(radius, radius)
110         return size, offset, center
111
112     def move__UP(self, start_pos):
113         return YX(start_pos.y - 1, start_pos.x)
114
115     def move__DOWN(self, start_pos):
116         return YX(start_pos.y + 1, start_pos.x)
117
118
119 class MapGeometryHex(MapGeometryWithLeftRightMoves):
120
121     def __init__(self, *args, **kwargs):
122         super().__init__(*args, **kwargs)
123         self.fov_map_class = FovMapHex
124
125     def define_segment(self, source_center, radius):
126         source_center = self.undouble_yxyx(*source_center)
127         indent = 1 if (source_center.y % 2) else 0
128         size = YX(2 * radius + 1 + indent, 2 * radius + 1)
129         offset = YX(source_center.y - radius - indent, source_center.x - radius)
130         center = YX(radius + indent, radius)
131         return size, offset, center
132
133     def move__UPLEFT(self, start_pos):
134         start_indented = start_pos.y % 2
135         if start_indented:
136             return YX(start_pos.y - 1, start_pos.x)
137         else:
138             return YX(start_pos.y - 1, start_pos.x - 1)
139
140     def move__UPRIGHT(self, start_pos):
141         start_indented = start_pos.y % 2
142         if start_indented:
143             return YX(start_pos.y - 1, start_pos.x + 1)
144         else:
145             return YX(start_pos.y - 1, start_pos.x)
146
147     def move__DOWNLEFT(self, start_pos):
148         start_indented = start_pos.y % 2
149         if start_indented:
150             return YX(start_pos.y + 1, start_pos.x)
151         else:
152             return YX(start_pos.y + 1, start_pos.x - 1)
153
154     def move__DOWNRIGHT(self, start_pos):
155         start_indented = start_pos.y % 2
156         if start_indented:
157             return YX(start_pos.y + 1, start_pos.x + 1)
158         else:
159             return YX(start_pos.y + 1, start_pos.x)
160
161
162
163 class Map():
164
165     def __init__(self, map_geometry):
166         self.geometry = map_geometry
167         self.terrain = '.' * self.size_i
168
169     def __getitem__(self, yx):
170         return self.terrain[self.get_position_index(yx)]
171
172     def __setitem__(self, yx, c):
173         pos_i = self.get_position_index(yx)
174         if type(c) == str:
175             self.terrain = self.terrain[:pos_i] + c + self.terrain[pos_i + 1:]
176         else:
177             self.terrain[pos_i] = c
178
179     def __iter__(self):
180         """Iterate over YX position coordinates."""
181         for y in range(self.geometry.size.y):
182             for x in range(self.geometry.size.x):
183                 yield YX(y, x)
184
185     @property
186     def size_i(self):
187         return self.geometry.size.y * self.geometry.size.x
188
189     def set_line(self, y, line):
190         height_map = self.geometry.size.y
191         width_map = self.geometry.size.x
192         if y >= height_map:
193             raise ArgError('too large row number %s' % y)
194         width_line = len(line)
195         if width_line != width_map:
196             raise ArgError('map line width %s unequal map width %s' % (width_line, width_map))
197         self.terrain = self.terrain[:y * width_map] + line +\
198             self.terrain[(y + 1) * width_map:]
199
200     def get_position_index(self, yx):
201         return yx.y * self.geometry.size.x + yx.x
202
203     def lines(self):
204         width = self.geometry.size.x
205         for y in range(self.geometry.size.y):
206             yield (y, self.terrain[y * width:(y + 1) * width])
207
208
209
210 class SourcedMap(Map):
211
212     def __init__(self, things, source_maps, source_center, radius, get_map):
213         self.radius = radius
214         example_map = get_map(YX(0, 0))
215         self.source_geometry = example_map.geometry
216         size, self.offset, self.center = \
217             self.source_geometry.define_segment(source_center, radius)
218         self.geometry = self.source_geometry.__class__(size)
219         for yx in self:
220             big_yx, _ = self.source_yxyx(yx)
221             get_map(big_yx)
222         self.source_map_segment = ''
223         obstacles = {}
224         for yxyx in [t.position for t in things if t.blocking]:
225             if yxyx == source_center:
226                 continue
227             if yxyx[0] not in obstacles:
228                 obstacles[yxyx[0]] = []
229             obstacles[yxyx[0]] += [yxyx[1]]
230         for yx in self:
231             big_yx, little_yx = self.source_yxyx(yx)
232             if big_yx in obstacles and little_yx in obstacles[big_yx]:
233                 self.source_map_segment += 'X'
234             else:
235                 self.source_map_segment += source_maps[big_yx][little_yx]
236
237     def source_yxyx(self, yx):
238         absolute_yx = yx + self.offset
239         big_yx, little_yx = self.source_geometry.double_yx(absolute_yx)
240         return big_yx, little_yx
241
242     def target_yx(self, big_yx, little_yx, check=False):
243         target_yx = self.source_geometry.undouble_yxyx(big_yx, little_yx) - self.offset
244         if check and not self.inside(target_yx):
245             return False
246         return target_yx
247
248     def inside(self, yx):
249         if yx.y < 0 or yx.x < 0 or \
250            yx.y >= self.geometry.size.y or yx.x >= self.geometry.size.x:
251             return False
252         return True
253
254
255
256 class DijkstraMap(SourcedMap):
257
258     def __init__(self, *args, **kwargs):
259         super().__init__(*args, **kwargs)
260         self.terrain = [255] * self.size_i
261         self[self.center] = 0
262         shrunk = True
263         while shrunk:
264             shrunk = False
265             for i in range(self.size_i):
266                 if self.source_map_segment[i] in 'X=':
267                     continue
268                 neighbors = self.geometry.get_neighbors_i(i)
269                 for direction in [d for d in neighbors if neighbors[d]]:
270                     j = neighbors[direction]
271                     if self.terrain[j] < self.terrain[i] - 1:
272                         self.terrain[i] = self.terrain[j] + 1
273                         shrunk = True
274         # print('DEBUG Dijkstra')
275         # line_to_print = []
276         # x = 0
277         # for n in self.terrain:
278         #     line_to_print += ['%3s' % n]
279         #     x += 1
280         #     if x >= self.geometry.size.x:
281         #         x = 0
282         #         print(' '.join(line_to_print))
283         #         line_to_print = []
284
285
286
287 class FovMap(SourcedMap):
288     # TODO: player visibility asymmetrical (A can see B when B can't see A):
289     # does this make sense, or not?
290
291     def __init__(self, *args, **kwargs):
292         super().__init__(*args, **kwargs)
293         self.terrain = '?' * self.size_i
294         self[self.center] = '.'
295         self.shadow_cones = []
296         #self.circle_out(self.center, self.shadow_process)
297
298     def init_terrain(self):
299         # we outsource this to allow multiprocessing some stab at it,
300         # and return it since multiprocessing does not modify its
301         # processing sources
302         self.circle_out(self.center, self.shadow_process)
303         return self
304
305     def throws_shadow(self, yx):
306         return self.source_map_segment[self.get_position_index(yx)] == 'X'
307
308     def shadow_process(self, yx, distance_to_center, dir_i, dir_progress):
309         # Possible optimization: If no shadow_cones yet and self[yx] == '.',
310         # skip all.
311         CIRCLE = 360  # Since we'll float anyways, number is actually arbitrary.
312
313         def correct_arm(arm):
314             if arm > CIRCLE:
315                 arm -= CIRCLE
316             return arm
317
318         def in_shadow_cone(new_cone):
319             for old_cone in self.shadow_cones:
320                 if old_cone[0] <= new_cone[0] and \
321                    new_cone[1] <= old_cone[1]:
322                     return True
323                 # We might want to also shade tiles whose middle arm is inside a
324                 # shadow cone for a darker FOV. Note that we then could not for
325                 # optimization purposes rely anymore on the assumption that a
326                 # shaded tile cannot add growth to existing shadow cones.
327             return False
328
329         def merge_cone(new_cone):
330             import math
331             for old_cone in self.shadow_cones:
332                 if new_cone[0] < old_cone[0] and \
333                     (new_cone[1] > old_cone[0] or
334                      math.isclose(new_cone[1], old_cone[0])):
335                     old_cone[0] = new_cone[0]
336                     return True
337                 if new_cone[1] > old_cone[1] and \
338                     (new_cone[0] < old_cone[1] or
339                      math.isclose(new_cone[0], old_cone[1])):
340                     old_cone[1] = new_cone[1]
341                     return True
342             return False
343
344         def eval_cone(cone):
345             if in_shadow_cone(cone):
346                 return
347             self[yx] = '.'
348             if self.throws_shadow(yx):
349                 unmerged = True
350                 while merge_cone(cone):
351                     unmerged = False
352                 if unmerged:
353                     self.shadow_cones += [cone]
354
355         step_size = (CIRCLE / len(self.circle_out_directions)) / distance_to_center
356         number_steps = dir_i * distance_to_center + dir_progress
357         left_arm = correct_arm(step_size / 2 + step_size * number_steps)
358         right_arm = correct_arm(left_arm + step_size)
359
360         # Optimization potential: left cone could be derived from previous
361         # right cone. Better even: Precalculate all cones.
362         if right_arm < left_arm:
363             eval_cone([left_arm, CIRCLE])
364             eval_cone([0, right_arm])
365         else:
366             eval_cone([left_arm, right_arm])
367
368     def basic_circle_out_move(self, pos, direction):
369         mover = getattr(self.geometry, 'move__' + direction)
370         return mover(pos)
371
372     def circle_out(self, yx, f):
373         # Optimization potential: Precalculate movement positions. (How to check
374         # circle_in_map then?)
375         # Optimization potential: Precalculate what tiles are shaded by what tile
376         # and skip evaluation of already shaded tile. (This only works if tiles
377         # shading implies they completely lie in existing shades; otherwise we
378         # would lose shade growth through tiles at shade borders.)
379         distance = 1
380         yx = YX(yx.y, yx.x)
381         while distance <= self.radius:
382             yx = self.basic_circle_out_move(yx, 'RIGHT')
383             for dir_i in range(len(self.circle_out_directions)):
384                 for dir_progress in range(distance):
385                     direction = self.circle_out_directions[dir_i]
386                     yx = self.circle_out_move(yx, direction)
387                     f(yx, distance, dir_i, dir_progress)
388             distance += 1
389
390
391
392
393 class FovMapHex(FovMap):
394     circle_out_directions = ('DOWNLEFT', 'LEFT', 'UPLEFT',
395                              'UPRIGHT', 'RIGHT', 'DOWNRIGHT')
396
397     def circle_out_move(self, yx, direction):
398         return self.basic_circle_out_move(yx, direction)
399
400
401
402 class FovMapSquare(FovMap):
403     circle_out_directions = (('DOWN', 'LEFT'), ('LEFT', 'UP'),
404                              ('UP', 'RIGHT'), ('RIGHT', 'DOWN'))
405
406     def circle_out_move(self, yx, direction):
407         yx = self.basic_circle_out_move(yx, direction[0])
408         return self.basic_circle_out_move(yx, direction[1])