-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaze_utils.py
212 lines (181 loc) · 5.48 KB
/
maze_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import copy
def map_to_str(_map):
map_str = '\n'
for row in _map:
for element in row:
if element == 'X':
# orange color
map_str = map_str + ('\33[33m' + 'X' + '\033[0m')
if element == 'S':
map_str = map_str + ('\33[32m' + 'S' + '\033[0m')
if element == 'O':
# normal color
map_str = map_str + 'O'
if element == '*':
# red color
map_str = map_str + ('\33[31m' + '*' + '\033[0m')
if element == 'A':
# blue color
map_str = map_str + ('\33[34m' + 'A' + '\033[0m')
map_str = map_str + '\n'
return map_str
class Point:
def __init__(self, x=0, y=0):
self.x = x
self.y = y
def __str__(self):
return '('+str(self.x)+','+str(self.y)+')'
def __eq__(self, other):
if(self.x == other.x) and (self.y == other.y):
return True
else:
return False
def __gt__(self, other):
if(self.x > other.x) and (self.y > other.y):
return True
else:
return False
def return_right(self):
p = Point()
p.x = self.x
p.y = self.y+1
return p
def return_left(self):
p = Point()
p.x = self.x
p.y = self.y-1
return p
def return_up(self):
p = Point()
p.x = self.x-1
p.y = self.y
return p
def return_down(self):
p = Point()
p.x = self.x+1
p.y = self.y
return p
def return_fourside(self):
p_down = self.return_down()
p_up = self.return_up()
p_left = self.return_left()
p_right = self.return_right()
lst_foursides = [p_down, p_up, p_right, p_left]
return lst_foursides
class Map:
"""
Map class:
you can print this class directly and will print prettified map
"""
def __init__(self, map_raw):
"""
:param map_raw: raw map loaded from a map file
"""
new_map = []
for line in map_raw:
temp = list(line)
temp.remove('\n')
new_map.append(temp)
self.map = new_map
self.size = self.get_size()
self.p_start = self.find_start('S')
self.p_exit = self.find_exit('O')
def __str__(self):
return map_to_str(self.map)
def get_size(self):
size = Point()
size.x = len(self.map)
size.y = len(self.map[0])
return size
def value(self, point):
return self.map[point.x][point.y]
def find(self, x):
"""
searches the map to find x in the map
:param x:
:return: x,y location as point
"""
p = Point()
for i, row in enumerate(self.map):
for j, element in enumerate(row):
if element == x:
p.y = j
p.x = i
return p
def find_start(self, x='S'):
"""
searches the map to find start position, which is marked by x in the map
:param x:
:return: x,y location of the start as a point
"""
return self.find(x)
def find_exit(self, x='O'):
"""
searches 4 borders of the maps to find x, which is considered as exit
:param x:
:return: x,y location of the exit as a point
"""
p = Point()
for j, item in enumerate(self.map[0]):
if item == x:
p.y = j
p.x = 0
for j, item in enumerate(self.map[self.size.x-1]):
if item == x:
p.y = j
p.x = self.size.x-1
for i, item in enumerate(self.map):
if item[0] == x:
p.y = 0
p.x = i
for i, item in enumerate(self.map):
if item[self.size.y-1] == x:
p.y = self.size.y-1
p.x = i
return p
def possible_steps(self, p_current):
"""
checks surrounding 4 sides of the current point to find 'O'
:param p_current: current location as a point
:return: list of points that are found to be 'O'
"""
lst_foursides = p_current.return_fourside()
lst_possible = []
for p_next in lst_foursides:
if self.size > p_next:
if self.value(p_next) is 'O':
lst_possible.append(p_next)
return lst_possible
class Path:
def __init__(self, _map, _p_current=Point(), history=None):
"""
class of Path
:param _map: associated map in Map type
:param history:
:param _p_current:
"""
if history is None:
history = []
self._map = _map.map
self._p_current = _p_current
self.history = copy.deepcopy(history)
self.successful = False
self.terminated = False
def __str__(self):
temp = []
for item in self.history:
temp.append(item.__str__())
return str(temp)
@property
def p_current(self):
return self._p_current
@p_current.setter
def p_current(self, next_point):
self.history.append(self.p_current)
self._p_current = next_point
def get_map_str(self):
map_new = copy.deepcopy(self._map)
for point in self.history:
map_new[point.x][point.y] = '*'
map_new[self._p_current.x][self._p_current.y] = 'A'
return map_to_str(map_new)