コード例 #1
0
    def __init__(self):
        self.turn = 0
        self.stop = False
        self.simulate_games = 0

        self.players = {}
        self.end = False
        self.current_player_id = None
        self.current_coord = {}

        root = Tk()
        root.option_add("*font", DEFAULT_FONT)
        root.option_add("*foreground", DEFAULT_FONT_COLOUR)

        # Default root attributes
        width = (SQUARE_SIZE + SQUARE_DST) * 3
        height = width + 2 * SQUARE_SIZE

        root.configure(bg=BG_COLOUR)
        root.geometry(str(width) + "x" + str(height) + WINDOW_COORD)
        root.title("TicTacToe")
        root.iconbitmap("Images/game_icon.ico")
        root.bind("<Key>", self.key_listener)

        self.state = State(root, "Settings")

        settings_state = self.state.states[STATES[SETTINGS]]
        settings_state.start_button.configure(command=self.start_game)

        root.mainloop()
コード例 #2
0
    def __init__(self, owner, time=5.0, frequency=0.25):
        """
        Creates the effect that will last for the given time, and blink at the given frequency.
        
        @type  owner:        L{Actor<Actor.Actor>}
        @param owner:        Who this State belongs to.
        
        @type  time:         C{float}
        @param time:         How many seconds the effect should last.
        
        @type  frequency:    C{float}
        @param frequency:    Length in seconds of a single on and off cycle. 
        """
        State.__init__(self, owner, "blink")
        self._expireTime = time
        self._halfFrequency = frequency / 2.0

        self._timeLeft = self._expireTime
        self._timeLeftVisible = self._halfFrequency
コード例 #3
0
 def __init__(self, owner):
     State.__init__(self, owner, Constants.StateConstants.IDLE_NAME)
コード例 #4
0
    def __init__(self, owner):
        State.__init__(self, owner, "lose")

        self._isOnGround = False
        self._wasInAir = False
コード例 #5
0
    def __init__(self, owner):
        State.__init__(self, owner, "win")
        self._winTimer = 0.0

        self._isOnGround = False
        self._wasInAir = False
コード例 #6
0
    def __init__(self, owner):
        State.__init__(self, owner, "dead")

        self._respawnCountDown = 0.0
コード例 #7
0
 def __init__(self, owner):
     State.__init__(self, owner, "thrown")
コード例 #8
0
    def __init__(self, owner):
        State.__init__(self, owner, Constants.StateConstants.THROW_NAME)

        self._activateFrame = 1
        self._deactivateFrame = 3
コード例 #9
0
ファイル: TargetState.py プロジェクト: cadryden/cad-e
 def __init__(self, owner):
     State.__init__(self, owner, 'TargetState')
コード例 #10
0
ファイル: PlatformerNPC.py プロジェクト: cadryden/cad-e
 def __init__(self, owner):
     State.__init__(self, owner, 'land')
コード例 #11
0
ファイル: PlatformerNPC.py プロジェクト: cadryden/cad-e
 def __init__(self, owner):
     State.__init__(self, owner, 'fall')
コード例 #12
0
ファイル: PlatformerNPC.py プロジェクト: cadryden/cad-e
 def __init__(self, owner):
     State.__init__(self, owner, 'idle')
コード例 #13
0
class TicTacToe:

    # Sets up the root and some fields and launches the State class
    def __init__(self):
        self.turn = 0
        self.stop = False
        self.simulate_games = 0

        self.players = {}
        self.end = False
        self.current_player_id = None
        self.current_coord = {}

        root = Tk()
        root.option_add("*font", DEFAULT_FONT)
        root.option_add("*foreground", DEFAULT_FONT_COLOUR)

        # Default root attributes
        width = (SQUARE_SIZE + SQUARE_DST) * 3
        height = width + 2 * SQUARE_SIZE

        root.configure(bg=BG_COLOUR)
        root.geometry(str(width) + "x" + str(height) + WINDOW_COORD)
        root.title("TicTacToe")
        root.iconbitmap("Images/game_icon.ico")
        root.bind("<Key>", self.key_listener)

        self.state = State(root, "Settings")

        settings_state = self.state.states[STATES[SETTINGS]]
        settings_state.start_button.configure(command=self.start_game)

        root.mainloop()

    # Main key_listener bound to the root
    # Escape: exits the program
    # If the current state is the settings-state then the following applies for the key-presses:
    #   Enter: starts the game
    # If the current state is the game-state then the following applies for the key-presses:
    #   Enter: selects the highlighted square
    #   Arrow-keys: moves the highlighted square
    #   r: resets the field
    #   u: lets the user alter the names and the player-kind
    #   s: if the STATISTICS boolean is true, it will simulate AMOUNT_OF_SIMULATIONS amount of games
    def key_listener(self, event):
        if event.keysym == 'Escape':
            sys.exit()

        if self.state.current_state == STATES[SETTINGS]:
            if event.keysym == 'Return':
                self.start_game()

        elif self.state.current_state == STATES[GAME]:
            x = self.current_coord["x"]
            y = self.current_coord["y"]
            current_label = self.state.states[STATES[GAME]].field_labels[y][x]

            # Move the highlighted square
            if event.keysym == 'Up':
                if y > 0:
                    self.current_coord["y"] -= 1
                self.highlight_square(current_label)
            if event.keysym == 'Right':
                if x < 2:
                    self.current_coord["x"] += 1
                self.highlight_square(current_label)
            if event.keysym == 'Down':
                if y < 2:
                    self.current_coord["y"] += 1
                self.highlight_square(current_label)
            if event.keysym == 'Left':
                if x > 0:
                    self.current_coord["x"] -= 1
                self.highlight_square(current_label)

            # Resets the game
            if event.keysym == 'r':
                if not TEST or not self.stop:
                    self.clear_field()

            # Goes back to the settings menu to alter values there
            if event.keysym == 'u':
                self.state.update_state(STATES[SETTINGS])

            if STATISTICS and event.keysym == 's' and (not TEST or not self.stop) and self.players_are_not_human():
                self.clear_field()

            if player_is_human(self.state.players[self.current_player_id]):
                # Select the highlighted square
                if event.keysym == 'Return':
                    self.square_selected()

    # Launches and displays the game state
    def start_game(self):
        self.stop = False

        # Checks if the game state has already been altered accordingly before
        first_time = False
        if not self.state.states.keys().__contains__(STATES[GAME]):
            first_time = True

        self.state.start_game()
        # Edits the game state by adding appropriate commands
        if first_time:
            game_state = self.state.states[STATES[GAME]]
            game_state.reset_button.configure(command=self.clear_field)
            for i, field_row in enumerate(game_state.field_labels):
                for j, element in enumerate(field_row):
                    # Because of the scopes of the variables in the loops,
                    #   it is required to create an extra function
                    def command(row, column):
                        return lambda e: self.square_selected(row=row, column=column)

                    element.bind("<Button-1>", command(i, j))
                    # self.add_command(game_state.field_labels[i][j], j, i)

        # Start off with default coordinate which is right in the middle
        self.current_coord["x"] = 1
        self.current_coord["y"] = 1

        # Adding player classes
        state_players = self.state.players
        for i, player in enumerate(state_players):
            self.players[i] = player_factory(player["player_type"].get(), i)

        self.state.states[STATES[GAME]].reset_results()
        self.clear_field()

    # Alters the screen and the field accordingly, also checks whether a player has won
    def square_selected(self, row=None, column=None):
        column = self.current_coord["x"] if column is None else column
        row = self.current_coord["y"] if row is None else row

        prev_label = self.state.states[STATES[GAME]].field_labels[self.current_coord["y"]][self.current_coord["x"]]
        # Update the current square
        self.current_coord["x"] = column
        self.current_coord["y"] = row

        game_state = self.state.states[STATES[GAME]]
        field = game_state.field
        # Can only alter the field if there is nothing in it and the game is not won
        if field[row][column] is None and not self.end:
            self.highlight_square(prev_label)
            field[row][column] = self.current_player_id
            text = PLAYERS[self.current_player_id]
            if DISPLAY_TURN:
                text += " " + str(self.turn)
            game_state.field_labels[row][column].configure(text=text)
            win_id = is_win(self.state.states[STATES[GAME]].field)

            if win_id is not None:
                if TEST:
                    if self.current_player_id == ID_PLAYER2:
                        self.stop = True
                self.set_end(self.state.players[self.current_player_id]["name"])
            elif field_is_filled(self.state.states[STATES[GAME]].field):
                self.set_end()
            else:
                self.next_player()

    # Puts a label on the screen, saying that the player has won
    # Inputs:
    #   player_name as a string, if it's not given then it's recorded as a tie
    def set_end(self, player_name=None):
        self.end = True
        end_text = "The field is filled and the result is a tie"
        player_id = ID_PLAYER_WRONG
        if player_name is not None:
            end_text = "Congratulations, " + player_name + ", you have won"
            player_id = self.current_player_id

        self.state.states[STATES[GAME]].add_win(player_id)
        game_state = self.state.states[STATES[GAME]]
        game_state.win_label.configure(text=end_text)
        game_state.win_frame.grid(row=4, column=0, columnspan=3)

        # TODO 1: Figure out how to put this in some main loop.
        # Run a simulation to check which bot is the best
        # if self.simulate_games < 1000:
        #     self.simulate_games += 1
        #     self.clear_field()

    # Clears the field, the squares, the label that said a player has won and calls update_players()
    def clear_field(self):
        game_state = self.state.states[STATES[GAME]]
        game_state.clear_field()
        game_state.win_frame.grid_forget()
        self.update_players()

    # Makes sure that a random starting player is selected
    def update_players(self):
        self.turn = 0

        self.end = False
        rand_id_assigner = random.random()
        self.current_player_id = ID_PLAYER1 if rand_id_assigner < 0.5 else ID_PLAYER2
        self.next_player()

    def next_player(self):
        self.turn += 1

        self.current_player_id = ID_PLAYER1 if self.current_player_id == ID_PLAYER2 else ID_PLAYER2
        current_player = self.state.players[self.current_player_id]
        self.state.update_turnlabel(current_player["name"], PLAYERS[self.current_player_id])
        current_label = self.state.states[STATES[GAME]].field_labels[self.current_coord["y"]][self.current_coord["x"]]
        self.highlight_square(current_label)
        if not player_is_human(current_player) and (not TEST or not self.stop):
            player = self.players[self.current_player_id]
            coordinates = player.choose_square(self.state.states[STATES[GAME]].field)
            row = coordinates["row"]
            column = coordinates["column"]
            self.square_selected(row=row, column=column)
            return

    def highlight_square(self, prev_label):
        prev_label.configure(bg=SQUARE_COLOUR)
        x = self.current_coord["x"]
        y = self.current_coord["y"]
        if player_is_human(self.state.players[self.current_player_id]):
            self.state.states[STATES[GAME]].field_labels[y][x].configure(bg=HIGHLIGHT_COLOUR)

    def players_are_not_human(self):
        return player_is_human(self.state.players[ID_PLAYER1]) and player_is_human(self.state.players[ID_PLAYER2])
コード例 #14
0
ファイル: StaticState.py プロジェクト: cadryden/cad-e
 def __init__(self, owner):
     State.__init__(self, owner, 'StaticState')