用怎样Pygame写一个学习打字的小游戏
Admin 2022-05-28 群英技术资讯 585 次浏览
游戏开始,屏幕随机显示一个字符,按 Enter 游戏开始,每个字母有10秒的按键时间,如果按对,则随机产生新的字符,一共60s,如果时间到了,则游戏结束。
import sys, random, time, pygame from pygame.locals import * pygame.init() screen = pygame.display.set_mode((600, 500)) pygame.display.set_caption("打字速度") while True: for event in pygame.event.get(): if event.type == QUIT: pygame.quit() sys.exit() screen.fill((255, 192, 128)) pygame.display.update()
首先设置两种字体,然后封装一个屏幕上写字的函数,写出提示。
white = 255, 255, 255 font1 = pygame.font.SysFont("方正粗黑宋简体", 24) font2 = pygame.font.SysFont("方正粗黑宋简体", 200) def print_text(font, x, y, text, color=white): img_text = font.render(text, True, color) screen.blit(img_text, (x, y)) while True: --- print_text(font1, 0, 0, "看看你的速度有多快") print_text(font1, 0, 30, "请在10秒内尝试") ---
使用 ASCII 字符表,键盘上默认输入的是小写,97 - 122,然后我们使用chr() 函数减去32,就可以得到对应的大写字母,将其写在窗口上
# 随机的字母 correct_answer = random.randint(97, 122) while True: --- print_text(font2, 0, 240, chr(correct_answer - 32), (255, 255, 0)) ---
# 是否按键 key_flag = False # 游戏是否开始 默认是结束的 game_over = True # 随机的字母 correct_answer = random.randint(97, 122) # 分数 score = 0 # 开始时间 clock_start = 0 # 读秒倒计时 seconds = 11
根据用户的按键改变对应的属性,如果游戏重新开始,重置对应的属性。
while True: for event in pygame.event.get(): if event.type == QUIT: pygame.quit() sys.exit() elif event.type == KEYDOWN: key_flag = True elif event.type == KEYUP: key_flag = False keys = pygame.key.get_pressed() if keys[K_ESCAPE]: sys.exit() if keys[K_RETURN]: if game_over: game_over = False score = 0 clock_start = time.perf_counter() seconds = 11
使用 time.perf_counter() 获取程序运行到当前的时间,计算差值,实现在屏幕上的倒计时,并根据时间结束游戏或者重新开始
current = time.perf_counter() - clock_start if seconds - current < 0: game_over = True elif current <= 10: if keys[correct_answer]: correct_answer = random.randint(97, 122) score += 1 clock_start = time.perf_counter() if not game_over: print_text(font1, 0, 80, "Time: " + str(int(seconds - current))) print_text(font1, 500, 40, str(int(time.perf_counter())))
import sys, random, time, pygame from pygame.locals import * pygame.init() screen = pygame.display.set_mode((600, 500)) pygame.display.set_caption("打字速度") font1 = pygame.font.SysFont("方正粗黑宋简体", 24) font2 = pygame.font.SysFont("方正粗黑宋简体", 200) white = 255, 255, 255 yellow = 255, 255, 0 # 是否按键 key_flag = False # 游戏是否开始 默认是结束的 game_over = True # 随机的字母 correct_answer = random.randint(97, 122) # 分数 score = 0 # 开始时间 clock_start = 0 # 读秒倒计时 seconds = 11 def print_text(font, x, y, text, color=white): img_text = font.render(text, True, color) screen.blit(img_text, (x, y)) while True: for event in pygame.event.get(): if event.type == QUIT: pygame.quit() sys.exit() elif event.type == KEYDOWN: key_flag = True elif event.type == KEYUP: key_flag = False keys = pygame.key.get_pressed() if keys[K_ESCAPE]: sys.exit() if keys[K_RETURN]: if game_over: game_over = False score = 0 clock_start = time.perf_counter() seconds = 11 screen.fill((0, 100, 0)) current = time.perf_counter() - clock_start print_text(font1, 0, 0, "看看你的速度有多快") print_text(font1, 0, 30, "请在10秒内尝试") if seconds - current < 0: game_over = True elif current <= 10: if keys[correct_answer]: correct_answer = random.randint(97, 122) score += 1 clock_start = time.perf_counter() # 如果按键了 if key_flag: print_text(font1, 500, 0, "按键了") if not game_over: print_text(font1, 0, 80, "Time: " + str(int(seconds - current))) print_text(font1, 500, 40, str(int(time.perf_counter()))) print_text(font1, 0, 100, "分数: " + str(score)) if game_over: print_text(font1, 0, 160, "请按enter开始游戏...") print_text(font2, 0, 240, chr(correct_answer - 32), yellow) pygame.display.update()
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
本文主要给大家介绍的是如何解决python中文乱码的问题。一些朋友会使用json.dumps(var,ensure_ascii=False)来解决python中文乱码,但是这不能完全解决。下文小编就给大家分享一些解决python中文乱码的办法。
这篇文章主要介绍了Python数据分析之 Matplotlib 折线图绘制,在数据分析中,数据可视化也非常重要,下文通过数据分析展开对折线图的绘制,需要的小伙伴可以参考一下
matplotlib中画图的时候会遇到负号显示为方框的问题,下面这篇文章主要给大家介绍了关于Python用matplotlib库画图中文和负号显示为方框的问题解决,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
Python 3 的标准库中没多少用来解决加密的,不过却有用于处理哈希的库。在这里我们会对其进行一个简单的介绍,但重点会放在两个第三方的
这篇文章主要为大家介绍了如何利用Python实现电脑壁纸的采集以及轮换效果,文中的示例代码讲解详细,对我们学习Python有一定帮助,需要的可以参考一下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008