Pygame中Trivia游戏解析6-4

3.3.3 显示题目选项

在显示题目选项时,有三种情况:分别是用户还未选择答案时;用户的答案是正确时;用户的答案是错误时。

(1)用户还未选择答案时

此时,用白色显示四个备选答案,如图4①所示。

图4 题目选项

其对应的代码如下所示。

python 复制代码
print_text(font1, 5, 170, "ANSWERS")
print_text(font2, 20, 210, "1 - " + self.data[self.current+1], self.colors[0])
print_text(font2, 20, 240, "2 - " + self.data[self.current+2], self.colors[1])
print_text(font2, 20, 270, "3 - " + self.data[self.current+3], self.colors[2])
print_text(font2, 20, 300, "4 - " + self.data[self.current+4], self.colors[3])

其中,self.current是题目内容对应的行数,题目的四个选项分别在该行之后的1-4行。

(2)用户的答案是正确时

当用户的答案是正确时,用绿色字体显示该选项,并且会有绿色字体的提示,如图5①和图5②所示。

图5 答案正确时

通过一下代码实现该功能。

python 复制代码
if self.scored:
    self.colors = [white,white,white,white]
    self.colors[self.correct-1] = green
    print_text(font1, 230, 380, "CORRECT!", green)
    print_text(font2, 170, 420, "Press Enter For Next Question", green)

其中,scored是True时表示答案正确,此时将colors的第self.correct项的颜色变为绿色。变量correct的值是通过如下代码获得的。

self.correct = int(self.data[self.current+5])

其中,current表示当前题目内容在data中的行数,接下来的4行是题目的选项,之后的第5行即为正确答案,如图6所示。

图6 题目格式

(3)用户答案是错误时

当用户的答案是正确时,用绿色字体显示正确选项,红色字体显示用户选择的错误选项,并且会有红色字体的提示,如图7①和图7②所示。

图7 答案错误时

通过一下代码实现该功能。

python 复制代码
elif self.failed:
    self.colors = [white,white,white,white]
    self.colors[self.wronganswer-1] = red
    self.colors[self.correct-1] = green
    print_text(font1, 220, 380, "INCORRECT!", red)
    print_text(font2, 170, 420, "Press Enter For Next Question", red)

当failed是True时,表示答案错误,wronganser表示错误答案,correct表示正确答案。

相关推荐
拾忆-eleven2 天前
C语言实战:用Pygame打造高难度水果消消乐游戏
c语言·python·pygame
@正在学习驰骋的小马2 天前
九、小白如何用Pygame制作一款跑酷类游戏(添加前进小动物作为动态障碍物)
python·游戏·pygame
Tech Synapse8 天前
迷宫求解机器人:基于Pygame与Q-learning的强化学习实战教程
python·机器人·pygame·强化学习
EvanSun__10 天前
python学习 -- 综合案例1:设计一款基于python的飞机大战小游戏
python·学习·pygame
@正在学习驰骋的小马11 天前
一、小白如何用Pygame制作一款跑酷类游戏(成品展示+添加背景图和道路移动效果)
python·游戏·pygame
不要不开心了13 天前
sparkcore编程算子
pytorch·分布式·算法·pygame
Ma_si13 天前
用python写一个简单的射击游戏
python·游戏·pygame
资深设备全生命周期管理13 天前
火影 遇上 python Baby_Brother_GGY
开发语言·python·pygame
流云一号15 天前
Python实现贪吃蛇一
开发语言·python·pygame
csdn_aspnet17 天前
windows 安装 pygame( pycharm)
python·pycharm·pygame