コード例 #1
0
    def newGameThread(self):
        print("Trying to start new game")
        self.cleanState()  # resets GUI state
        importlib.reload(ants)  # resets ants, e.g. with newly implemented Ants
        self.makeHooks()

        self.winner = ants_strategies.start_with_strategy(
            gui.args, gui.strategy, ants)
        self.gameOver = True
        self.saveState("winner", self.winner)
        self.saveState("gameOver", self.gameOver)
        # self.killGUI()
        update()
コード例 #2
0
    def newGameThread(self):
        print("Trying to start new game")
        self.cleanState()  # resets GUI state
        importlib.reload(ants)  # resets ants, e.g. with newly implemented Ants
        self.makeHooks()

        self.winner = False
        try:
            self.winner = ants_strategies.start_with_strategy(
                gui.args, gui.strategy)
        except:
            print(
                "Got that gosh darn error again. Bees win, I think? Go eat some cheese."
            )
        self.gameOver = True
        self.saveState("winner", self.winner)
        self.saveState("gameOver", self.gameOver)
        # self.killGUI()
        update()
コード例 #3
0
def run(*args):
    ants.Insect.reduce_armor = class_method_wrapper(ants.Insect.reduce_armor,
                                                    pre=print_expired_insects)
    ants_strategies.start_with_strategy(args, AntsGUI().strategy)
コード例 #4
0
ファイル: ants_text.py プロジェクト: esong200/Ants-Game
def run(*args):
    Insect.reduce_armor = class_method_wrapper(Insect.reduce_armor,
                                               pre=print_expired_insects)
    start_with_strategy(args, interactive_strategy)