예제 #1
0
파일: Pong2.py 프로젝트: Eladtopaz/Pong
def how_to_play(screen):
    """ This function will show how to play the game and give the option
    to get to the main menu.
    :param screen: the screen the options will be drawn on.
    :type screen: pygame.display
    :return: None
    """
    # Create the 1 button
    main_menu_button = Button("white", SCREEN_WIDTH / 2 - 170,
                              SCREEN_HEIGHT / 2 + 50, 350, 100, "Main Menu")

    # Create text
    how_to_play_text = """The goal of the game is to make sure the ball \nwon't leave your side of the field, \nand leave the other player side of the field.
The winner is the first person to get to 13 points!!
Left player keys: W for up. S for down.
Right player keys: UP-arrow for up. DOWN-arrow for down.
P key for pause. R for restart."""

    # Position of the text
    x_pos = SCREEN_WIDTH / 2 - 300
    y_pos = SCREEN_HEIGHT / 2 - 200
    clock = pygame.time.Clock()  # Initialize a clock

    while True:

        # stores the (x,y) coordinates into the variable as a tuple
        mouse = pygame.mouse.get_pos()

        for event in pygame.event.get():

            # Handle the exit from game command
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()

        # Check if the mouse is over the button
        if main_menu_button.is_over(mouse):

            # If so - change the mouse cursor
            pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_HAND)

            # Check if the mouse left button is pressed and is on the main_menu button
            if pygame.mouse.get_pressed()[0] and main_menu_button.is_over(
                    mouse):
                # If so - create a new MainMenu object and start it
                main_menu_object = MainMenu()
                main_menu_object.start()

        # Else - bring the mouse cursor to normal
        else:
            pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_ARROW)

        # Fill the bg color
        screen.fill(SCREEN_COLOR)
        # Draw the button using it draw function
        main_menu_button.draw(screen, (0, 0, 0))

        # Messages the screen how to play
        message_to_screen(screen, how_to_play_text, 30, "black",
                          (x_pos, y_pos), True)
        # Updating the window
        pygame.display.flip()
        # Number of frames per sec
        clock.tick(60)
예제 #2
0
파일: Pong2.py 프로젝트: Eladtopaz/Pong
def pause(screen, rand_ball=False):
    """ This function will pause the game and give some options:
    1. continue 2. restart 3. main menu
    :param screen: the screen the options will be drawn on.
    :type screen: pygame.display
    :param rand_ball: the custom setting for the random ball size, default is False
    :type rand_ball: boolean
    :return: None
    """
    # Create the 3 buttons, one on top of the other
    continue_button = Button("white", SCREEN_WIDTH / 2 - 170,
                             SCREEN_HEIGHT / 2 - 150, 350, 100, "Continue")
    restart_button = Button("white", SCREEN_WIDTH / 2 - 170,
                            SCREEN_HEIGHT / 2 - 50, 350, 100, "Restart")
    main_menu_button = Button("white", SCREEN_WIDTH / 2 - 170,
                              SCREEN_HEIGHT / 2 + 50, 350, 100, "Main Menu")
    be_careful_text = """Don't click on w/s/up/down keys when 
clicking on the continue/restart, will cause bags!"""

    paused = True  # Stop mark
    clock = pygame.time.Clock()  # Initialize a clock
    while paused:

        # stores the (x,y) coordinates into the variable as a tuple
        mouse = pygame.mouse.get_pos()

        for event in pygame.event.get():

            # Handle the exit from game command
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()

            # If the "P" button was clicked:
            if event.type == pygame.KEYDOWN:
                if event.key == pygame.K_p:
                    paused = False

        # Check if the mouse is over A button
        if continue_button.is_over(mouse) or restart_button.is_over(
                mouse) or main_menu_button.is_over(mouse):

            # If so - change the mouse cursor
            pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_HAND)

            # Check if the mouse left button is pressed and is on the continue button
            if pygame.mouse.get_pressed()[0] and continue_button.is_over(
                    mouse):
                # If so - bring back the mouse cursor and continue the game
                pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_ARROW)
                paused = False

            # Check if the mouse left button is pressed and is on the restart button
            if pygame.mouse.get_pressed()[0] and restart_button.is_over(mouse):
                # If so - create a new Game object and start it
                game = Game(screen, rand_ball)
                game.start()

            # Check if the mouse left button is pressed and is on the main_menu button
            if pygame.mouse.get_pressed()[0] and main_menu_button.is_over(
                    mouse):
                # If so - create a new MainMenu object and start it
                main_menu_object = MainMenu()
                main_menu_object.start()

        # Else - bring the mouse cursor to normal
        else:
            pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_ARROW)

        # Fill the bg color
        screen.fill(SCREEN_COLOR)
        # Draw the buttons using their draw function
        continue_button.draw(screen, (0, 0, 0))
        restart_button.draw(screen, (0, 0, 0))
        main_menu_button.draw(screen, (0, 0, 0))

        message_to_screen(screen, be_careful_text, 25, "red", (350, 100), True)
        # Updating the window
        pygame.display.flip()
        # Number of frames per sec
        clock.tick(60)
예제 #3
0
파일: Pong2.py 프로젝트: Eladtopaz/Pong
def end_game(screen, winner_player, rand_ball=False):
    """ This function will end the game, show the winner and give 2 options:
    1. another game 2. main menu
    :param screen: the screen the options and the winner_player will be drawn on.
    :type screen: pygame.display
    :param winner_player: the player that won the game
    :type winner_player: Player
    :param rand_ball: the custom setting for the random ball size, default is False
    :type rand_ball: boolean
    :return: None
    """
    text = winner_player.side + " player is the winner!!"  # The text that will be displayed
    # Create a buttons
    another_game_button = Button("white", SCREEN_WIDTH / 2 - 170,
                                 SCREEN_HEIGHT / 2 - 50, 350, 100,
                                 "Another game")
    main_menu_button = Button("white", SCREEN_WIDTH / 2 - 170,
                              SCREEN_HEIGHT / 2 + 50, 350, 100, "Main Menu")
    clock = pygame.time.Clock()  # Initialize a clock

    while True:

        # stores the (x,y) coordinates into the variable as a tuple
        mouse = pygame.mouse.get_pos()

        for event in pygame.event.get():

            # Handle the exit from game command
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()

            # Check if the mouse is over A button
            if another_game_button.is_over(mouse) or main_menu_button.is_over(
                    mouse):

                # If so - change the mouse cursor
                pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_HAND)

                # Check if the mouse left button is pressed and is on the another_game button
                if pygame.mouse.get_pressed(
                )[0] and another_game_button.is_over(mouse):
                    # If so - bring back the mouse cursor and start a new game
                    pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_ARROW)
                    game = Game(screen, rand_ball)
                    game.start()

                # Check if the mouse left button is pressed and is on the main_menu button
                if pygame.mouse.get_pressed()[0] and main_menu_button.is_over(
                        mouse):
                    # If so - bring back the mouse cursor and open the main menu
                    main_menu_object = MainMenu()
                    main_menu_object.start()

            # Else - bring the mouse cursor to normal
            else:
                pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_ARROW)

        # Fill the bg color
        screen.fill(SCREEN_COLOR)

        # Draw the buttons
        another_game_button.draw(screen, (0, 0, 0))
        main_menu_button.draw(screen, (0, 0, 0))
        message_to_screen(screen, text, 60, "black",
                          (SCREEN_WIDTH / 2 - 340, SCREEN_HEIGHT / 2 - 180))

        # Updating the window
        pygame.display.update()
        # Number of frames per sec
        clock.tick(60)
예제 #4
0
파일: Pong2.py 프로젝트: Eladtopaz/Pong
class MainMenu:
    """ Main menu class with 6 attributes:
    1. screen - the screen of the main menu.
    2. start_game_button - a button to start a game.
    3. rand_button - a button for the custom option random ball size.
    4. how_to_play_button - a button for the how to play screen.

    The class represent a main menu.
    """

    # A constructor
    def __init__(self):
        """ Create a new MainMenu object.
        :return: None
        """
        # Setting up the main window
        self.screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))

        # Create the start button and the settings button
        self.start_game_button = Button("white", SCREEN_WIDTH / 2 - 170,
                                        SCREEN_HEIGHT / 2 - 70, 350, 100,
                                        "Start A Game")
        self.rand_button = SpecialButton(SCREEN_COLOR, 650, 366, 350, 100,
                                         "Disabled")
        self.how_to_play_button = Button("white", SCREEN_WIDTH / 2 - 170,
                                         SCREEN_HEIGHT / 2 - 170, 350, 100,
                                         "How to play")

    def start(self):
        """ This function will open the main menu.
        :return: None
        """
        # General setup
        pygame.init()

        # Initialize the icon picture
        pygame.display.set_icon(PONG_ICON)
        pygame.display.set_caption("Pong")  # Chose the name on the window
        clock = pygame.time.Clock()  # Initialize a clock

        while True:

            # stores the (x,y) coordinates into the variable as a tuple
            mouse = pygame.mouse.get_pos()

            # Handling input
            for event in pygame.event.get():

                # Handle the exit from game command
                if event.type == pygame.QUIT:
                    pygame.quit()
                    sys.exit()

                # Check if the mouse is over A button
                if self.start_game_button.is_over(
                        mouse) or self.rand_button.is_over(
                            mouse) or self.how_to_play_button.is_over(mouse):

                    # If so - change the mouse cursor
                    pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_HAND)

                    # Check if the mouse left button is pressed and is on the start button
                    if pygame.mouse.get_pressed(
                    )[0] and self.start_game_button.is_over(mouse):

                        # If so - bring back the mouse cursor and start a game
                        pygame.mouse.set_system_cursor(
                            pygame.SYSTEM_CURSOR_ARROW)

                        # If the random option selected - make a game with random option
                        if self.rand_button.text_color == "green":
                            game = Game(self.screen, rand_ball=True)

                        # If not - make a game without the random option
                        else:
                            game = Game(self.screen)
                        game.start()

                    # Check if the mouse left button is pressed and is on the rand button
                    if pygame.mouse.get_pressed(
                    )[0] and self.rand_button.is_over(mouse):
                        # If so - change the text and color
                        self.rand_button.change_mode()

                    # Check if the mouse left button is pressed and is on the how to play button
                    if pygame.mouse.get_pressed(
                    )[0] and self.how_to_play_button.is_over(mouse):
                        # If so - open how to play screen
                        how_to_play(self.screen)

                # Else - bring back the mouse cursor to normal
                else:
                    pygame.mouse.set_system_cursor(pygame.SYSTEM_CURSOR_ARROW)

            # Fill the bg color
            self.screen.fill(SCREEN_COLOR)

            # Draw the buttons
            self.start_game_button.draw(self.screen, (0, 0, 0))
            self.how_to_play_button.draw(self.screen, (0, 0, 0))
            self.rand_button.draw(self.screen)
            # Message to screen with what is the setting to chose.
            message_to_screen(self.screen, "Random ball size: ", 50, "black",
                              (320, 385))

            # Updating the window
            pygame.display.flip()
            # Number of frames per sec
            clock.tick(60)