- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 pygame 和碰撞检测方面遇到问题。我编写的程序应该在单击时绘制一个矩形,在鼠标悬停时更改阿尔法。这两个有效。但我还尝试实现仅在矩形已存在/鼠标位于现有矩形上方时才执行的功能。
现在,我试图让程序在检测到碰撞时不绘制新的标记/矩形,但我想不出一种方法来做到这一点...我在代码示例中尝试的方法不起作用,它只返回最后添加的标记的碰撞状态...
我两个月前才开始编码,所以也许我错过了一些关于 python 的基本想法。我试图在不失去其功能要点的情况下发布尽可能少的代码。抱歉,如果还是太长。
那么有没有办法获得我想要的功能?
感谢您的帮助!
import pygame
pygame.init()
clock = pygame.time.Clock()
clock.tick(20)
BLACK = (0, 0, 0)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
screen = pygame.display.set_mode((500, 500))
running = True
LEFT = 1
class Marker(pygame.sprite.Sprite):
"""
used to draw the marker at a given position
"""
def __init__(self, x, y, key, function):
pygame.sprite.Sprite.__init__(self)
self.image = pygame.Surface((50, 50))
self.image.fill(RED)
self.image.set_alpha(50)
self.rect = self.image.get_rect()
self.rect.x = x
self.rect.y = y
self.function = function
def check_click(self, mouse):
if self.rect.collidepoint(mouse):
self.image.set_alpha(200)
return True
if not self.rect.collidepoint(mouse):
self.image.set_alpha(50)
def collide_check(self, mouse):
return self.rect.collidepoint(mouse)
def get_function(self):
return self.function
class Connections:
def __init__(self):
self.switch = False
self.con_dict = {}
self.key_dict = []
def generate_key(self, position): #generates a dictionary key out of mouse position
position_x, position_y = position
instance_name = str(position_x) + str(position_y)
return instance_name
def add_entrance_or_exit(self, position):
#sets marker/rectangle at mouse position(depending on switch state)
if not self.switch:
key = self.generate_key(position)
self.key_dict.append(key)
self.con_dict[key] = position
pos_x, pos_y = position
new_key = key + "_entrance"
new_key = Marker(pos_x, pos_y, key, "entrance")
all_sprites.add(new_key)
self.switch = True
else:
key = self.key_dict[-1]
old_pos = self.con_dict[key]
pos_x, pos_y = position
new_key = key + "_exit"
new_key = Marker(pos_x, pos_y, key, "exit")
all_sprites.add(new_key)
self.con_dict[key] = [old_pos, position]
self.switch = False
all_sprites = pygame.sprite.Group()
connections = Connections()
running = True
while running:
collide = None
for s in all_sprites:
mouse_pos = pygame.mouse.get_pos()
s.check_click(mouse_pos)
collide = s.check_click(mouse_pos)
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
elif event.type == pygame.MOUSEBUTTONDOWN and event.button == LEFT:
if collide == None:
mouse = pygame.mouse.get_pos()
connections.add_entrance_or_exit(mouse)
screen.fill(BLACK)
all_sprites.update()
all_sprites.draw(screen)
pygame.display.update()
pygame.quit()
最佳答案
由于 check_click
更改图像的 Alpha channel ,因此必须为每个 Sprite (s
) 调用它。 collide
应该是一个 bool 值(True
或 False
),并且必须设置 if s.check_click(mouse_pos)
评估True
:
running = True
while running:
mouse_pos = pygame.mouse.get_pos()
collide = False
for s in all_sprites:
if s.check_click(mouse_pos):
collide = True
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
elif event.type == pygame.MOUSEBUTTONDOWN and event.button == LEFT:
if not collide:
mouse = pygame.mouse.get_pos()
connections.add_entrance_or_exit(mouse)
请注意,这可以通过创建正在碰撞的 Sprite 列表并验证该列表是否包含不
any
来进一步简化。元素:
running = True
while running:
mouse_pos = pygame.mouse.get_pos()
collide_list = [s for s in all_sprites if s.check_click(mouse_pos)]
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
elif event.type == pygame.MOUSEBUTTONDOWN and event.button == LEFT:
if not any(collide_list):
mouse = pygame.mouse.get_pos()
connections.add_entrance_or_exit(mouse)
<小时/>
此外,评估鼠标是否位于矩形上是不够的,您必须评估在鼠标位置绘制的矩形是否与任何其他矩形相交 colliderect()
。图像的 Alpha channel 必须根据鼠标位置进行设置 collidepoint()
:
(请注意,collidepoint
分别 colliderect()
返回 True
或 False
)
class Marker(pygame.sprite.Sprite):
# [...]
def check_click(self, mouse):
self.image.set_alpha(200 if self.rect.collidepoint(mouse) else 50)
return self.rect.colliderect((*mouse, 50, 50))
<小时/>
关于python - Pygame问题: how to execute conditional on collision?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59522285/
现在我已经创建了一个额外的跨度来容纳一个条件。 568 || subKey == 0" ng-repeat="links in linksWrap.links">
一些 excel IF 语句可能会变得相当长,我正在寻找一种更简单的方法来编写它们。例如,如果我要写: If($B$4+13=7,$B$4+13,FALSE) 我认为它会更容易说: If($B$4+1
我有一个包含 FromDate 、 ToDate 、 VendorName 和 GoodsName 的表单,一旦一切为真,我需要显示结果 示例: FromDate="11/20/2019"、ToDat
我经常看到使用 !!condition 而不仅仅是常规条件的代码。即: if(!!value){ doSomething(); } 对比: if(value){ doSomething
这个问题有点模棱两可,这两个在汇编代码/性能方面是否等效: public void example{ do{ //some statements; if(condition)
在我看到的使用 Any 方法的 Linq 查询示例中,大约有一半是通过将其应用于 Where() 调用的结果来实现的,另一半则直接将其应用于集合。这两种样式是否总是等效的,或者在某些情况下它们可能会返
这个问题在这里已经有了答案: What does !!(x) mean in C (esp. the Linux kernel)? (3 个答案) 关闭 9 年前。 我见过人们使用带有两个 '!'
我对部署在生产环境中的应用程序进行了线程转储,该应用程序使用 logback。我不是分析线程转储的专家,但是,我必须这样做。正在学习,网上也看了一些文章。 下面是真正的线程转储: "logback-8
在 SQL 中(特别是 Postgres): 子句 where not foo='bar' in case foo is null 评估为某种 null,导致该行不是包含在结果中。 另一方面,子句 w
是不是类似于has and condition with join和where condition after join? 例如 对于以下两个查询,它会给我相同的结果吗 1) SELECT COUNT
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
如果您调用某个函数,并且该函数在发生错误时返回 NULL(例如,想想 malloc() 或 fopen()),两个更好: FILE *fp = fopen(argv[0], "r"); if (fp
我正在使用 Azure 数据工厂 V2,我需要在父检查验证中实现两级检查。例如:如果条件一为真,那么我需要检查条件 2。并且,如果条件 2 为真,则检查条件 3。 这是一种分层检查。当我在父 IF 条
使用 Linq to Entities 有以下区别吗? db.EntityName.Where(a => a.Id == id).FirstOrDefault(); db.EntityName.Fir
我有一种情况,我已经用两种不同的方式解决了,但想知道人们对这些选项的看法,以及他们是否有其他选择...... 系统正在处理数据的“间隔”。 所有数据都分配到一个“区间” 该间隔由事实表 中的“inte
我有包含字段 Amount, Condition1, Condition2 的表格。 例子: Amount Condition1 Condition2 ---------------------
我正在尝试在 Netbeans 中制作一个简单的 MySQL、Java JDBC Web 应用程序。我希望根据当前 session 中的状态变量显示不同的内容。我尝试了以下方法: 首先,我在 .jsp
我想为 postnuke cms 设计一个主题。 并希望在模板文件中使用 css 条件。 postnuke 使用类似 smarty 的标签 .... 所以当我使用 .... 它给出了一些关于标签的错误
我想问一下asyncio.Condition .我对这个概念并不熟悉,但我从学生时代就知道并了解锁、信号量和队列。 我找不到很好的解释或典型的用例,只是 this example .我看了看来源。核心
我想知道如何在不在语句中重做相同查询两次的情况下处理 SQL 比较。这是我要找的: SELECT columnName10, IF( SELECT columnName20 FROM Othe
我是一名优秀的程序员,十分优秀!