为什么我的 PyGame 应用程序根本没有运行?
- 2024-11-21 08:33:00
- admin 原创
- 4
问题描述:
我有一个简单的 Pygame 程序:
#!/usr/bin/env python
import pygame
from pygame.locals import *
pygame.init()
win = pygame.display.set_mode((400,400))
pygame.display.set_caption("My first game")
但每次我尝试运行它时,都会出现以下情况:
pygame 2.0.0 (SDL 2.0.12, python 3.8.3)
Hello from the pygame community. https://www.pygame.org/contribute.html
然后什么都没发生。为什么我无法运行这个程序?
解决方案 1:
您的应用程序运行良好。但是,您尚未实现应用程序循环:
import pygame
from pygame.locals import *
pygame.init()
win = pygame.display.set_mode((400,400))
pygame.display.set_caption("My first game")
clock = pygame.time.Clock()
run = True
while run:
# handle events
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
# update game objects
# [...]
# clear display
win.fill((0, 0, 0))
# draw game objects
# [...]
# update display
pygame.display.flip()
# limit frames per second
clock.tick(60)
pygame.quit()
典型的 PyGame 应用程序循环必须:
pygame.event.pump()
通过调用或来处理事件pygame.event.get()
。根据输入事件和时间(分别为帧)更新游戏状态和物体的位置
清除整个显示或绘制背景
绘制整个场景(
blit
所有物体)pygame.display.update()
通过调用或来更新显示pygame.display.flip()
限制每秒帧数以限制 CPU 使用率
pygame.time.Clock.tick
![IT科技](https://i.sstatic.net/5jD0C.png) repl.it/@Rabbid76/PyGame-MinimalApplicationLoop
另请参阅事件和应用程序循环
解决方案 2:
这很有趣。计算机逐行读取你的程序[python]。当所有行都被解释后,程序关闭。要解决这个问题,你需要添加一个while循环,以确保程序将继续运行,直到你关闭程序。
import pygame,sys
from pygame.locals import *
pygame.init()
pygame.display.set_caption("My first game")
win = pygame.display.set_mode((400,400))
#game loop keeps the game running until you exit the game.
game_running=True
while game_running:
for event in pygame.event.get():
if event.type==QUIT:
pygame.quit()
sys.exit()
win.fill((0, 250, 154)) #Fill the pygame window with specific color. You can use hex or rgb color
pygame.display.update() #Refresh the pygame window
您可以查看更多 pygame 示例。https
://github.com/01one/Pygame-Examples
我认为这会有所帮助。
相关推荐
热门文章
项目管理软件有哪些?
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件
热门标签
云禅道AD