当我按下退出按钮时,我的Python程序崩溃了。否则它工作正常。我正在使用Pygame模块。代码附在下面

时间:2016-11-24 10:24:42

标签: python numpy pygame pygame-clock

我正在从文件中读取数据。基本上,那些是我希望我的球在每次迭代后出现的坐标。代码工作正常,除了按下退出按钮后输出窗口'Trial 1'崩溃的事实。在我添加for t in range (np.size(T)):之前,这个问题不存在;但是我需要那个。请在代码中提出一些可能的更改以解决问题。

import numpy as np
import pygame

pygame.init()

T = np.loadtxt('xy_shm1.txt', usecols=range(0,1))
Xcor = np.loadtxt('xy_shm1.txt', usecols=range(1,2))
Ycor = np.loadtxt('xy_shm1.txt', usecols=range(2,3))

clock = pygame.time.Clock()

background_colour = (255,255,255)
(width, height) = (800, 800)

class Particle():
    def __init__(self, xy, size):
        self.x, self.y = xy
        self.size = size
        self.colour = (0, 0, 255)
        self.thickness = 1


    def display(self):
        pygame.draw.circle(screen, self.colour, (int(self.x), int(self.y)), self.size, self.thickness)


    def move(self):

        self.x = Xcor[t] + 400
        self.y = Ycor[t] + 400

screen = pygame.display.set_mode((width, height))
pygame.display.set_caption('Trial 1')

number_of_particles = 1
my_particles = []

for n in range(number_of_particles):
    size = 5
    x = Xcor[0] + 400
    y = Ycor[0] + 400
    particle = Particle((x, y), size)

    my_particles.append(particle)

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



    for t in range(np.size(T)):

        screen.fill(background_colour)

        for particle in my_particles:

            particle.move()
            particle.display()

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



pygame.quit()

1 个答案:

答案 0 :(得分:0)

主要问题是您尝试在一帧内绘制多个帧。框架循环应如下所示:

while running:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            running = False

    # Draw one frame here

    clock.tick(60) # If the game runs faster than 60fps, wait here

请注意,在while循环的每次迭代中,只绘制一个帧。 但是,在当前的代码中,您启动循环,检查事件一次, 然后为列表中的每个项目绘制一个框架,而不再检查事件。

这很可能导致错过QUIT事件,操作系统进行干预,因为游戏似乎没有响应。

通常,您的代码非常混乱。我建议您阅读有关pygame的一些教程,否则您将遇到各种类似的问题。例如,请参阅:http://programarcadegames.com/python_examples/f.php?file=bouncing_rectangle.py