簡體   English   中英

矩形之間的Python碰撞檢測

[英]Python collision detection between rectangles

我試圖弄清楚如何在矩形之間進行一些基本的碰撞檢測。 它在我的敵人矩形的所有面上(左側除外)起作用。 雖然似乎可以檢測到碰撞,但是我的玩家的移動方向與我的指示相反。

#!/usr/bin/python

import pygame
from random import randrange
pygame.init()

BLACK = ( 0, 0, 0)
WHITE = (255, 255, 255)
GREEN = (0, 255, 0)
RED = (255, 0, 0)
color = GREEN

w = 800
h = 600
size = (w, h)


screen = pygame.display.set_mode(size)
pygame.display.set_caption("Cool Window")



done = False

clock = pygame.time.Clock()
pos_x = 0
pos_y = 0

enemy_pos_x = w/2
enemy_pos_y = h/2
last_move = "none"



while not done:

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            done = True



    if(event.type==pygame.KEYDOWN):
        if(event.key == pygame.K_ESCAPE):
            done = True
        if(event.key == pygame.K_LEFT):
            pos_x -= 5
            last_move = "left"
            print 'Posx: %s.\n' % pos_x

        if(event.key == pygame.K_RIGHT):
            pos_x += 5
            las_move = "right"
            print 'Posx: %s.\n' % pos_x

        if(event.key == pygame.K_UP):
            pos_y -= 5
            last_move = "up"
            print 'Posy: %s.\n' % pos_y

        if(event.key == pygame.K_DOWN):
            pos_y += 5
            last_move = "down"
            print 'Posy: %s.\n' % pos_y

    if pos_x+40 > 800:
        pos_x -= 5
    if pos_x < 0:
        pos_x += 5

    if pos_y+40 > 600:
        pos_y -= 5
    if pos_y < 0:
        pos_y += 5

    #collision with enemy
    if (pos_x+40 >= enemy_pos_x ) & (pos_y+40 >= enemy_pos_y) & (pos_x <= enemy_pos_x+40) & (pos_y <= enemy_pos_y+40):

        print 'Collision \n'
        if last_move == "left" :
            pos_x += 5
        if last_move == "right" :
            pos_x -= 5
        if last_move == "up" :
            pos_y += 5
        if last_move == "down" :
            pos_y -= 5





    screen.fill(BLACK)

    #Draw

    pygame.draw.rect(screen, WHITE, [enemy_pos_x, enemy_pos_y, 40, 40])
    pygame.draw.rect(screen, color, [pos_x, pos_y, 40, 40])



    pygame.display.flip()
    clock.tick(60)


pygame.quit()

我自己遇到了這個問題,所以我做了一些研究,找到了一個不錯的JavaScript代碼,因此我將其翻譯為python,這是布局:

if rect_1_x < rect_2_x + rect_1_width and rect_1_x + rect_2_width > rect_2_x and rect_1_y < rect_2_y + rect_1_height and rect_2_height + rect_1_y > rect_2_y:

#now type whatever code you want to be activated when the rectangles touch

通過檢測第一個矩形(rect_1)的任何邊緣是否接觸第二個矩形(rect_2)的任何邊緣來工作。 這不能解決傳遞問題,只是可以更好地計算碰撞。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM