为什么我在PyGame中的平台游戏突然这么慢?

时间:2020-04-20 15:56:43

标签: python pygame pygame-surface pygame-clock

所以我有一个用PyGame制作的平台游戏,可以正常运行,因此我现在尝试使其色彩更加丰富。所以我更改的代码曾经是:

 def draw(self, screen):
     """ Draw everything on this level. """

     # Draw the background
     screen.fill(BLUE)

然后我将其更改为:

def draw(self, screen):
    """ Draw everything on this level. """

    # Image from http://freepik
    background_image = pygame.image.load("pink background.jpg").convert()

    # Draw the background
    screen.blit(background_image, [0, 0])

使粉红色背景成为背景:)现在,这是我在代码中所做的唯一更改,但是现在所有内容的移动速度都变慢了,例如由用户和移动平台控制的播放器。有两个级别,我没有更改第二个级别背景的代码,并且播放器仍然可以正常移动:)

我确实认为我可能会改变这一行:

# Limit to 60 frames per second
clock.tick(60)

是偶然的,但仍然完全相同。

我希望有人能提供帮助:)并先谢谢您:)

此代码中的某处发生错误: `

def main():

    pygame.init()

    # Set the height and width of the screen
    size = [SCREEN_WIDTH, SCREEN_HEIGHT]
    screen = pygame.display.set_mode(size)

    pygame.display.set_caption('Platformer with moving platforms')

    # Create the player
    player = Player()

    # Create all the levels
    level_list = []
    level_list.append(Level_01(player))

    # Set the current level
    current_level_no = 0
    current_level = level_list[current_level_no]

    active_sprite_list = pygame.sprite.Group()
    player.level = current_level

    player.rect.x = 200
    player.rect.y = SCREEN_HEIGHT - player.rect.height - 30
    active_sprite_list.add(player)

    # 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

            if event.type == pygame.KEYDOWN:
                if event.key == pygame.K_LEFT:
                    player.go_left()
                if event.key == pygame.K_RIGHT:
                    player.go_right()
                if event.key == pygame.K_UP:
                    player.jump()

            if event.type == pygame.KEYUP:
                if event.key == pygame.K_LEFT and player.change_x < 0:
                    player.stop()
                if event.key == pygame.K_RIGHT and player.change_x > 0:
                    player.stop()

        # Update the player.
        active_sprite_list.update()

        # Update items in the level
        current_level.update()

        # If the player gets near the right side, shift the world left (-x)
        if player.rect.right >= 500:
            diff = player.rect.right - 500
            player.rect.right = 500
            current_level.shift_world(-diff)

        # If the player gets near the left side, shift the world right (+x)
        if player.rect.left <= 120:
            diff = 120 - player.rect.left
            player.rect.left = 120
            current_level.shift_world(diff)

        # If the player touches the floor they die.
        if player.rect.y == SCREEN_HEIGHT - player.rect.height:
            done = True

        # If the player gets to the end of the level, go to the next level
        current_position = player.rect.x + current_level.world_shift
        if current_position < current_level.level_limit:

            all_lines = []
            list_of_files = os.listdir()
            if username1 in list_of_files:
                file1 = open(username1, "r")
                for line in file1:
                    all_lines.append(line)

            all_lines[2] = str(1)

            with open(username1, 'w') as filehandle:
                for listitem in all_lines:
                    filehandle.write(str(listitem))

            done = True

        # ALL CODE TO DRAW SHOULD GO BELOW THIS COMMENT

        current_level.draw(screen)
        active_sprite_list.draw(screen)

        # Select the font to use, size, bold, italics

        # ALL CODE TO DRAW SHOULD GO ABOVE THIS COMMENT

        # Limit to 60 frames per second
        clock.tick(60)

        # Go ahead and update the screen with what we've drawn.
        pygame.display.flip()

    # Be IDLE friendly. If you forget this line, the program will 'hang'
    # on exit.
    pygame.quit()

if __name__ == "__main__":
    main()

`

1 个答案:

答案 0 :(得分:3)

请勿在主循环中加载图像。在循环外定义(加载)它,然后通过变量使用它。这是您的问题,因为它每秒从磁盘上加载映像(在这种情况下,FPS = 60)次。

相关问题