Pygame:将矩形与同一列表中的其他矩形碰撞 [英] Pygame: colliding rectangles with other rectangles in the same list

查看:18
本文介绍了Pygame:将矩形与同一列表中的其他矩形碰撞的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个包含 10 个受重力影响的绘制矩形(在我的脚本中称为立方体)的列表.我制作了一个简单的碰撞系统,让它们在撞击地面时停止.我怎样才能做到当 2 个立方体碰撞时它们不会像与地面一样下落?

I have a list of 10 drawn rectangles (referenced as cubes in my script) that are affected by gravity. I made a simple collision system for them to stop when they hit the ground. How can I make it so when 2 cubes collide they stop falling like they do with the ground?

import pygame
import time
import random
pygame.init()
clock = pygame.time.Clock()
wnx = 800
wny = 600
black = (0,0,0)
grey = (75,75,75)
white = (255,255,255)
orange = (255,100,30)
wn = pygame.display.set_mode((wnx, wny))
wn.fill(white)
def cube(cx,cy,cw,ch):
    pygame.draw.rect(wn, orange, [cx, cy, cw, ch])
def floor(fx,fy,fw,fh):
    pygame.draw.rect(wn, grey, [fx, fy, fw, fh])
def main():
    floory = 550    
    number = 30
    cubex = [0] * number
    cubey = [0] * number
    cubew = 10                          
    cubeh = 10
    for i in range(len(cubex)):
        cubex[i] = (random.randrange(0, 80)*10)
        cubey[i] = (random.randrange(2, 5)*10)
    gravity = -10
    exit = False

    while not exit:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                exit = True
        for i in range(len(cubex)): #i want to check here if it collides with an other cube
            if not (cubey[i] + 10) >= floory:
                cubey[i] -= gravity

        wn.fill(white)
        floor(0,floory,800,50)

        for i in range(len(cubex)):
            cube(cubex[i], cubey[i], cubew, cubeh)

        pygame.display.update()
        clock.tick(5)
main()
pygame.quit()
quit()

推荐答案

使用 pygame.Rect.colliderect 检查矩形是否相交.

Use pygame.Rect.colliderect to check if to rectangles are intersecting.

创建一个矩形(pygame.Rect) 定义立方体的下一个位置(区域):

Create an rectangle (pygame.Rect) which defines the next position (area) of the cube:

cubeR = pygame.Rect(cubex[i], cubey[i] + 10, cubew, cubeh)

找出所有相交的矩形

cl = [j for j in range(len(cubey)) if j != i and cubeR.colliderect(pygame.Rect(cubex[j], cubey[j], cubew, cubeh))]

如果有 any() 碰撞:

And don't move (let further "fall") the cube if there is any() collision:

if not any(cl):
    # [...]

支票可能如下所示:

for i in range(len(cubex)):
    cubeR = pygame.Rect(cubex[i], cubey[i] + 10, cubew, cubeh)
    cisect = [j for j in range(len(cubey)) if j != i and cubeR.colliderect(pygame.Rect(cubex[j], cubey[j], cubew, cubeh))]
    if not any(cisect) and not (cubey[i] + 10) >= floory:
        cubey[i] -= gravity

注意,因为所有的立方体都对齐到一个 10*10 的栅格,所以检查立方体的原点是否相等就足够了:

Note, since all the cubes are aligned to an 10*10 raster, it is sufficient to check if the origins of the cubes are equal:

for i in range(len(cubex)):
    cisect = [j for j in range(len(cubey)) if j != i and cubex[i] == cubex[j] and cubey[i]+10 == cubey[j]]
    if not any(cisect) and not (cubey[i] + 10) >= floory:
        cubey[i] -= gravity

这篇关于Pygame:将矩形与同一列表中的其他矩形碰撞的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆