• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

关于python:Pygame实战开心消消乐你乐我乐大家乐

python 搞代码 4年前 (2022-02-20) 35次浏览 已收录 0个评论

”’
Function:

消消乐小游戏

源码基地:#959755565#
”’
import os
import sys
import cfg
import pygame
from modules import *
”’游戏主程序”’
def main():

pygame.init()
screen = pygame.display.set_mode(cfg.SCREENSIZE)
pygame.display.set_caption('开心消消乐🎃')
# 加载背景音乐
pygame.mixer.init()
pygame.mixer.music.load(os.path.join(cfg.ROOTDIR, "resources/audios/bg.mp3"))
pygame.mixer.music.set_volume(0.6)
pygame.mixer.music.play(-1)
# 加载音效
sounds = {}
sounds['mismatch'] = pygame.mixer.Sound(os.path.join(cfg.ROOTDIR, 'resources/audios/badswap.wav'))
sounds['match'] = []
for i in range(6):
    sounds['match'].append(pygame.mixer.Sound(os.path.join(cfg.ROOTDIR, 'resources/audios/match%s.wav' % i)))
# 加载字体
font = [PerfectMoney下载](https://www.gendan5.com/wallet/PerfectMoney.html)pygame.font.Font(os.path.join(cfg.ROOTDIR, 'resources/font/font.TTF'), 25)
# 图片加载
gem_imgs = []
for i in range(1, 8):
    gem_imgs.append(os.path.join(cfg.ROOTDIR, 'resources/images/gem%s.png' % i))
# 主循环
game = gemGame(screen, sounds, font, gem_imgs, cfg)
while True:
    score = game.start()
    flag = False
    # 一轮游戏完结后玩家抉择重玩或者退出
    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT or (event.type == pygame.KEYUP and event.key == pygame.K_ESCAPE):
                pygame.quit()
                sys.exit()
            elif event.type == pygame.KEYUP and event.key == pygame.K_r:
                flag = True
        if flag:
            break
        screen.fill((135, 206, 235))
        text0 = 'Final score: %s' % score
        text1 = 'Press <R> to restart the game.'
        text2 = 'Press <Esc> to quit the game.'
        y = 150
        for idx, text in enumerate([text0, text1, text2]):
            text_render = font.render(text, 1, (85, 65, 0))
            rect = text_render.get_rect()
            if idx == 0:
                rect.left, rect.top = (212, y)
            elif idx == 1:
                rect.left, rect.top = (122.5, y)
            else:
                rect.left, rect.top = (126.5, y)
            y += 100
            screen.blit(text_render, rect)
        pygame.display.update()
    game.reset()

”’run”’
if name == ‘__main__’:

main()

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:关于python:Pygame实战开心消消乐你乐我乐大家乐
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址