- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在寻找在正确的时间 blit GameOver 屏幕的方法时遇到问题。我在 pygame 上制作了一个平台游戏,我希望在我的角色死亡动画发生后以及当敌人有攻击动画时出现游戏结束屏幕。现在它会绕过任何动画,一旦 Sprite 之间的碰撞检测为真,它就会说游戏结束。有什么想法吗?
谢谢
def GameOver():
intro = True
while intro:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
screen.blit(pygame.image.load("background0.jpg").convert(), (0,0))
largeText = pygame.font.SysFont("elephant",60)
TextSurf, TextRect = text_objects("GameOver", largeText)
TextRect.center = ((screen_width/2),(screen_height/2))
screen.blit(TextSurf, TextRect)
pygame.display.update()
clock.tick(15)
class Enemy:
def __init__(self,x,y):
self.x=x
self.y=y
self.width=40
self.height = 40
self.speed=1
self.s0 = pygame.image.load("Images/Enemy/s0.png")
self.s1 = pygame.image.load("Images/Enemy/s1.png")
self.s2 = pygame.image.load("Images/Enemy/s2.png")
self.s3 = pygame.image.load("Images/Enemy/s3.png")
self.attack = pygame.image.load("attack.png")
self.RotatedAttack = pygame.transform.flip(self.attack ,True,False)
self.rotateds0 = pygame.transform.flip(self.s0 ,True, False)
self.rotateds1 = pygame.transform.flip(self.s1 ,True, False)
self.rotateds2 = pygame.transform.flip(self.s2 ,True, False)
self.rotateds3 = pygame.transform.flip(self.s3 ,True, False)
self.collision = False
self.collision1 = False
self.TimeTarget=10
self.TimeNum=0
self.currentImage=0
def move(self,player):
if self.x > player.x:
self.x -= self.speed
if self.currentImage > 3:
self.currentImage = 0
if self.collision == True:
if self.currentImage < 4:
#image of him attacking
self.currentImage = 8
SpearAttack.play(loops = 0, maxtime = 10)
elif self.x < player.x:
self.x += self.speed
if self.currentImage < 4:
self.currentImage = 4
if self.collision == True:
if player.y > 487:
if self.currentImage == 4 or 5 or 6 or 7:
#image of him attacking flipped
self.currentImage = 9
SpearAttack.play(loops = 0, maxtime = 10)
#Tried putting gameover here but it skips the animation
if self.x < player.x:
if self.x > player.x:
if self.currentImage > 3:
self.currentImage = 0
def update(self,CollisionDetect,player,enemy2):
self.TimeNum+=1
if self.TimeNum == self.TimeTarget:
if self.currentImage ==0:
self.currentImage=1
elif self.currentImage ==1:
self.currentImage=2
elif self.currentImage == 2:
self.currentImage=3
elif self.currentImage ==3:
self.currentImage =0
elif self.currentImage ==4:
self.currentImage=5
elif self.currentImage ==5:
self.currentImage=6
elif self.currentImage == 6:
self.currentImage=7
elif self.currentImage ==7:
self.currentImage = 4
self.TimeNum=0
if self.currentImage==0:
screen.blit(self.s0, (self.x,self.y))
elif self.currentImage==1:
screen.blit(self.s1, (self.x,self.y))
elif self.currentImage==2:
screen.blit(self.s2, (self.x,self.y))
elif self.currentImage ==3:
screen.blit(self.s3, (self.x,self.y))
elif self.currentImage==4:
screen.blit(self.rotateds0, (self.x,self.y))
elif self.currentImage==5:
screen.blit(self.rotateds1, (self.x,self.y))
elif self.currentImage==6:
screen.blit(self.rotateds2, (self.x,self.y))
elif self.currentImage ==7:
screen.blit(self.rotateds3, (self.x,self.y))
elif self.currentImage ==8:
screen.blit(self.attack, (self.x,self.y))
#tried putting GameOver() here but it skips the blit.
elif self.currentImage ==9:
screen.blit(self.RotatedAttack, (self.x,self.y))
self.collision = CollisionDetect(self.x,self.y,self.width,self.height,player.x,player.y,player.width,player.height)
最佳答案
我想说你必须延迟动画。似乎 pygame 没有默认的动画队列,因此你必须处理它。有几件事确实可行:
使用time.sleep()
- 但是,如果动画是单个线程的一部分,则这将不起作用,因为整个线程将停止(并且动画应该卡住)。因此我会推荐第二种选择,因为它对我来说听起来更合理。
使用 pygame 计时器 pygame.time.set_timer()
,它应该是一个线程,因此不会卡住矛动画。您必须发送一个游戏结束事件,该事件将在游戏结束函数中被捕获,并在捕获后将该事件的计时器重置为 0(以停止循环)。 https://www.pygame.org/docs/ref/time.html#comment_pygame_time_set_timer
使用线程(请参阅: Python threading.timer - repeat function every 'n' seconds )并在矛动画之后简单地使用计时器调用该线程
以下内容与错误本身无关,但您的代码总体设计不佳,因此这可能会有所帮助:您试图从类的实例(在本例中为敌人)调用游戏中的函数(在本例中为游戏结束),这是一种不好的做法,并且在语义上不正确。敌人等级根本不应该了解游戏,但它应该被游戏使用——而不是相反。它可以触发某些事件,但游戏结束时(以及类似的游戏相关事件)应该由不同的全局处理程序处理,而不是类的单个实例。
此外,您应该考虑使用某种映射(例如字典),而不是使用无穷无尽的 if-else 条件。它可以保护您的许多行代码,更容易维护并且更具可读性。
关于python - 当我想要的时候 GameOver 屏幕没有出现 - pygame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34623825/
我的应用程序从一个有 5 个选项卡的选项卡栏 Controller 开始。一开始,第一个出现了它的名字,但其他四个没有名字,直到我点击它们。然后根据用户使用的语言显示名称。如何在选项卡栏出现之前设置选
我有嵌套数组 json 对象(第 1 层、第 2 层和第 3 层)。我的问题是数据表没有出现。任何相关的 CDN 均已导入。该表仅显示部分。我引用了很多网站,但都没有解决我的问题。 之前我使用标准表来
我正在尝试设置要显示的 Parse PFLoginViewController。这是我的一个 View Controller 的类。 import UIKit import Parse import
我遇到了这个问题,我绘制的对象没有出现在 GUI 中。我知道它正在被处理,因为数据被推送到日志文件。但是,图形没有出现。 这是我的一些代码: public static void main(Strin
我有一个树状图,其中包含出现这样的词...... TreeMap occurrence = new TreeMap (); 字符串 = 单词 整数 = 出现次数。 我如何获得最大出现次数 - 整数,
因此,我提示用户输入变量。如果变量小于 0 且大于 10。如果用户输入 10,我想要求用户再次输入数字。我问时间的时候输入4,它说你输入错误。但在第二次尝试时效果很好。例如:如果我输入 25,它会打印
我已经用 css overflow 属性做了一个例子。在这个例子中我遇到了一个溢出滚动的问题。滚动条出现了,但没有工作意味着每当将光标移动到滚动条时,在这个滚动条不活动的时间。我对此一无所知,所以请帮
我现在正在做一个元素。当您单击一个元素时,会出现以下信息,我想知道如何在您单击下一个元素而不重新单击同一元素时使其消失....例如,我的元素中有披萨,我想单击肉披萨看到浇头然后点击奶酪披萨看到浇头和肉
我有一个路由器模块,它将主题与正则表达式进行比较,并将出现的事件与一致的键掩码链接起来。 (它是一个简单的 url 路由过滤,如 symfony http://symfony.com/doc/curr
这个问题在这里已经有了答案: 9年前关闭。 Possible Duplicate: mysql_fetch_array() expects parameter 1 to be resource, bo
我在底部有一个带有工具栏的 View ,我正在使用 NavigationLink 导航到该 View 。但是当 View 出现时,工具栏显示得有点太低了。大约半秒钟后,它突然跳到位。它只会在应用程序启
我试图在我的应用程序上为背景音乐添加一个 AVAudioPlayer,我正在主屏幕上启动播放器,尝试在应用程序打开时开始播放但出现意外行为... 它播放并立即不断创建新玩家并播放这些玩家,因此同时播放
这是获取一个数字,获取其阶乘并将其加倍,但是由于基本情况,如果您输入 0,它会给出 2 作为答案,因此为了绕过它,我使用了 if 语句,但收到错误输入“if”时解析错误。如果你们能提供帮助,我真的很感
暂停期间抛出异常 android.os.DeadObjectException 在 android.os.BinderProxy.transactNative( native 方法) 在 androi
我已经为猜词游戏编写了一些代码。它从用户输入中读取字符并在单词中搜索该字符;根据字符是否在单词中,程序返回并控制一些变量。 代码如下: import java.util.Random; import
我是自动化领域的新手。这是我的简单 TestNG 登录代码,当我以 TestNG 身份运行该代码时,它会出现 java.lang.NullPointerException,双击它会突出显示我导航到 U
我是c#程序员,我习惯了c#的封装语法和其他东西。但是现在,由于某些原因,我应该用java写一些东西,我现在正在练习java一天!我要创建一个为我自己创建一个虚拟项目,以便让自己更熟悉 Java 的
我正在使用 Intellij,我的源类是 main.com.coding,我的资源文件是 main.com.testing。我将 spring.xml 文件放入资源文件中。 我的测试类位于 test.
我想要我的tests folder separate到我的应用程序代码。我的项目结构是这样的 myproject/ myproject/ myproject.py moduleon
这个问题已经有答案了: What is a NullPointerException, and how do I fix it? (12 个回答) 已关闭 6 年前。 因此,我尝试比较 2 个值,一个
我是一名优秀的程序员,十分优秀!