如何检查鼠标点击是否在pygame中的圆圈内?

时间:2015-04-23 19:52:06

标签: python python-2.7 pygame

import pygame

pygame.init()

white = 255,255,255
cyan = 0,255,255

gameDisplay = pygame.display.set_mode((800,600))
pygame.display.set_caption('Circle Click Test')

stop = False

while not stop:
    gameDisplay.fill(white)

    pygame.draw.circle(gameDisplay,cyan,(400,300),(100))

    for event in pygame.event.get():

        if event.type == pygame.MOUSEBUTTONDOWN:
            ####################################################  

        if event.type == pygame.QUIT:
            pygame.quit()
            sys.exit()

    pygame.display.update()

这里我在屏幕上有一个圆圈,我想查看是否有用户 点击圈内。我知道如何用矩形做这个,我想它会是类似的。感谢您的帮助,我对pygame很新。

这是我对矩形的看法:

import pygame

pygame.init()

white = 255,255,255
cyan = 0,255,255

gameDisplay = pygame.display.set_mode((800,600))
pygame.display.set_caption('Circle Click Test')

rectangle = pygame.Rect(400,300,200,200)

stop = False

while not stop:
    gameDisplay.fill(white)

    pygame.draw.rect(gameDisplay, cyan,rectangle,4)

    for event in pygame.event.get():

        if event.type == pygame.MOUSEBUTTONDOWN:
            click = rectangle.collidepoint(pygame.mouse.get_pos())

            if click == 1:
                print 'CLICKED!'

        if event.type == pygame.QUIT:
            pygame.quit()
            sys.exit()

    pygame.display.update()

2 个答案:

答案 0 :(得分:2)

使用距离公式:

################################################################################
# Imports ######################################################################
################################################################################

from pygame.locals import *
import pygame, sys, math

################################################################################
# Screen Setup #################################################################
################################################################################

pygame.init()
scr = pygame.display.set_mode((640, 480))
pygame.display.set_caption('Box Test')

################################################################################
# Game Loop ####################################################################
################################################################################

while True:
    pygame.display.update(); scr.fill((200, 200, 255))
    pygame.draw.circle(scr, (0, 0, 0), (400, 300), 100)

    x = pygame.mouse.get_pos()[0]
    y = pygame.mouse.get_pos()[1]

    sqx = (x - 400)**2
    sqy = (y - 300)**2

    if math.sqrt(sqx + sqy) < 100:
        print 'inside'

    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()

################################################################################
################################################################################
################################################################################

答案 1 :(得分:0)

你可以像这样对像素进行采样 detect click on shape pygame 否则使用毕达哥拉斯来获得距离中心的距离。

正如马利克所说,毕达哥拉斯适用于圆圈,但对于一般的纯色形状你可以这样做:

if event.type == pygame.MOUSEBUTTONDOWN:
  click = gameDisplay.get_at(pygame.mouse.get_pos()) == cyan

  if click == 1:
      print 'CLICKED!'