决战《三字经》小游戏程序文档

游戏简介

“决战《三字经》”是一个基于Python编写的小游戏程序,旨在帮助玩家通过互动方式学习《三字经》中的内容。玩家需要控制上升的文字块,与下降的文字块碰撞并正确排序,以获得分数。

游戏功能

  • 读取《三字经》文本文件:程序会读取预先准备的《三字经》文本文件,将其中的内容用于游戏中生成文字块。
  • 生成当前段落:根据游戏进度,程序会生成当前需要排序的文字块段落,供玩家操作。
  • 处理文字块碰撞:玩家控制上升的文字块,与下降的文字块碰撞时,程序会判断是否排序正确,并更新分数。
  • 计分系统:根据玩家的操作和正确排序的文字块数量,程序会计算并显示玩家的得分。

游戏操作

  • 使用键盘上的方向键(上、下、左、右)来控制上升的文字块移动。
  • 碰撞时,文字块会自动排序,无需额外操作。
  • 玩家需要尽可能快速地正确排序文字块,以获得更高的分数。

如何开始游戏

  1. 下载并安装Python环境(如果尚未安装)。
  2. 下载游戏程序源代码并解压缩到本地目录。
  3. 在命令行或终端中进入游戏程序所在目录。
  4. 运行游戏程序的主文件,即可开始游戏。

示例运行结果

在这里插入图片描述

示例代码

import simpleguitk as gui
import random
import copy

# 全局变量
has_rising_box = True  # 是否有文字块正在上升
canvas_height = 600  # 画布高度,单位为像素
canvas_width = 480  # 画布宽度,单位为像素
box_height = 30  # 文字块高度,单位为像素
box_width = 120  # 文字块宽度,单位为像素,包含3个汉字
rising_speed = -1  # 上升速度,单位为像素
horizontal_move_distance = box_width  # 按左右箭头键时,水平移动的距离,单位为像素
game_over = False  # 游戏是否结束
rising_box = None  # 正在运动的文字块对象
stopped_box = set([])  # 停止移动的文字块
prime_sentence_list = []  # 三字经全文列表,每句为一个列表元素
current_section_list = []  # 当前处理的段落文字列表,每句为一个列表元素,4句为一个段落
last_four_box = []  # 最近的4个文字块对象列表
score = 0  # 游戏得分


def read_from_file(filename):
    # 奇数行为诗句拼音,偶数行为诗句文本
    # 三字经每3个汉字为1句,每1句作为列表的1个元素,四句为一行(一段),句间隔为空格
    prime_list = []
    input_file = open(filename, encoding='utf-8')
    i = 1
    for line in input_file.readlines():
        if i % 2 == 0:
            line_list = line.split()
            for sentence in line_list:
                prime_list.append(sentence)
        i = i + 1
    input_file.close()
    return prime_list


print(read_from_file('三字经.txt'))
print(read_from_file('三字经.txt')[0])
print(read_from_file('三字经.txt')[491])
text = read_from_file('三字经.txt')
for t in text:
    print(t)


def text_shuffle(text):
    tmp_list = list(text)
    random.shuffle(tmp_list)
    return ''.join(tmp_list)


print(text_shuffle('人之初'))


def draw_all_stopped_box(stopped_box, canvas):
    for box in stopped_box:
        box.draw(canvas)


# 生成当前段落四句诗歌列表
def generate_current_section_list():
    tmp_list = []
    for i in range(4):
        tmpstr = str(i) + prime_sentence_list.pop(0)
        tmp_list.append(tmpstr)
        random.shuffle(tmp_list)
    return tmp_list


prime_sentence_list = read_from_file('三字经.txt')
print(generate_current_section_list())
print(generate_current_section_list())
print(generate_current_section_list())


def check_collision(group, moving_box):
    for box in group:
        if box.collide(moving_box):
            return True
    return False


def stop_box(group, moving_box):
    global has_rising_box, game_over, score, label, last_four_box
    if moving_box.get_processed():
        return
    if moving_box.get_pos()[1] == 0 or check_collision(group, moving_box):
        moving_box.set_rising(False)
        stopped_box = copy.deepcopy(moving_box)
        if stopped_box.get_sentence() == stopped_box.get_correct_sentence():
            score += 5
            label_text = "游戏得分 = " + str(score) + "分"
            label.set_text(label_text)
        if (int(stopped_box.get_pos()[0] / box_width)) != stopped_box.get_order():
            stopped_box.set_proper_order(False)
        group.add(stopped_box)

        moving_box.set_processed()
        box_size = len(group)
        last_section_fine = False
        if box_size % 4 == 1:
            last_four_box.clear()
        last_four_box.append(stopped_box)
        if box_size % 4 == 0:
            if (last_four_box[0].get_proper_order()
                    and last_four_box[0].get_sentence() == last_four_box[0].get_correct_sentence()
                    and last_four_box[1].get_proper_order()
                    and last_four_box[1].get_sentence() == last_four_box[1].get_correct_sentence()
                    and last_four_box[2].get_proper_order()
                    and last_four_box[2].get_sentence() == last_four_box[2].get_correct_sentence()
                    and last_four_box[3].get_proper_order()
                    and last_four_box[3].get_sentence() == last_four_box[3].get_correct_sentence()):
                score += 20
                label_text = "游戏得分 = " + str(score) + "分"
                label.set_text(label_text)
                last_section_fine = True
        if last_section_fine:
            for box in last_four_box:
                group.discard(box)

        line_index = (stopped_box.get_pos()[1] + 15) // box_height
        if line_index >= 10:
            game_over = True
        else:
            has_rising_box = False


# 绘制游戏结束信息
def draw_game_over_msg(canvas, msg):
    msgwidth = frame.get_canvas_textwidth(msg, 48, 'sans-serif')
    canvas.draw_text(msg, ((canvas_width - msgwidth) / 2, canvas_height / 2), 48, 'Red', 'sans-serif')


# Box类
class Box:
    def __init__(self, pos, width, height, sentence, correct_sentence, order):
        self.pos = [pos[0], pos[1]]
        self.width = width
        self.height = height
        self.sentence = sentence
        self.correct_sentence = correct_sentence
        self.rising = True
        self.processed = False
        self.order = order
        self.proper_order = True

    def set_processed(self):
        self.processed = True

    def get_processed(self):
        return self.processed

    def set_proper_order(self, is_proper_order):
        self.proper_order = is_proper_order

    def get_proper_order(self):
        return self.proper_order

    def get_order(self):
        return self.order

    def set_rising(self, is_rising):
        self.rising = is_rising

    def get_sentence(self):
        return self.sentence

    def get_correct_sentence(self):
        return self.correct_sentence

    def get_pos(self):
        return self.pos

    def set_pos(self, new_pos):
        self.pos = new_pos

    def shuffle_sentence(self):
        self.sentence = text_shuffle(self.sentence)

    def collide(self, moving_object):
        if (self.pos[1]) + self.height == moving_object.get_pos()[1] and self.pos[0] == moving_object.get_pos()[0]:
            return True
        else:
            return False

    def draw(self, canvas):
        text_width = frame.get_canvas_textwidth(self.sentence, 24, 'sans-serif')
        if self.sentence == self.correct_sentence and self.proper_order:
            canvas.draw_polygon([self.pos, [self.pos[0] + self.width, self.pos[1]],
                                 [self.pos[0] + self.width, self.pos[1] + self.height],
                                 [self.pos[0], self.pos[1] + self.height]], 2, 'Green', 'Green')
            canvas.draw_text(self.sentence,
                             (self.pos[0] + (self.width - text_width) / 2, self.pos[1] + self.height - 2), 24, 'White',
                             'sans-serif')
        else:
            canvas.draw_polygon([self.pos, [self.pos[0] + self.width, self.pos[1]],
                                 [self.pos[0] + self.width, self.pos[1] + self.height],
                                 [self.pos[0], self.pos[1] + self.height]], 2, 'Red', 'Red')
            canvas.draw_text(self.sentence,
                             (self.pos[0] + (self.width - text_width) / 2, self.pos[1] + self.height - 2), 24, 'Yellow',
                             'sans-serif')

    def update(self):
        if self.rising == True:
            self.pos[1] += rising_speed


test_box = Box([120, 100], box_width, box_height, '人之初', '之人初', 0)
print(test_box.get_pos())
print(test_box.get_sentence())
print(test_box.get_correct_sentence())
print(test_box.get_order())
print(test_box.get_processed())
test_box.shuffle_sentence()
print(test_box.get_sentence())


# 时钟事件处理函数,生产一个上升的方块
def box_spawner():
    global has_rising_box, rising_box, current_section_list, game_over

    if game_over:
        return
    if not has_rising_box:
        if len(current_section_list) == 0:
            current_section_list = generate_current_section_list()
        sentence = current_section_list.pop()
        random_pos = [random.randrange(4) * box_width, canvas_height]
        rising_box = Box(random_pos, box_width, box_height, text_shuffle(sentence[1:]), sentence[1:], int(sentence[0]))

    has_rising_box = True


# 屏幕刷新事件处理函数
def draw(canvas):
    if game_over:
        draw_game_over_msg(canvas, '游戏结束!')
    else:
        rising_box.draw(canvas)
        rising_box.update()
        draw_all_stopped_box(stopped_box, canvas)
        stop_box(stopped_box, rising_box)


# 处理键盘按下事件的函数
def keydown(key):
    if not game_over:
        if key == gui.KEY_MAP["left"]:  # 向左移动方块
            if rising_box.get_pos()[0] - horizontal_move_distance >= 0:
                rising_box.set_pos([rising_box.get_pos()[0] - horizontal_move_distance, rising_box.get_pos()[1]])
        elif key == gui.KEY_MAP["right"]:  # 向右移动方块
            if rising_box.get_pos()[0] + box_width + horizontal_move_distance <= canvas_width:
                rising_box.set_pos([rising_box.get_pos()[0] + horizontal_move_distance, rising_box.get_pos()[1]])
        elif key == gui.KEY_MAP["space"]:  # 重排文字顺序
            rising_box.shuffle_sentence()


# 为游戏开始或重新开始初始化全局变量,也是鼠标点击按钮的事件处理函数
def start_game():
    global prime_sentence_list, stopped_box, rising_box, current_section_list, has_rising_box, game_over, score, last_four_box
    score = 0
    label.set_text("游戏得分 = 0分")
    game_over = False
    prime_sentence_list = read_from_file('三字经.txt')
    stopped_box = set([])
    last_four_box = []
    current_section_list = generate_current_section_list()
    rising_sentence = current_section_list.pop()
    rising_box = Box([0, canvas_height], box_width, box_height, text_shuffle(rising_sentence[1:]), rising_sentence[1:],
                     int(rising_sentence[0]))

    has_rising_box = True


# 创建窗口初始化画布
frame = gui.create_frame("决战《三字经》", canvas_width, canvas_height)
label = frame.add_label("游戏得分 = 0分")

# 注册事件处理函数
frame.set_keydown_handler(keydown)  # 按键处理,每次按键会调用keydown函数
frame.set_draw_handler(draw)  # 显示处理,每秒调用draw函数60次
timer = gui.create_timer(1000.0, box_spawner)  # 每秒调用box_spawner函数1次
button = frame.add_button('重新开始游戏', start_game, 100)  # 鼠标每次点击“重新开始游戏”按钮,调用start_game函数1次

start_game()
timer.start()
frame.start()

如何准备游戏所需的《三字经.txt》文件

  1. 在互联网上找到《三字经》的文本内容,可以尝试搜索引擎或在线图书馆等资源。
  2. 将找到的《三字经》文本复制到一个新建的文本文件中。
  3. 将该文本文件保存为名为“三字经.txt”的文件,并确保文件与游戏程序源代码位于同一目录中。
  4. 点击博主提供的链接下载该文件

资源链接

链接:https://pan.baidu.com/s/13x35LRG9NSvru0VV9tbFhg?pwd=Li98
提取码:Li98

  • 10
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

力江

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值