gpt4 book ai didi

python - 如何在 pygame 中移动球而不是在屏幕上留下痕迹?

转载 作者:行者123 更新时间:2023-12-02 19:01:33 26 4
gpt4 key购买 nike

我正在构建一款乒乓球游戏,试图提高编程水平,但我在移动球时遇到了困难。当调用 move_right 方法时,椭圆会向右拉伸(stretch)而不是向右移动。我尝试将 ball 变量放入 init 方法中,但这只会使其根本不移动,即使变量应该因 move_right 方法而改变。我还尝试将 x 和 y 位置设置为 Ball 类中的参数,但这也只是拉伸(stretch)了它。我不明白为什么当我运行以下代码时,球我试图向右移动而不是向右移动。有人可以解释为什么会发生这种情况吗?我已经尝试了我能想到的一切,但我无法让它做我想做的事。

import pygame,sys
import random


class Ball:
def __init__(self):
self.size = 30
self.color = light_grey
self.x_pos = width/2 -15
self.y_pos = height/2 -15
self.speed = 1
#self.ball = pygame.Rect(self.x_pos, self.y_pos,self.size,self.size)


def draw_ball(self):
ball = pygame.Rect(self.x_pos, self.y_pos,self.size,self.size)
pygame.draw.ellipse(screen,self.color,ball)

def move_right(self):
self.x_pos += self.speed

class Player:
def __init__(self,x_pos,y_pos,width,height):
self.x_pos = x_pos
self.y_pos = y_pos
self.width = width
self.height = height
self.color = light_grey

def draw_player(self):
player = pygame.Rect(self.x_pos,self.y_pos,self.width,self.height)
pygame.draw.rect(screen,self.color,player)



class Main:
def __init__(self):
self.ball=Ball()
self.player=Player(width-20,height/2 -70,10,140)
self.opponent= Player(10,height/2-70,10,140)

def draw_elements(self):
self.ball.draw_ball()
self.player.draw_player()
self.opponent.draw_player()

def move_ball(self):
self.ball.move_right()





pygame.init()
size = 30
clock = pygame.time.Clock()
pygame.display.set_caption("Pong")
width = 1000
height = 600
screen = pygame.display.set_mode((width,height))
bg_color = pygame.Color('grey12')
light_grey = (200,200,200)

main = Main()
#ball = pygame.Rect(main.ball.x_pos, main.ball.y_pos,main.ball.size,main.ball.size)
#player = pygame.Rect(width-20,height/2 -70,10,140)
#opponent = pygame.Rect(10,height/2-70,10,140)


while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
#ball = pygame.Rect(main.ball.x_pos, main.ball.y_pos,main.ball.size,main.ball.size)
#pygame.draw.rect(screen,light_grey,player)
#pygame.draw.rect(screen,light_grey,opponent)
#pygame.draw.ellipse(screen,light_grey,ball)
main.draw_elements()
main.move_ball()
main.ball.x_pos += main.ball.speed
pygame.display.flip()
clock.tick(60)

最佳答案

您必须使用 pygame.Surface.fill 清除每一帧中的显示。 :

while True:
# [...]

screen.fill(0) # <---

main.draw_elements()
main.move_ball()
main.ball.x_pos += main.ball.speed
pygame.display.flip()

# [...]

绘制的所有内容都绘制在目标表面上。整个场景在每一帧中都会重绘。因此,需要在应用程序循环的每一帧开始时清除显示。典型的 PyGame 应用程序循环必须:

关于python - 如何在 pygame 中移动球而不是在屏幕上留下痕迹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65494890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com