如何在pygame中发生碰撞后删除图像?

时间:2018-01-14 23:01:13

标签: python image pygame collision-detection

我正在使用python进行涉及通电的游戏。有一次产卵的随机机会,它会在屏幕上显示其图像。一旦玩家的身体(这个场景中的队长)与其发生碰撞,它会从列表中选择一个随机的加电。我在图像位置(相同大小)检查与矩形的碰撞,并尝试删除矩形,并在碰撞发生时删除图像。我怎样才能做到这一点?这是我到目前为止的尝试,但是,我一直收到错误:"列表分配索引超出范围"它突出了一行:del PowerYList [Spot]。有人能告诉我我做错了吗?

if random.randint(1,2500) == 2500:
            PowerY = random.randint(125,585)
            PowerRect = Rect(930, PowerY, 50,50)
            PowerYList.append(PowerY)
            PowerRects.append(PowerRect)


        for X in PowerYList:
            Screen.blit(PowerUp, (930, X))

        Radius = 0   
        for X in PowerRects:
            if X.colliderect(Rect(942, CaptainY, 15, 30)) == True:
                Power = random.choice(PowerUps)
                Power = "Nuke"

                Spot = PowerRects.index(X)
                del X
                del PowerYList[Spot]

                if Power == "Health":
                    if Health <= 85:
                        Health += 15
                    else:
                        Health += 100-Health

                elif Power == "Nuke":
                    Radius = 0 
                    for Y in range(1,50):
                        draw.circle(Screen, ORANGE, (500, 350), Radius+50)
                        draw.circle(Screen, RED, (500,350), Radius)
                        Radius += 5

                    Gigabits = []
                    Gigabits_Heads = []
                    Gigabit_Health = []
                    S_Gigabits = []
                    S_Gigabits_Heads = []
                    S_Gigabit_Health = []

1 个答案:

答案 0 :(得分:0)

这是我构建的一个示例,用于演示与鼠标冲突时的精灵删除。有关其他方法,请参阅答案like this

import random
import pygame

screen_width, screen_height = 640, 480
def get_random_position():
    """return a random (x,y) position in the screen"""
    return (random.randint(0, screen_width - 1),  #randint includes both endpoints.
            random.randint(0, screen_height - 1)) 

def get_random_named_color(allow_grey=False):
    """return one of the builtin colors"""
    if allow_grey:
        return random.choice(all_colors)
    else:
        return random.choice(non_grey)

def non_grey(color):
    """Return true if the colour is not grey/gray"""
    return "grey" not in color[0] and "gray" not in color[0]

all_colors = list(pygame.colordict.THECOLORS.items())  
# convert color dictionary to a list for random selection once
non_grey = list(filter(non_grey, all_colors))

class PowerUp(pygame.sprite.Sprite):
    def __init__(self):
        pygame.sprite.Sprite.__init__(self)
        width, height = 12, 10
        self.color, color = get_random_named_color()
        self.image = pygame.Surface([width, height])
        self.image.fill(color)
        # Fetch the rectangle object that has the dimensions of the image
        # Update the position by setting the values of rect.x and rect.y
        self.rect = self.image.get_rect().move(*get_random_position())

    def update(self):
        """move to a random position"""
        self.rect.center = get_random_position()

if __name__ == "__main__":
    pygame.init()
    screen = pygame.display.set_mode((screen_width, screen_height))
    pygame.display.set_caption('Sprite Collision Demo')
    clock = pygame.time.Clock() #for limiting FPS
    FPS = 60
    exit_demo = False

    #create a sprite group to track the power ups.
    power_ups = pygame.sprite.Group()
    for _ in range(10):
        # create a new power up and add it to the group.
        power_ups.add(PowerUp())

    # main loop
    while not exit_demo:
        for event in pygame.event.get():            
            if event.type == pygame.QUIT:
                exit_demo = True
            elif event.type == pygame.KEYDOWN:
                if event.key == pygame.K_ESCAPE:
                    exit_demo = True
                elif event.key == pygame.K_SPACE:
                    power_ups.update()
            elif event.type == pygame.MOUSEBUTTONUP:
                for _ in range(10):
                    power_ups.add(PowerUp())
        # check for collision
        for p in power_ups:
            if p.rect.collidepoint(pygame.mouse.get_pos()):
                power_ups.remove(p)
                print(f"Removed {p.color} power up")

        screen.fill(pygame.Color("black")) # use black background
        power_ups.draw(screen)
        pygame.display.update()
        clock.tick(FPS)
    pygame.quit()
    quit()