用pygam单击并拖动矩形

2024-05-09 21:05:00 发布

您现在位置:Python中文网/ 问答频道 /正文

我是pygame的新手,我正在编写一个程序,允许用户在pygame窗口周围单击并拖动一个矩形,然后通过一个套接字发送坐标。我可以通过鼠标点击来移动矩形,但我已经在它周围乱搞了一段时间,仍然不知道如何实现点击和拖动。任何帮助都将不胜感激。以下是相关代码:

from pygame.locals import *
import socket, pygame, time 
#define variables
x = y = 0
screen = pygame.display.set_mode((430, 410))
targetRectangle = pygame.draw.rect(screen, (255, 0, 0), (176, 134, 7, 7))
pygame.display.flip()
#define smaller functions
  #define function to start pygame window  
def startPygame():
  pygame.display.set_caption(option + " Tracking System")
  pygame.mouse.set_visible(True)
  screen.fill((255, 255, 255))
  targetRectangle = pygame.draw.rect(screen, (255, 0, 0), (176, 134, 7, 7))
  pygame.display.flip()
  #define function to update pygame window 
def updateWindow():
  screen.fill((255, 255, 255))
  global targetRectangle
  global xPosition
  global yPosition
  targetRectangle = pygame.draw.rect(screen, (255, 0, 0), (xPosition, yPosition, 7, 7))
  pygame.display.flip()
#define main functions
def collectMouseData():
  startPygame()
  print "\n"
  print "mouse tracking system"
    #wait until a mouse button is clicked
  running = 1
  while running == 1:
    event = pygame.event.poll()
    if event.type == pygame.QUIT:
      c.send("quit")
      pygame.quit()
      running = 0
    #see if a mousebutton is down
    elif event.type == pygame.MOUSEBUTTONDOWN:
      xMouse = event.pos[0]
      yMouse = event.pos[1]
      #see if mouse click collides with targetRectangle 
      if targetRectangle.collidepoint(xMouse, yMouse):
        global xPosition
        xPosition = event.pos[0]
        global yPosition
        yPosition = event.pos[1]
        updateWindow()
        global targetRectangle
        sendData(targetRectangle)

Tags: posrecteventifdisplayscreenglobalpygame
1条回答
网友
1楼 · 发布于 2024-05-09 21:05:00

你必须使用

  • MOUSEBUTTONDOWN检查是否单击了对象并设置drag = True(并记住鼠标位置与左上角矩形之间的偏移)
  • MOUSEBUTTONUP设置drag = False
  • MOUSEMOTION在使用鼠标位置和偏移量drag == True时移动对象。

工作实例

import pygame

# --- constants --- (UPPER_CASE names)

SCREEN_WIDTH = 430
SCREEN_HEIGHT = 410

#BLACK = (  0,   0,   0)
WHITE = (255, 255, 255)
RED   = (255,   0,   0)

FPS = 30

# --- classses --- (CamelCase names)

# empty

# --- functions --- (lower_case names)

# empty

# --- main ---

# - init -

pygame.init()

screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
#screen_rect = screen.get_rect()

pygame.display.set_caption("Tracking System")

# - objects -

rectangle = pygame.rect.Rect(176, 134, 17, 17)
rectangle_draging = False

# - mainloop -

clock = pygame.time.Clock()

running = True

while running:

    # - events -

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            running = False

        elif event.type == pygame.MOUSEBUTTONDOWN:
            if event.button == 1:            
                if rectangle.collidepoint(event.pos):
                    rectangle_draging = True
                    mouse_x, mouse_y = event.pos
                    offset_x = rectangle.x - mouse_x
                    offset_y = rectangle.y - mouse_y

        elif event.type == pygame.MOUSEBUTTONUP:
            if event.button == 1:            
                rectangle_draging = False

        elif event.type == pygame.MOUSEMOTION:
            if rectangle_draging:
                mouse_x, mouse_y = event.pos
                rectangle.x = mouse_x + offset_x
                rectangle.y = mouse_y + offset_y

    # - updates (without draws) -

    # empty

    # - draws (without updates) -

    screen.fill(WHITE)

    pygame.draw.rect(screen, RED, rectangle)

    pygame.display.flip()

    # - constant game speed / FPS -

    clock.tick(FPS)

# - end -

pygame.quit()

编辑:GitHub上有许多矩形或圆和按钮的其他示例:

furas/python-examples/pygame/drag-rectangles-circles

相关问题 更多 >