Как рисовать прямоугольники, используя рекурсию, чтобы создать таблицу в Pygame? - PullRequest
0 голосов
/ 16 декабря 2018

Я пытаюсь создать похожий документ Excel, используя рекурсию в Pygame.Я получил первый оператор if, чтобы заполнить верхний ряд экрана, и искал, чтобы он каждый раз уменьшался на 50 (высота моего прямоугольника) и продолжал идти, пока он снова не достигнет края моего экрана, полностью заполняя экран.Я сделал другой цикл for, чтобы попробовать это, но он останавливается и пропускает один прямоугольник в (0,0), есть ли способ сделать это в одном цикле, чтобы экран заполнил и сделал кучу столбцов и строк?Благодарю.

 """
    Recursively draw rectangles.
    Sample Python/Pygame Programs
    Simpson College Computer Science
    http://programarcadegames.com/
    http://simpson.edu/computer-science/
    """
    import pygame
    # Colors
    BLACK = (0, 0, 0)
    WHITE = (255, 255, 255)
    def recursive_draw(x, y, width, height):
        """ Recursive rectangle function. """
        pygame.draw.rect(screen, BLACK,
        [x, y, width, height],
        1)
        # Is the rectangle wide enough to draw again?
        if(x < 750):
            # Scale down
            x += 150
            y = 0
            width = 150
            height = 50
            # Recursively draw again
            recursive_draw(x, y, width, height)
        if (x < 750):
            # Scale down
            x += 0
            y += 50
            width = 150
            height = 50
            # Recursively draw again
            recursive_draw(x, y, width, height)
    pygame.init()
    # Set the height and width of the screen
    size = [750, 500]
    screen = pygame.display.set_mode(size)
    pygame.display.set_caption("My Game")
    # Loop until the user clicks the close button.
    done = False
    # Used to manage how fast the screen updates
    clock = pygame.time.Clock()
    # -------- Main Program Loop -----------
    while not done:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                done = True
        # Set the screen background
        screen.fill(WHITE)
        # ALL CODE TO DRAW SHOULD GO BELOW THIS COMMENT
        recursive_draw(0, 0, 150, 50)
        # ALL CODE TO DRAW SHOULD GO ABOVE THIS COMMENT
        # Go ahead and update the screen with what we've drawn.
        pygame.display.flip()
        # Limit to 60 frames per second
        clock.tick(60)
        # Be IDLE friendly. If you forget this line, the program will 'hang'
        # on exit.
    pygame.quit()

1 Ответ

0 голосов
/ 16 декабря 2018

Я бы сначала добавил базовый регистр, чтобы функция возвращалась при достижении нижней части экрана.Добавляйте width к x до тех пор, пока не будет достигнута правая сторона, и, когда она там, увеличьте y += height и сбросьте x = 0, чтобы начать рисовать следующую строку.

import pygame


BLACK = (0, 0, 0)
WHITE = (255, 255, 255)

def recursive_draw(x, y, width, height):
    """Recursive rectangle function."""
    pygame.draw.rect(screen, BLACK, [x, y, width, height], 1)
    if y >= 500:  # Screen bottom reached.
        return
    # Is the rectangle wide enough to draw again?
    elif x < 750-width:  # Right screen edge not reached.
        x += width
        # Recursively draw again.
        recursive_draw(x, y, width, height)
    else:
        # Increment y and reset x to 0 and start drawing the next row.
        x = 0
        y += height
        recursive_draw(x, y, width, height)


pygame.init()
size = [750, 500]
screen = pygame.display.set_mode(size)
clock = pygame.time.Clock()
screen.fill(WHITE)
recursive_draw(0, 0, 150, 50)

done = False
while not done:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            done = True

    pygame.display.flip()
    clock.tick(60)


pygame.quit()

Было бы прощеиспользовать вложенные циклы для рисования сетки:

def draw_grid(x, y, width, height, size):
    for y in range(0, size[1], height):
        for x in range(0, size[0], width):
            pygame.draw.rect(screen, BLACK, [x, y, width, height], 1)
...