+class SourcedMap(Map):
+
+ def __init__(self, source_map, source_center, radius):
+ self.source_map = source_map
+ self.radius = radius
+ self.size, self.offset, self.center = \
+ self.geometry_class.define_segment(None, source_center, radius)
+ self.geometry = self.geometry_class(self.size)
+
+ def source_yx(self, yx, check=False):
+ source_yx = yx + self.offset
+ if check and not self.source_map.inside(source_yx):
+ return False
+ return source_yx
+
+ def target_yx(self, yx, check=False):
+ target_yx = yx - self.offset
+ if check and not self.inside(target_yx):
+ return False
+ return target_yx
+
+
+
+class DijkstraMap(SourcedMap):
+
+ def __init__(self, *args, **kwargs):
+ super().__init__(*args, **kwargs)
+ self.terrain = [255] * self.size_i
+ self[self.center] = 0
+ shrunk = True
+ source_map_segment = ''
+ for yx in self:
+ yx_in_source = self.source_yx(yx, True)
+ if yx_in_source:
+ source_map_segment += self.source_map[yx_in_source]
+ else:
+ source_map_segment += 'X'
+ while shrunk:
+ shrunk = False
+ for i in range(self.size_i):
+ if source_map_segment[i] == 'X':
+ continue
+ neighbors = self.geometry.get_neighbors_i(i)
+ for direction in [d for d in neighbors if neighbors[d]]:
+ j = neighbors[direction]
+ if self.terrain[j] < self.terrain[i] - 1:
+ self.terrain[i] = self.terrain[j] + 1
+ shrunk = True
+ #print('DEBUG Dijkstra')
+ #line_to_print = []
+ #x = 0
+ #for n in self.terrain:
+ # line_to_print += ['%3s' % n]
+ # x += 1
+ # if x >= self.size.x:
+ # x = 0
+ # print(' '.join(line_to_print))
+ # line_to_print = []
+
+
+
+class DijkstraMapHex(DijkstraMap):
+ geometry_class = MapGeometryHex
+
+
+
+class DijkstraMapSquare(DijkstraMap):
+ geometry_class = MapGeometrySquare
+
+
+
+class FovMap(SourcedMap):