热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

pythonpygameeventget_Pygame需要pygame.event.get()“为了不撞车

程序像这样工作得很好,但是,我不明白为什么它需要在gameOverwhile语句中使用无用的foreventinpygame.event.get():N

程序像这样工作得很好,但是,我不明白为什么它需要在gameOverwhile语句中使用无用的for event in pygame.event.get(): None在{}内。如果你能找到一种方法来删除它,或者解释为什么它没有它运行,那太好了!在import pygame, time, random

pygame.init()

# SOUND/TEXTURES

icon = pygame.image.load("textures\snakeicon.png")

pygame.display.set_icon(icon)

# VARIABLES

white = (255, 255, 255)

black = (0, 0, 0)

red = (200, 0, 0)

green = (0, 155, 0)

bright_green = (0, 250, 0)

bright_red = (255, 0, 0)

font_size = 50

font = pygame.font.SysFont(None, font_size)

# FUNCTIONS

def text_objects(text, font):

textSurface = font.render(text, True, black)

return textSurface, textSurface.get_rect()

def button(msg, x, y, w, h, ic, ac, action=None):

mouse = pygame.mouse.get_pos()

click = pygame.mouse.get_pressed()

if x + w > mouse[0] > x and y + h > mouse[1] > y:

pygame.draw.rect(gameWindow, ac, (x, y, w, h))

if click[0] == 1 and action != None:

if action == "play":

game_loop()

elif action == "quit":

gameRun = False

gameWindow.fill(white)

message_to_screen("Closing Game...", black, 280, 280)

pygame.display.update()

time.sleep(1)

pygame.quit()

quit()

else:

pygame.draw.rect(gameWindow, ic, (x, y, w, h))

smallText = pygame.font.Font("freesansbold.ttf", 20)

textSurf, textRect = text_objects(msg, smallText)

textRect.center = ((x + (w / 2)), (y + (h / 2)))

gameWindow.blit(textSurf, textRect)

def snake(rect_x, rect_y, block_size):

pygame.draw.rect(gameWindow, green, [rect_x, rect_y, block_size, block_size])

def message_to_screen(msg, color, x, y):

screen_text = font.render(msg, True, color)

gameWindow.blit(screen_text, [x, y])

# WINDOW/SURFACE

display_w = 800

display_h = 600

window_title = "Window"

gameWindow = pygame.display.set_mode((display_w, display_h))

pygame.display.set_caption(window_title)

# FPS/Clock

clock = pygame.time.Clock()

# Game Loop

def game_loop():

# RECT OPTIONS

moveSpeed = 10

block_size = 10

rect_x = display_w / 2

rect_y = display_h / 2

change_x = 0

change_y = 0

randApplex = round(random.randrange(0, display_w - block_size) / 10.0) * 10.0

randAppley = round(random.randrange(0, display_h - block_size) / 10.0) * 10.0

global gameRun, gameOver

gameRun = True

gameOver = False

while gameRun:

while gameOver:

gameRun = False

gameWindow.fill(white)

# button(msg, x, y, w, h, ic, ac, action=None)

message_to_screen("Game Over!", red, 300, 300)

button("Restart", 150, 450, 100, 50, green, bright_green, "play")

button("Quit", 550, 450, 100, 50, red, bright_red, "quit")

pygame.display.update()

# RIGHT HERE!

for event in pygame.event.get():

None

# RIGHT THERE!

for event in pygame.event.get():

if event.type == pygame.QUIT:

gameRun = False

gameOver = False

gameWindow.fill(white)

message_to_screen("Closing Game...", black, 280, 280)

pygame.display.update()

time.sleep(1)

pygame.quit()

quit()

if event.type == pygame.KEYDOWN:

if event.key == pygame.K_w:

change_y = -moveSpeed

change_x = 0

elif event.key == pygame.K_s:

change_y = moveSpeed

change_x = 0

elif event.key == pygame.K_a:

change_x = -moveSpeed

change_y = 0

elif event.key == pygame.K_d:

change_x = moveSpeed

change_y = 0

# BOARDER CRASH

if rect_x >&#61; display_w or rect_x <0 or rect_y >&#61; display_h or rect_y <0:

gameOver &#61; True

# LOGIC

rect_x &#43;&#61; change_x

rect_y &#43;&#61; change_y

if rect_x &#61;&#61; randApplex and rect_y &#61;&#61; randAppley:

randApplex &#61; round(random.randrange(0, display_w - block_size) / 10.0) * 10.0

randAppley &#61; round(random.randrange(0, display_h - block_size) / 10.0) * 10.0

# RENDER

gameWindow.fill(white)

pygame.draw.rect(gameWindow, red, [randApplex, randAppley, block_size, block_size])

snake(rect_x, rect_y, block_size)

pygame.display.update()

clock.tick(15)

message_to_screen("You Lose!", red, 325, 300)

pygame.display.update()

time.sleep(1)

message_to_screen("Closing Game!", black, 280, 350)

pygame.display.update()

time.sleep(1)

# QUIT

pygame.quit()

quit()

game_loop()



推荐阅读
  • 1.如何在运行状态查看源代码?查看函数的源代码,我们通常会使用IDE来完成。比如在PyCharm中,你可以Ctrl+鼠标点击进入函数的源代码。那如果没有IDE呢?当我们想使用一个函 ... [详细]
  • 本文介绍如何使用Objective-C结合dispatch库进行并发编程,以提高素数计数任务的效率。通过对比纯C代码与引入并发机制后的代码,展示dispatch库的强大功能。 ... [详细]
  • 本文介绍了如何利用JavaScript或jQuery来判断网页中的文本框是否处于焦点状态,以及如何检测鼠标是否悬停在指定的HTML元素上。 ... [详细]
  • 导航栏样式练习:项目实例解析
    本文详细介绍了如何创建一个具有动态效果的导航栏,包括HTML、CSS和JavaScript代码的实现,并附有详细的说明和效果图。 ... [详细]
  • 前言--页数多了以后需要指定到某一页(只做了功能,样式没有细调)html ... [详细]
  • 本文详细介绍了Akka中的BackoffSupervisor机制,探讨其在处理持久化失败和Actor重启时的应用。通过具体示例,展示了如何配置和使用BackoffSupervisor以实现更细粒度的异常处理。 ... [详细]
  • 技术分享:从动态网站提取站点密钥的解决方案
    本文探讨了如何从动态网站中提取站点密钥,特别是针对验证码(reCAPTCHA)的处理方法。通过结合Selenium和requests库,提供了详细的代码示例和优化建议。 ... [详细]
  • 本文详细介绍了如何解决Uploadify插件在Internet Explorer(IE)9和10版本中遇到的点击失效及JQuery运行时错误问题。通过修改相关JavaScript代码,确保上传功能在不同浏览器环境中的一致性和稳定性。 ... [详细]
  • 深入理解Tornado模板系统
    本文详细介绍了Tornado框架中模板系统的使用方法。Tornado自带的轻量级、高效且灵活的模板语言位于tornado.template模块,支持嵌入Python代码片段,帮助开发者快速构建动态网页。 ... [详细]
  • 主要用了2个类来实现的,话不多说,直接看运行结果,然后在奉上源代码1.Index.javaimportjava.awt.Color;im ... [详细]
  • 本文详细介绍了Java中org.eclipse.ui.forms.widgets.ExpandableComposite类的addExpansionListener()方法,并提供了多个实际代码示例,帮助开发者更好地理解和使用该方法。这些示例来源于多个知名开源项目,具有很高的参考价值。 ... [详细]
  • Python 异步编程:深入理解 asyncio 库(上)
    本文介绍了 Python 3.4 版本引入的标准库 asyncio,该库为异步 IO 提供了强大的支持。我们将探讨为什么需要 asyncio,以及它如何简化并发编程的复杂性,并详细介绍其核心概念和使用方法。 ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • CentOS7源码编译安装MySQL5.6
    2019独角兽企业重金招聘Python工程师标准一、先在cmake官网下个最新的cmake源码包cmake官网:https:www.cmake.org如此时最新 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
author-avatar
男人还是闷骚点好
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有