- 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/
我试图让球弹起,或者在它们碰撞时反转方向。我让它检查移动方法中的碰撞。它检查两个球之间是否发生碰撞,如果发生碰撞,它将反转速度。问题是,有时球会互相穿过,主要是较小的球。球要么弹跳得早,要么弹得晚,要
我一直在努力根据 2 个弹跳圆/球获得正确的矢量值。我知道他们什么时候反弹;使用毕达哥拉斯,但后来我迷路了。我知道我可能不得不使用三 Angular 函数 cos/sin/tan2。 情况,以我的形象
using UnityEngine; using System.Collections; public class audio : MonoBehaviour { public AudioClip
我正在尝试创建 3d 球体的动画,该动画是由该球体表面上的随机点制作的。这是我的代码,我在其中创建 500 个随机极点,然后将这些极坐标转换为笛卡尔坐标,然后将 X 和 Y 坐标映射到屏幕。这就是我得
我创建的这个程序应该基本上使用公式 V=Pi*h^2(3r-h)/3 但我的最终答案并没有相加。 例如:如果我用 1 代替半径,用 2 代替高度,我应该得到 4.18,但通过程序我得到 -1。 #in
我正在尝试制作一个简单的游戏,但如果我需要弹跳球的图像,我该怎么做呢?我正在做这个- function draw() { ctx.clearRect(0, 0, 300, 300);
我只是提出一个有可能结束的想法。我需要画一个 Crystal 球,红色和蓝色粒子随机分布在其中。我想我必须使用 photoshop,甚至尝试在图像中制作球,但由于这是用于研究论文并且不必很花哨,我想知
我有圆与圆相交的代码。但我需要将其扩展到 3-D。你能帮我写函数吗? static class Point{ double x, y, z; int dimension; Po
目标:我有一个三 Angular 形的球。球具有初始位置和速度。我试图弄清楚球会击中三 Angular 形的哪一边。 我试过的: I derived a formula通过参数化球的路径和三 Angu
由于我是 cocos2d 的新手,而且我很挣扎。任何人都可以建议我如何解决这个问题。 我有 3 个盒子(它们是运动体) 还有多个球(它们是动态物体),每个球都有一个标签值(盒子编号)。 我在射球位置和
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this qu
我正在为 rpm 编写一个 .spec 文件,它只是将一个 tar 球解压到文件系统上的某个目录中 那么我把原来的 tar 球放在哪里呢?我看到的所有示例都是从互联网上下载原始 tar 球的。但就我而
我是 THREE.js 的新手,对物理知识知之甚少 - 但我正在尝试构建一个足球游戏引擎(从顶部看),现在我正在为球的运动而苦苦挣扎。 当尝试将球从一侧移动到另一侧时,旋转始终朝向一个方向,我不明白如
我必须在 Android 中开发一个在屏幕上 move 球的应用程序。我需要用加速度计 move 球。我有这段代码,但球绕过边界并且没有反弹。 package com.example.test
我正在尝试创建一个 Roomba 程序,其中有一个球在屏幕上弹跳,以清洁它经过的瓷砖。该程序应该从所有灰色瓷砖开始,当球经过它们时,瓷砖就会变成白色。目前我有一个可以到处弹跳的球和一个创建 5x5 网
我正在尝试为我当前的作业创建一个加载屏幕效果。 它需要我们创建一个与 position: fixed .以此资金为背景。使用这个 div,有 4 个 与 position: absolute . 我们
我想将一个球(带有图像)扔到一个二维场景中,并在它到达一定距离时检查它是否发生碰撞。但我无法让它正确地“飞”。似乎这个问题已经被问过一百万次了,但随着我发现的越多,我就越困惑..现在我关注了this
这是我的代码 import java.util.*; import javafx.application.Application; import javafx.scene.Scene; import
我是一名优秀的程序员,十分优秀!