溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

怎么用Python腳本實(shí)現(xiàn)魔塔小游戲

發(fā)布時(shí)間:2022-02-11 13:46:29 來(lái)源:億速云 閱讀:272 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹“怎么用Python腳本實(shí)現(xiàn)魔塔小游戲”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“怎么用Python腳本實(shí)現(xiàn)魔塔小游戲”文章能幫助大家解決問(wèn)題。

開(kāi)發(fā)工具

Python版本: 3.7.4

相關(guān)模塊:

cpgames模塊;

以及一些python自帶的模塊。

環(huán)境搭建

安裝Python并添加到環(huán)境變量,pip安裝需要的相關(guān)模塊即可。

原理簡(jiǎn)介

本期我們實(shí)現(xiàn)一些之前還沒(méi)實(shí)現(xiàn)的功能,以及做一些功能優(yōu)化(部分內(nèi)容為了測(cè)試方便,我會(huì)把人物設(shè)置成無(wú)敵狀態(tài))。首先,是拾取物品等游戲事件的提示效果,核心代碼如下:

'''游戲事件提示'''
def showinfo(self, screen):
    if self.obtain_tips is None: return
    self.show_obtain_tips_count += 1
    if self.show_obtain_tips_count > self.max_obtain_tips_count:
        self.show_obtain_tips_count = 0
        self.obtain_tips = None
    # 畫(huà)框
    left, top = self.cfg.BLOCKSIZE // 2, 100
    width, height = self.cfg.SCREENSIZE[0] // self.cfg.BLOCKSIZE - 1, 2
    pygame.draw.rect(screen, (199, 97, 20), (left - 4, top - 4, self.cfg.BLOCKSIZE * width + 8, self.cfg.BLOCKSIZE * height + 8), 7)
    for col in range(width):
        for row in range(height):
            image = self.resource_loader.images['mapelements']['0'][0]
            image = pygame.transform.scale(image, (self.cfg.BLOCKSIZE, self.cfg.BLOCKSIZE))
            screen.blit(image, (left + col * self.cfg.BLOCKSIZE, top + row * self.cfg.BLOCKSIZE))
    # 文字
    if isinstance(self.obtain_tips, list):
        assert len(self.obtain_tips) == 2
        font = pygame.font.Font(self.fontpath, 30)
        font_render1 = font.render(self.obtain_tips[0], True, (255, 255, 255))
        font_render2 = font.render(self.obtain_tips[1], True, (255, 255, 255))
        rect1 = font_render1.get_rect()
        rect2 = font_render2.get_rect()
        rect1.midtop = left + width * self.cfg.BLOCKSIZE // 2, top + 10
        rect2.midtop = left + width * self.cfg.BLOCKSIZE // 2, top + 10 + self.blocksize
        screen.blit(font_render1, rect1)
        screen.blit(font_render2, rect2)
    else:
        font = pygame.font.Font(self.fontpath, 40)
        font_render = font.render(self.obtain_tips, True, (255, 255, 255))
        rect = font_render.get_rect()
        rect.midtop = left + width * self.cfg.BLOCKSIZE // 2, top + height * self.cfg.BLOCKSIZE // 2 - 20
        screen.blit(font_render, rect)

效果:

怎么用Python腳本實(shí)現(xiàn)魔塔小游戲

'''顯示商店'''
def showbuyinterface(self, screen, scenes, shop_type):
    # 購(gòu)買(mǎi)函數(shù)
    def buy(hero, coins_cost=0, experience_cost=0, add_life_value=0, add_attack_power=0, add_defense_power=0, add_level=0, add_yellow_keys=0, add_purple_keys=0, add_red_keys=0):
        if hero.num_coins < coins_cost: return
        if hero.experience < experience_cost: return
        if add_yellow_keys < 0 and hero.num_yellow_keys < 1: return
        if add_purple_keys < 0 and hero.num_purple_keys < 1: return
        if add_red_keys < 0 and hero.num_red_keys < 1: return
        hero.num_coins -= coins_cost
        hero.experience -= experience_cost
        hero.life_value += add_life_value + 1000 * add_level
        hero.attack_power += add_attack_power + 7 * add_level
        hero.defense_power += add_defense_power + 7 * add_level
        hero.level += add_level
        hero.num_yellow_keys += add_yellow_keys
        hero.num_purple_keys += add_purple_keys
        hero.num_red_keys += add_red_keys
    # 選項(xiàng)定義
    # --第三層商店
    if self.map_level_pointer == 3 and shop_type == 'buy_from_shop':
        choices_dict = {
            '增加 800 點(diǎn)生命(25 金幣)': lambda: buy(self.hero, coins_cost=25, add_life_value=800),
            '增加 4 點(diǎn)攻擊(25 金幣)': lambda: buy(self.hero, coins_cost=25, add_attack_power=4),
            '增加 4 點(diǎn)防御(25 金幣)': lambda: buy(self.hero, coins_cost=25, add_defense_power=4),
            '離開(kāi)商店': lambda: buy(self.hero),
        }
        id_image = self.resource_loader.images['mapelements']['22'][0]
    # --第十一層商店
    elif self.map_level_pointer == 11 and shop_type == 'buy_from_shop':
        choices_dict = {
            '增加 4000 點(diǎn)生命(100 金幣)': lambda: buy(self.hero, coins_cost=100, add_life_value=4000),
            '增加 20 點(diǎn)攻擊(100 金幣)': lambda: buy(self.hero, coins_cost=100, add_attack_power=20),
            '增加 20 點(diǎn)防御(100 金幣)': lambda: buy(self.hero, coins_cost=100, add_defense_power=20),
            '離開(kāi)商店': lambda: buy(self.hero),
        }
        id_image = self.resource_loader.images['mapelements']['22'][0]
    # --第五層神秘老人
    elif self.map_level_pointer == 5 and shop_type == 'buy_from_oldman':
        choices_dict = {
            '提升一級(jí)(100 經(jīng)驗(yàn))': lambda: buy(self.hero, experience_cost=100, add_level=1),
            '增加 5 點(diǎn)攻擊(30 經(jīng)驗(yàn))': lambda: buy(self.hero, experience_cost=30, add_attack_power=5),
            '增加 5 點(diǎn)防御(30 經(jīng)驗(yàn))': lambda: buy(self.hero, experience_cost=30, add_defense_power=5),
            '離開(kāi)商店': lambda: buy(self.hero),
        }
        id_image = self.resource_loader.images['mapelements']['26'][0]
    # --第十三層神秘老人
    elif self.map_level_pointer == 13 and shop_type == 'buy_from_oldman':
        choices_dict = {
            '提升三級(jí)(270 經(jīng)驗(yàn))': lambda: buy(self.hero, experience_cost=270, add_level=1),
            '增加 17 點(diǎn)攻擊(95 經(jīng)驗(yàn))': lambda: buy(self.hero, experience_cost=95, add_attack_power=17),
            '增加 17 點(diǎn)防御(95 經(jīng)驗(yàn))': lambda: buy(self.hero, experience_cost=95, add_defense_power=17),
            '離開(kāi)商店': lambda: buy(self.hero),
        }
        id_image = self.resource_loader.images['mapelements']['26'][0]
    # --第五層商人
    elif self.map_level_pointer == 5 and shop_type == 'buy_from_businessman':
        choices_dict = {
            '購(gòu)買(mǎi) 1 把黃鑰匙(10 金幣)': lambda: buy(self.hero, coins_cost=10, add_yellow_keys=1),
            '購(gòu)買(mǎi) 1 把藍(lán)鑰匙(50 金幣)': lambda: buy(self.hero, coins_cost=50, add_purple_keys=1),
            '購(gòu)買(mǎi) 1 把紅鑰匙(100 金幣)': lambda: buy(self.hero, coins_cost=100, add_red_keys=1),
            '離開(kāi)商店': lambda: buy(self.hero),
        }
        id_image = self.resource_loader.images['mapelements']['27'][0]
    # --第十二層商人
    elif self.map_level_pointer == 12 and shop_type == 'buy_from_businessman':
        choices_dict = {
            '賣(mài)出 1 把黃鑰匙(7 金幣)': lambda: buy(self.hero, coins_cost=-7, add_yellow_keys=-1),
            '賣(mài)出 1 把藍(lán)鑰匙(35 金幣)': lambda: buy(self.hero, coins_cost=-35, add_purple_keys=-1),
            '賣(mài)出 1 把紅鑰匙(70 金幣)': lambda: buy(self.hero, coins_cost=-70, add_red_keys=-1),
            '離開(kāi)商店': lambda: buy(self.hero),
        }
        id_image = self.resource_loader.images['mapelements']['27'][0]
    id_image = pygame.transform.scale(id_image, (self.cfg.BLOCKSIZE, self.cfg.BLOCKSIZE))
    # 主循環(huán)
    clock, selected_idx = pygame.time.Clock(), 1
    font = pygame.font.Font(self.cfg.FONT_PATHS_NOPRELOAD_DICT['font_cn'], 20)
    while True:
        screen.fill((0, 0, 0))
        screen.blit(self.background_images['gamebg'], (0, 0))
        self.map_parser.draw(screen)
        for scene in scenes:
            screen.blit(scene[0], scene[1])
        self.hero.draw(screen)
        # --按鍵檢測(cè)
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                QuitGame()
            elif event.type == pygame.KEYDOWN:
                if event.key == pygame.K_SPACE:
                    list(choices_dict.values())[selected_idx-1]()
                    if selected_idx == 4: return
                elif event.key == pygame.K_w or event.key == pygame.K_UP:
                    selected_idx = max(selected_idx - 1, 1)
                elif event.key == pygame.K_s or event.key == pygame.K_DOWN:
                    selected_idx = min(selected_idx + 1, 4)
        # --對(duì)話(huà)框
        # ----底色
        width, height = 8, 3
        left, bottom = self.hero.rect.left + self.hero.rect.width // 2 - width // 2 * self.cfg.BLOCKSIZE, self.hero.rect.bottom
        for col in range(width):
            for row in range(height):
                image = self.resource_loader.images['mapelements']['0'][0]
                image = pygame.transform.scale(image, (self.cfg.BLOCKSIZE, self.cfg.BLOCKSIZE))
                screen.blit(image, (left + col * self.cfg.BLOCKSIZE, bottom + row * self.cfg.BLOCKSIZE))
        # ----邊框
        pygame.draw.rect(screen, (199, 97, 20), (left - 4, bottom - 4, self.cfg.BLOCKSIZE * width + 8, self.cfg.BLOCKSIZE * height + 8), 7)
        # ----展示選項(xiàng)
        for idx, choice in enumerate(['請(qǐng)選擇:'] + list(choices_dict.keys())):
            if selected_idx == idx and idx > 0:
                choice = '?' + choice
                font_render = font.render(choice, True, (255, 0, 0))
            elif idx > 0:
                choice = '    ' + choice
                font_render = font.render(choice, True, (255, 255, 255))
            else:
                font_render = font.render(choice, True, (255, 255, 255))
            rect = font_render.get_rect()
            rect.left, rect.top = left + self.cfg.BLOCKSIZE + 20, bottom + 10 + idx * 30
            screen.blit(font_render, rect)
        # ----展示頭像
        screen.blit(id_image, (left + 10, bottom + 10))
        # --刷新
        pygame.display.flip()
        clock.tick(self.cfg.FPS)

即,商店主要包括三種類(lèi)型:一種的明面上的商店,用金幣進(jìn)行交易,可以獲得生命值、攻擊力和防御力的提升;一種是商人,用金幣進(jìn)行交易,可以獲得/出售不同顏色的鑰匙;還有一種是神秘老人,用經(jīng)驗(yàn)值進(jìn)行交易,可以獲得等級(jí)、攻擊力和防御力的提示。效果如下

怎么用Python腳本實(shí)現(xiàn)魔塔小游戲

接著,我們來(lái)實(shí)現(xiàn)一下地圖中可以撿到的一些寶物的特效,主要包括風(fēng)之羅盤(pán)、圣光徽、星光神榔和幸運(yùn)十字架。

其中,風(fēng)之羅盤(pán)用于在已經(jīng)走過(guò)的樓層間進(jìn)行跳躍,代碼實(shí)現(xiàn)如下:

'''顯示關(guān)卡跳轉(zhuǎn)'''
def showjumplevel(self, screen, scenes):
    # 主循環(huán)
    clock, selected_level = pygame.time.Clock(), 1
    font = pygame.font.Font(self.cfg.FONT_PATHS_NOPRELOAD_DICT['font_cn'], 20)
    while True:
        screen.fill((0, 0, 0))
        screen.blit(self.background_images['gamebg'], (0, 0))
        self.map_parser.draw(screen)
        for scene in scenes:
            screen.blit(scene[0], scene[1])
        self.hero.draw(screen)
        # --按鍵檢測(cè)
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                QuitGame()
            elif event.type == pygame.KEYDOWN:
                if event.key == pygame.K_SPACE:
                    return selected_level
                elif event.key == pygame.K_w or event.key == pygame.K_UP:
                    selected_level = max(selected_level - 1, 0)
                elif event.key == pygame.K_s or event.key == pygame.K_DOWN:
                    selected_level = min(selected_level + 1, self.max_map_level_pointer)
        # --對(duì)話(huà)框
        # ----底色
        width, height = 11, 4
        left, top = self.cfg.SCREENSIZE[0] // 2 - width // 2 * self.cfg.BLOCKSIZE, self.cfg.SCREENSIZE[1] // 2 - height * self.cfg.BLOCKSIZE
        for col in range(width):
            for row in range(height):
                image = self.resource_loader.images['mapelements']['0'][0]
                image = pygame.transform.scale(image, (self.cfg.BLOCKSIZE, self.cfg.BLOCKSIZE))
                screen.blit(image, (left + col * self.cfg.BLOCKSIZE, top + row * self.cfg.BLOCKSIZE))
        # ----邊框
        pygame.draw.rect(screen, (199, 97, 20), (left - 4, top - 4, self.cfg.BLOCKSIZE * width + 8, self.cfg.BLOCKSIZE * height + 8), 7)
        # ----展示選項(xiàng)
        for idx in list(range(self.max_map_level_pointer+1)):
            if selected_level == idx:
                text = f'?第 {idx} 層'
                font_render = font.render(text, True, (255, 0, 0))
            else:
                text = f'    第 {idx} 層'
                font_render = font.render(text, True, (255, 255, 255))
            rect = font_render.get_rect()
            rect.left, rect.top = left + 20 + idx // 6 * self.cfg.BLOCKSIZE * 2, top + 20 + (idx % 6) * 30
            screen.blit(font_render, rect)
        # --刷新
        pygame.display.flip()
        clock.tick(self.cfg.FPS)

效果:

怎么用Python腳本實(shí)現(xiàn)魔塔小游戲

然后是圣光徽,用于查看怪物的基本情況,代碼實(shí)現(xiàn)如下:

'''顯示關(guān)卡怪物信息'''
def showforecastlevel(self, screen, scenes):
    # 主循環(huán)
    clock = pygame.time.Clock()
    font = pygame.font.Font(self.cfg.FONT_PATHS_NOPRELOAD_DICT['font_cn'], 20)
    monsters = self.map_parser.getallmonsters()
    if len(monsters) < 1: return
    monsters_show_pointer, max_monsters_show_pointer = 1, round(len(monsters) / 4)
    show_tip_text, show_tip_text_count, max_show_tip_text_count = True, 1, 15
    return_flag = False
    while True:
        screen.fill((0, 0, 0))
        screen.blit(self.background_images['gamebg'], (0, 0))
        self.map_parser.draw(screen)
        for scene in scenes:
            screen.blit(scene[0], scene[1])
        self.hero.draw(screen)
        # --按鍵檢測(cè)
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                QuitGame()
            elif event.type == pygame.KEYDOWN:
                if event.key == pygame.K_l:
                    return_flag = True
                elif event.key == pygame.K_SPACE:
                    monsters_show_pointer = monsters_show_pointer + 1
                    if monsters_show_pointer > max_monsters_show_pointer: monsters_show_pointer = 1
            elif event.type == pygame.KEYUP:
                if event.key == pygame.K_l and return_flag:
                    return
        # --對(duì)話(huà)框
        # ----底色
        width, height = 14, 5
        left, top = self.cfg.SCREENSIZE[0] // 2 - width // 2 * self.cfg.BLOCKSIZE, self.cfg.SCREENSIZE[1] // 2 - height * self.cfg.BLOCKSIZE
        for col in range(width):
            for row in range(height):
                image = self.resource_loader.images['mapelements']['0'][0]
                image = pygame.transform.scale(image, (self.cfg.BLOCKSIZE, self.cfg.BLOCKSIZE))
                screen.blit(image, (left + col * self.cfg.BLOCKSIZE, top + row * self.cfg.BLOCKSIZE))
        # ----邊框
        pygame.draw.rect(screen, (199, 97, 20), (left - 4, top - 4, self.cfg.BLOCKSIZE * width + 8, self.cfg.BLOCKSIZE * height + 8), 7)
        # ----展示選項(xiàng)
        for idx, monster in enumerate(monsters[(monsters_show_pointer-1)*4: monsters_show_pointer*4]):
            id_image = self.resource_loader.images['mapelements'][monster[6]][0]
            id_image = pygame.transform.scale(id_image, (self.cfg.BLOCKSIZE - 10, self.cfg.BLOCKSIZE - 10))
            screen.blit(id_image, (left + 10, top + 20 + idx * self.cfg.BLOCKSIZE))
            text = f'名稱(chēng): {monster[0]}  生命: {monster[1]}  攻擊: {monster[2]}  防御: {monster[3]}  金幣: {monster[4]}  經(jīng)驗(yàn): {monster[5]}  損失: {self.hero.winmonster(monster)[1]}'
            font_render = font.render(text, True, (255, 255, 255))
            rect = font_render.get_rect()
            rect.left, rect.top = left + 15 + self.cfg.BLOCKSIZE, top + 30 + idx * self.cfg.BLOCKSIZE
            screen.blit(font_render, rect)
        # ----操作提示
        show_tip_text_count += 1
        if show_tip_text_count == max_show_tip_text_count:
            show_tip_text_count = 1
            show_tip_text = not show_tip_text
        if show_tip_text:
            tip_text = '空格鍵'
            font_render = font.render(tip_text, True, (255, 255, 255))
            rect.left, rect.bottom = self.cfg.BLOCKSIZE * width + 30, self.cfg.BLOCKSIZE * (height + 1) + 10
            screen.blit(font_render, rect)
        # --刷新
        pygame.display.flip()
        clock.tick(self.cfg.FPS)

效果:

怎么用Python腳本實(shí)現(xiàn)魔塔小游戲

然后我們來(lái)實(shí)現(xiàn)一下幸運(yùn)十字架,把它交給序章中的仙子,可以將自身的所有能力提升一些(攻擊防御和生命值)。

# 定義所有對(duì)話(huà)
if self.hero.has_cross:
    conversations = [
        ['仙子, 我已經(jīng)將那個(gè)十字架找到了.'],
        ['你做得很好. 那么現(xiàn)在我就開(kāi)始', '授予你更強(qiáng)的力量! 咪啦哆咪嗶...', '好了, 我已經(jīng)將你現(xiàn)在的能力提升了!', '記住: 如果你沒(méi)有足夠的實(shí)力的話(huà),', '不要去第二十一層. 在那一層里,', '你所有寶物的法力都會(huì)失去作用.']
    ]
    self.hero.has_cross = False
    self.hero.life_value = int(self.hero.life_value * 4 / 3)
    self.hero.attack_power = int(self.hero.attack_power * 4 / 3)
    self.hero.defense_power = int(self.hero.defense_power * 4 / 3)

關(guān)于“怎么用Python腳本實(shí)現(xiàn)魔塔小游戲”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI