- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有这个任务,当我点击鼠标时,一个球将被发射并最终摧毁一个盒子。我无法通过单击鼠标移动球。在“打印初始值行”之后定义的变量必须是这些值。我对 pygame 不太熟悉,不知道我应该在哪里画画,也不知道我是否应该在画一个新球之前把球移开。
import pygame, sys
from Drawable import *
from Ball import *
from Block import *
from Text import *
from pygame.locals import *
pygame.init()
surface = pygame.display.set_mode((500,500))
surface.fill((255,255,255))
class Line(Drawable):
def __init__(self,x=0, y=0,color=(0,255,0)):
super().__init__(x, y, color)
self.position = x , y
self.visible = False
def draw(self):
if self.visible == True:
pygame.draw.line(surface,(0,0,0),(0,400),(500,400))
def get_rect(self):
pass
ground = Line()
ground.visible = True
ground.draw()
ball = Ball()
ball.visible = True
ball.draw(surface)
block = Block()
block.visible = True
block.draw(surface)
text = Text()
text.visible = True
text.draw(surface)
print("Initial Ball Location:", ball.position)
dt = 0.1
g = 6.67
R = 0.7
eta = 0.5
mouespos1 = 0
mousepos2 = 0
xv = 1
yv = 1
def mousedown():
global mousepos1
mousepos1 = pygame.mouse.get_pos()
def mouseup():
global xv
global yv
mousepos2 = pygame.mouse.get_pos()
xv = mousepos2[0] - mousepos1[0]
print("XV in mouseup:", xv)
yv = -1 * (mousepos2[1] - mousepos1[1])
print("YV in mouesup:", yv)
def updateballpos():
global xv, yv
print("Ran Update")
moveX = ball.x + (dt * xv)
ball.moveX(moveX)
moveY = ball.y - (dt * yv)
ball.moveY(moveY)
print("new x", ball.x)
print("new y", ball.y)
if ball.y > 400:
yv = -R * yv
xv = eta * xv
else:
yv = yv - g * dt
ball.draw(surface)
pygame.display.update()
while(True):
for event in pygame.event.get():
if (event.type == pygame.QUIT) or \
(event.type == pygame.KEYDOWN and event.__dict__['key'] == pygame.K_q):
pygame.quit()
exit()
if event.type == pygame.MOUSEBUTTONDOWN:
mousedown()
if event.type == pygame.MOUSEBUTTONUP:
mouseup()
print("xv in while", xv)
print("yv in while", yv)
if yv > 0 and xv > 0:
updateballpos()
pygame.display.update()
这是 Ball 类和 Drawable 类
import pygame
import abc
import random
class Drawable(metaclass = abc.ABCMeta):
def __init__(self,x,y,color):
self.x = x
self.y = y
self.color = color
self.position = (self.x,self.y)
self.visible = False
def getLoc(self):
return (self.x, self.y)
def setLoc(self,p):
self.x = p[0]
self.y = p[1]
def getColor(self):
return self.__color
def getX(self):
return self.__x
def getY(self):
return self.__y
@abc.abstractmethod
def draw(self,surface):
pass
@abc.abstractmethod
def get_rect(self):
pass
from Drawable import *
import pygame, sys
from pygame.locals import *
class Ball(Drawable):
def __init__(self, x=20, y=400,color=(0, 0,0)):
super().__init__(x, y,color)
self.x = x
self.y = y
self.position = (self.x,self.y)
self.visible = False
def draw(self,s):
if self.visible == True:
pygame.draw.circle(s,(255,0,0),(int(self.x), int(self.y)),8)
def get_rect(self):
pass
def getLoc(self):
return (self.x, self.y)
def setLoc(self, x, y):
self.x = x
self.y = y
def moveX(self, inc):
self.x = self.x + inc
def moveY(self, inc):
self.y = self.y + inc
最佳答案
我建议添加 updateballpos
作为 Ball
的方法,因为它只更新球的属性。 xv
和 yv
变量也应该是球的属性,然后你可以给每个球一个不同的速度。
要生成新球,您只需创建 Ball
实例并将它们附加到列表中,然后使用 for
循环更新并绘制此列表中的球。在绘制球之前,您可以使用 fill
方法(或 blit 背景表面)清除屏幕。
对于弹弓效果,您可以存储 pygame.MOUSEMOTION
事件的 rel
属性(以像素为单位的鼠标相对移动),当您将其传递给球时实例化它们并将其分配给 xv
、yv
属性。
这是一个最小的完整示例:
import sys
import pygame
pygame.init()
screen = pygame.display.set_mode((500,500))
class Ball:
# Pass the xv, yv as arguments as well.
def __init__(self, x=20, y=400, xv=0, yv=0, color=(0, 0,0)):
self.x = x
self.y = y
# Give the objects xv and yv attributes.
self.xv = xv
self.yv = yv
self.position = (self.x,self.y)
self.visible = False
def draw(self,s):
if self.visible == True:
pygame.draw.circle(s,(255,0,0),(int(self.x), int(self.y)),8)
def get_rect(self):
pass
def getLoc(self):
return (self.x, self.y)
def setLoc(self, x, y):
self.x = x
self.y = y
def moveX(self, dt):
self.x += dt * self.xv
def moveY(self, dt):
self.y += dt * self.yv
# Add a method to update the position and other attributes.
# Call it every frame.
def update(self, dt):
self.moveX(dt)
self.moveY(dt)
if self.y > 400:
self.yv = -R * self.yv
self.xv = eta * self.xv
else:
self.yv = self.yv - g * dt
dt = 0.1
g = 6.67
R = 0.7
eta = 0.5
balls = []
clock = pygame.time.Clock()
rel_x = 0
rel_y = 0
while True:
for event in pygame.event.get():
if (event.type == pygame.QUIT or
event.type == pygame.KEYDOWN and event.key == pygame.K_q):
pygame.quit()
sys.exit()
if event.type == pygame.MOUSEBUTTONUP:
# Create a new ball instance and append it to the list.
# Pass the rel (the relative mouse movement) as well.
ball = Ball(xv=rel_x*10, yv=rel_y*10) # * 10 to make the balls faster.
ball.visible = True
balls.append(ball)
if event.type == pygame.MOUSEMOTION:
# event.rel is the relative movement of the mouse.
rel_x = event.rel[0]
rel_y = event.rel[1]
# Call the update methods of all balls.
for ball in balls:
ball.update(dt)
# Clear the screen with fill (or blit a background surface).
screen.fill((255,255,255))
# Draw the balls.
for ball in balls:
ball.draw(screen)
pygame.display.update()
dt = clock.tick(30) / 1000
关于python - Pygame 用鼠标移动球,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50777623/
我正在尝试为我的网站创建一个功能,允许用户使用 mousemove 和 touchmove 事件水平滚动 div 内容(类似于 Apple AppStore any app Screenshots s
我有固定的侧边栏导航栏,它在悬停时工作,但我想通过单击折叠按钮打开第一个菜单。类似于悬停在菜单 1 上的工作方式。我已经尝试了以下方法。 jsfiddle Demo $(document).on('c
Mouse.Synchronize() 在 .Net 中有什么作用? MSDN 说它“强制鼠标重新同步” 最佳答案 只是我的假设: Stylus 中存在类似的方法类别:Stylus.Synchroni
有没有什么办法可以同时使用鼠标, pygame.mouse.set_visible(False) 已激活。当前鼠标仅在尝试使用时返回右下坐标。需要在隐藏鼠标时能够获得正确的坐标。 在他们的 docum
我有一个缺少数据的数据库。我需要估算数据(我使用的是鼠标),然后根据原始列创建新列(使用估算数据)。我需要使用这些新列进行统计分析。 具体来说,我的参与者使用李克特 7 分量表填写了几份问卷。有些人没
我正在编写一个与电脑交互的机器人。简而言之,我所做的是: -截取屏幕截图- 在此屏幕截图上识别对象(使用 cv2 matchTemplate) -使用找到的位置进行一些鼠标操作(例如:将鼠标指针移动到
我的程序是一个文本游戏,它使用 WindowsForm 上的文本框模拟控制台输出。我试图实现的一个功能是通过单击一个按钮,它将以一定的速度输出到 TextBox,这是通过这种方法实现的 atm: pu
我遇到了一个问题。如果有任何帮助,我将不胜感激。 我正在尝试从玩家位置射击到鼠标点击位置。代码没有给我任何错误,根据我的逻辑,它应该可以工作,但它没有 它创建了项目符号对象,仅此而已。 //Bulle
给定一个带蓝牙的 Windows Mobile 6.1 智能手机,我想将它注册为鼠标。 基本上我现在做的: 使用 Guid {00001124-0000-1000-8000-00805f9b34fb}
我有一个关于在 JavaFX 中实现鼠标拖动事件的正确方法的问题。 我的 playGame() 方法当前使用 onMouseClicked,但这只是一个占位符 理想情况下,我希望“飞盘”沿着鼠标拖动的
已关闭。此问题旨在寻求有关书籍、工具、软件库等的建议。不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以
我目前正在使用 Windows 的 RawInput API 来访问键盘和鼠标输入。我有点困惑的一件事是,当我将鼠标注册为 RawInputDevice 时,我无法移动我的 Win32 窗口或使用那里
我想在我的网站浏览器窗口中 move 鼠标,如下所示:www.lmsify.com。我怎样才能做到这一点?(javascript、flash、activex) 问候,丽莎M 最佳答案 他们并没有真正
我想要一个动画。我是后端开发人员,但我必须使用 jquery 创建动画。 动画、背景和元素位置随鼠标移动而变化。 类似于http://www.kennedyandoswald.com/#!/premi
如何将鼠标“锁定”到某个 OpenGL 窗口。有点像在 Minecraft 中是如何完成的。GameDev 是一个更好的询问地点吗? 最佳答案 正如 Robert 在评论中所说,OpenGL 实际上并
我正在尝试实现一个颜色选择器,它从屏幕上各处的像素中获取颜色。为此,我计划使用全局鼠标 Hook 来监听 WM_MOUSEMOVE,以便在鼠标四处移动时更新颜色,并监听鼠标点击以确认 (WM_LBUT
如何使用 Java 和 JNA(Java native 访问)与 Windows API 交互?。我试图通过在鼠标输入流上排队鼠标事件来让鼠标做某事,并且代码有效,因为 SendInput(...)
我想用 C++ 脚本 move 鼠标光标。我在 Parallels 中的 Windows 7 中使用 Visual C++ 2010 Express,并创建了一个控制台应用程序。 我知道 SetCur
我有一些关于 WH_MOUSE 的问题。根据我的阅读,通过将钩子(Hook)放入 DLL 中,它会注入(inject)进程。这是否意味着捕获鼠标也适用于我的桌面、菜单启动等?那么应用程序的标题栏呢?我
如何为多只鼠标显示另一个光标? 我有两个 TMemos,两个可以输入各自 TMemo 的键盘,2 个鼠标,我需要 2 个光标。 如果假设的话,我已经可以检测出哪只鼠标是哪只了。我怎样才能让我自己的光标
我是一名优秀的程序员,十分优秀!