为什么我的碰撞测试总是返回“true”,并且为什么图像矩形的位置总是错误的(0,0)?

2024-11-28 08:37:00
admin
原创
5
摘要:问题描述:我的 collide_rect 函数无法正常工作。它总是返回 True,但实际上不应该返回。我尝试在互联网上查找,但没有任何效果。我认为 collide rect 不知何故没有使用两个精灵的实际坐标。有人能帮忙吗?import pygame import pygame.sprite import s...

问题描述:

我的 collide_rect 函数无法正常工作。它总是返回 True,但实际上不应该返回。我尝试在互联网上查找,但没有任何效果。我认为 collide rect 不知何故没有使用两个精灵的实际坐标。有人能帮忙吗?

import pygame
import pygame.sprite
import sys


gameDisplay = pygame.display.set_mode((800,600))
pygame.display.set_caption("test_collision")
clock = pygame.time.Clock()
crashed = False


class Ball(pygame.sprite.Sprite):
    def __init__(self):
        pygame.sprite.Sprite.__init__(self)
        self.image = pygame.image.load("ball.png")
        self.rect = self.image.get_rect()
        self.x = 280
        self.y = 475
        self.col = False
    def update(self):
        gameDisplay.blit(self.image, (self.x,self.y))
        self.rect = self.image.get_rect()
    def test_collisions(self,sprite):
        self.col = pygame.sprite.collide_rect(self,sprite)
class Obstacle(pygame.sprite.Sprite):
    def __init__(self):
        pygame.sprite.Sprite.__init__(self)
        self.x = 1000
        self.y = 483
        self.image = pygame.image.load("obstacle.png")
        self.time = pygame.time.get_ticks()
        self.rect = self.image.get_rect()
    def change_x(self):
        self.time = pygame.time.get_ticks()
        self.x = -(self.time/5) + 800
    def update(self):
        self.rect = self.image.get_rect()
        gameDisplay.blit(self.image,(self.x,self.y))


obstacle = Obstacle()
ball = Ball()      
while not crashed:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            crashed = True
    gameDisplay.fill((255,255,255))
    ball.update()
    obstacle.change_x()
    obstacle.update()
    ball.test_collisions(obstacle)
    if ball.col:
        print("colided")
    pygame.display.flip()
    clock.tick(1000)


pygame.quit()
sys.exit()

PS 这是我的第一篇帖子:)


解决方案 1:

pygame.Surface.get_rect.get_rect()返回一个与Surface对象大小相同的矩形,但由于Surface对象没有位置,因此它返回的矩形始终从 (0, 0) 开始。使用该函数将 Surface放置

在显示屏上的某个位置。blit

您必须通过关键字参数设置矩形的位置,例如:

self.rect = self.image.get_rect(topleft = (self.x, self.y))

或者分配给虚拟属性(参见pygame.Rect),例如:

self.rect = self.image.get_rect()
self.rect.topleft = (self.x, self.y)

完全没有必要添加一些额外的属性self.xself.y。而是使用矩形的位置。例如:

class Ball(pygame.sprite.Sprite):
    def __init__(self):
        pygame.sprite.Sprite.__init__(self)
        self.image = pygame.image.load("ball.png")
        self.rect = self.image.get_rect(topleft = (280, 475))
        self.col = False
    def update(self):
        gameDisplay.blit(self.image, self.rect)
    def test_collisions(self,sprite):
        self.col = pygame.sprite.collide_rect(self,sprite)

class Obstacle(pygame.sprite.Sprite):
    def __init__(self):
        pygame.sprite.Sprite.__init__(self)
        self.image = pygame.image.load("obstacle.png")
        self.time = pygame.time.get_ticks()
        self.rect = self.image.get_rect(topleft = (1000, 483))
    def change_x(self):
        self.time = pygame.time.get_ticks()
        self.rect.x = -(self.time/5) + 800
    def update(self):
        gameDisplay.blit(self.image, self.rect)

进一步请注意,如果您使用和调用,您可以Ball.update()分别摆脱这些方法(您可以删除它们),它使用所包含精灵的和属性来绘制它们。例如:Obstacle.update()`pygame.sprite.Group.draw().image`.rect

obstacle = Obstacle()
ball = Ball()      
all_sprites = pygame.sprite.Group([obstacle, ball])

while not crashed:

    # [...]
  
    gameDisplay.fill((255,255,255))
    
    all_sprites.draw(gameDisplay)
    
    pygame.display.flip()
    clock.tick(1000)
相关推荐
  为什么项目管理通常仍然耗时且低效?您是否还在反复更新电子表格、淹没在便利贴中并参加每周更新会议?这确实是耗费时间和精力。借助软件工具的帮助,您可以一目了然地全面了解您的项目。如今,国内外有足够多优秀的项目管理软件可以帮助您掌控每个项目。什么是项目管理软件?项目管理软件是广泛行业用于项目规划、资源分配和调度的软件。它使项...
项目管理软件   642  
  引言在当今快速变化的科技市场中,企业要想保持竞争力,就必须具备高效的产品开发流程。小米作为一家以创新驱动的科技公司,其集成产品开发(IPD)流程在业界颇受关注。其中,技术路线图规划作为IPD流程的核心环节,对于确保产品技术领先、满足市场需求以及实现长期战略目标至关重要。本文将深入探讨小米IPD流程中的技术路线图规划,分...
华为IPD是什么   0  
  在当今快速变化的商业环境中,项目管理的高效执行是企业成功的关键。为了应对日益复杂的产品开发挑战,企业纷纷寻求将产品开发流程(Product Development Process, PDCP)与集成产品开发(Integrated Product Development, IPD)流程相结合的策略,以实现更高效、更协同的...
IPD管理   0  
  在当今竞争激烈的市场环境中,提高客户满意度是企业持续发展和成功的关键。为了实现这一目标,企业需要不断优化其产品开发和管理流程。IPD(Integrated Product Development,集成产品开发)流程图作为一种高效的项目管理工具,能够帮助企业实现跨部门协作、优化资源配置,并最终提升客户满意度。本文将深入探...
IPD流程是谁发明的   0  
  在项目管理领域,集成产品开发(IPD, Integrated Product Development)流程被视为提升项目成功率的关键框架。IPD通过其系统化的方法,将产品开发过程中的各个阶段紧密连接,确保从概念到市场的每一步都经过深思熟虑和高效执行。本文将深入探讨IPD流程的六个核心阶段如何深刻影响项目成功,并为项目管...
IPD流程中CDCP   0  
热门文章
项目管理软件有哪些?
云禅道AD
禅道项目管理软件

云端的项目管理软件

尊享禅道项目软件收费版功能

无需维护,随时随地协同办公

内置subversion和git源码管理

每天备份,随时转为私有部署

免费试用