gpt4 book ai didi

python - 在鼠标矩形顶部进行位 block 传送时图像滞后

转载 作者:行者123 更新时间:2023-12-01 07:36:43 28 4
gpt4 key购买 nike

我正在尝试使用 pygame 构建一个简单版本的目标训练器,并决定将原始鼠标指针更改为十字准线(图像)。当测试图像是否已在鼠标矩形上进行位图传输时,我注意到图像明显滞后于鼠标的位置。

我尝试通过将 clock.tick() 设置为不同的整数来篡改游戏的 FPS。尝试在代码的不同部分加载图像。然而,似乎没有什么可以改变延迟。

import pygame

pygame.init()
from win32api import GetSystemMetrics ## screen size getter so that theres no need to use coordinates, can be run on multiple resolutions

screen_width = GetSystemMetrics(0) ## get screen width and hieght
screen_hieght = GetSystemMetrics(1)


class GameWindow():

screen = pygame.display.set_mode((0,0), pygame.FULLSCREEN)
pygame.display.toggle_fullscreen()
caption = pygame.display.set_caption("Alex's FPS Trainer")
main_screen_font = pygame.font.SysFont('consolas', 100)

main_screen_background = pygame.image.load("fps_background.jpg") ## loading images
xhair_image = pygame.image.load("crosshair.png")

def __init__(self):
self.background = pygame.transform.scale(GameWindow.main_screen_background, (screen_width, screen_hieght))
self.title = self.main_screen_font.render("Alex's FPS Aim Trainer", 1, (245, 66, 66))
self.run()

def blit(self):
self.screen.blit(self.background, (0, 0))
self.screen.blit(self.title, (screen_width/2 - screen_width/3.5, screen_hieght/5))
self.screen.blit(GameWindow.xhair_image, (pygame.mouse.get_pos()[0] - 13.5,pygame.mouse.get_pos()[1] - 13.5)) ## centres mouse

def createButton(self):
pass

def run(self):
run = True


while run:
pygame.time.Clock().tick(120)

for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_ESCAPE: ## temporary quit key
run = False
if event.type == pygame.MOUSEBUTTONDOWN: ## detect clicks
print("Mouse pressed")

self.blit()
pygame.display.update()

pygame.quit()

GameWindow = GameWindow()

我希望图像能够无延迟地跟随鼠标,因为瞄准训练器中的十字准线很好地跟随鼠标非常重要。

最佳答案

最简单的解决方案是将鼠标光标更改为 win32api.SetCursor() :

win32api.SetCursor(cursor)

光标可以通过 win32gui.LoadImage() 加载来自 .cur 文件:

cursor = win32gui.LoadImage(0, "cursor.cur", win32con.IMAGE_CURSOR,
0, 0, win32con.LR_LOADFROMFILE)

或来自.ico文件。

cursor = win32gui.LoadImage(0, path + "cursor.ico", win32con.IMAGE_ICON,
0, 0, win32con.LR_LOADFROMFILE)

另请参阅CursorsLoadImage .

为了避免闪烁,重要的是要通过pygame.mouse.set_visible()使“pygame”光标不可见。

pygame.mouse.set_visible(False)

将光标设置在 pygame.display.update() 之前分别pygame.display.flip() ,使其“可见”并且不让pygame有机会“隐藏”它。

win32api.SetCursor(cursor)
pygame.display.update()

查看示例应用程序:

import pygame
import win32api, win32gui, win32con

pygame.init()
screen = pygame.display.set_mode((640, 480))

cursor = win32gui.LoadImage(0, path + "cursor.ico", win32con.IMAGE_ICON,
0, 0, win32con.LR_LOADFROMFILE)

pygame.mouse.set_visible(False)

run = True
while run:
pygame.time.Clock().tick(120)

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

win32api.SetCursor(cursor)
pygame.display.update()

pygame.quit()

关于python - 在鼠标矩形顶部进行位 block 传送时图像滞后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56961186/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com