コード例 #1
0
ファイル: app.py プロジェクト: patrickbeekman/BeeInformed
def homepage():
    map_creator = MapCreator()

    layout = map_creator.colony_loss_map()
    script, div = components(layout)
    # the_time = datetime.now().strftime("%A, %d %b %Y %l:%M %p")

    return render_template('home.html', script=script, div=div)
コード例 #2
0
 def FindPipe(self):
     actions = queue.Queue()  # Actions Queue
     actions.put("")          # Initializing empty queue
     path = ""                # First path in map
     mario_map = MapCreator().CreateMarioMap3()  # Creating the map
     moves = ["L", "R", "U", "D"]
     while not GoalTester().findEnd(mario_map, path):         # == False:
         path = actions.get()                    # Set of moves Ex. LLURU
         for move in moves:
             posible_path = path + move
             if PathValidator().Valid(mario_map, posible_path):  # Validates if a path is posible
                 actions.put(posible_path)