refactor #26

Merged
s481834 merged 34 commits from refactor into master 2024-06-04 13:25:11 +02:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 2b3170d10c - Show all commits

2
App.py
View File

@ -16,7 +16,7 @@ bfs1_flag=False
bfs2_flag=False #Change this lines to show different bfs implementation
bfs3_flag=False
Astar = False
Astar2 = True
Astar2 = False
if bfs3_flag or Astar or Astar2:
Pole.stoneFlag = True

View File

@ -53,7 +53,10 @@ class Pole:
time.sleep(3)
#self.ui.render_text("Randomizing Crops")
for coordinates in self.slot_dict:
if(coordinates==(0,0) or coordinates in stoneList or coordinates == self.gasStation):
if(stoneFlag):
if( coordinates in stoneList or coordinates == self.gasStation ):
continue
if(coordinates==(0,0)):
continue
else:
self.slot_dict[coordinates].set_random_plant()