繁体   English   中英

如何在 pygame 中绘制类对象列表?

[英]How do I draw a list of class objects in pygame?

我正在尝试在 pygame 中创建 Space Invaders(我是初学者,这只是我的第二个游戏)并且我创建了一个外星物体列表:

numOfAliens = 24
aliens = []

# An alien class containing an x, y, width, and height value
class alien:
    x, y = 0, 0
    width, height = 20, 20

# Loops 24 times and adds alien to the class
for i in range(numOfAliens):
    aliens.append(alien)

我还有一段代码将每个 x 值加上 5 和宽度以将外星人隔开:

for i in aliens:
    i.x += 5 + i.width
    print(i.x, i.y, i.width, i.height)

打印告诉我这前 2 个代码块工作正常,没有任何问题,当我尝试将其绘制到 pygame 窗口时出现问题:

# Loops 24 times, drawing each alien to the window
for i in range(numOfAliens):
        pygame.draw.rect(win, GREEN, (aliens[i].x, aliens[i].y, aliens[i].width, aliens[i].height))

Aliens[i].x 肯定会得到列表中每个对象的 x 值,但它不会。 如果我在这个 for 循环中添加一个 print("hi") 它会无限地打印出 "hi" 当它应该只循环 24 次并且窗口上没有绘制任何东西时,有什么办法可以解决这个问题?

如果需要,这里是所有代码:

import pygame
pygame.init()

clock = pygame.time.Clock()

# Window
win_width, win_height = 500, 500

win = pygame.display.set_mode((win_width, win_height))
pygame.display.set_caption("Space Invaders")


# Colours
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
GREEN = (30, 224, 27)


# Player
player_width, player_height = 20, 20
player_x, player_y = int((win_width / 2) - (player_width / 2)), (win_height - 50)
player_vel = 10
isShooting = False
isAlive = True


# Bullet
bullet_width, bullet_height = 4, 16
bullet_x, bullet_y = player_x, player_y
bullet_vel = 5


# Aliens
numOfAliens = 24
aliens = []

class alien:
    x, y = 0, 0
    width, height = player_width, player_height

for i in range(numOfAliens):
    aliens.append(alien)

for i in aliens:
    i.x += 5 + i.width
    print(i.x, i.y, i.width, i.height)

# Draw Function
def draw():
    win.fill(BLACK)
    pygame.draw.rect(win, GREEN, (player_x, player_y, player_width, player_height))

    for i in aliens:
        pygame.draw.rect(win, GREEN, (i.x, i.y, i.width, i.height))

    if isShooting:
        pygame.draw.rect(win, WHITE, (bullet_x, bullet_y, bullet_width, bullet_height))

    pygame.display.update()

# Game Loop
run = True
while run:
    clock.tick(20)

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

    keys = pygame.key.get_pressed()

    if keys[pygame.K_LEFT] and player_x > 0:
        player_x -= player_vel

    if keys[pygame.K_RIGHT] and player_x < win_width - player_width:
        player_x += player_vel

    if keys[pygame.K_SPACE] and not(isShooting):
        bullet_y = player_y
        bullet_x = int(player_x + (player_width / 2))
        isShooting = True

    if bullet_y + bullet_height <= 0:
        isShooting = False

    if isShooting:
        bullet_y -= bullet_vel

    draw()

pygame.quit()

实际上,您没有创建任何外星人实例。 alien只是类本身。

 aliens.append(alien)

要创建类alien的实例,您必须添加括号:
查看 类对象

aliens.append(alien())

请注意,python 中的类名应以大写字母开头。
参见Python 代码风格指南 - 类名

将带有 x 和 y 坐标参数的构造函数添加到Alien类,并为位置和大小创建实例属性 根据控制变量i计算外星人的位置:

numOfAliens = 24
aliens = []

class Alien:
    def __init__(self, x, y):
        self.x, self.y = x, y
        self.width, self.height = player_width, player_height

for i in range(numOfAliens):
    aliens.append(Alien(i * (5+player_width), 0))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM