• 大小: 40.50M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: 贪吃蛇  代码  

资源简介

pygame写得贪吃蛇,音频图片齐全,注释详细,可供参考

资源截图

代码片段和文件信息

import pygamerandomsysostime
from pygame.locals import *
pygame.init()
pygame.font.init()
#颜色模块
BLACK = ( 0 0 0)
WHITE = (255 255 255)
RED = (255 0 0)
GREEN = ( 0 255 0)
BLUE = ( 0 0 255)
#屏幕
resolution=(600600)     #宽,高
pygame.display.init()
def rp(relative_path):
    “““ Get absolute path to resource works for dev and for PyInstaller “““
    try:
        # PyInstaller creates a temp folder and stores path in _MEIPASS
        base_path = sys._MEIPASS
    except Exception:
        base_path = os.path.abspath(“.“)
    return os.path.join(base_path relative_path)
#surface=pygame.display.set_mode(resolutionpygame.FULLSCREEN|pygame.HWSURFACE)
#创建窗口
screen=pygame.display.set_mode(resolution)
screen.fill(WHITE)
pygame.display.set_caption(rp(‘游戏‘))
cloc

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-02-07 18:28  tanchishefight1.0\
     目录           0  2020-02-07 18:37  tanchishefight1.0\.idea\
     文件         208  2020-02-04 20:27  tanchishefight1.0\.idea\misc.xml
     文件         293  2020-02-04 20:27  tanchishefight1.0\.idea\modules.xml
     文件         408  2020-02-04 20:27  tanchishefight1.0\.idea\tanchishefight1.0.iml
     文件        6632  2020-02-07 18:37  tanchishefight1.0\.idea\workspace.xml
     目录           0  2020-02-04 20:27  tanchishefight1.0\Include\
     目录           0  2020-02-04 20:27  tanchishefight1.0\Include\site\
     目录           0  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\
     目录           0  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\
     文件         840  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\_camera.h
     文件       28409  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\_pygame.h
     文件         958  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\_surface.h
     文件        4777  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\bitmask.h
     文件        6957  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\camera.h
     文件        1643  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\fastevents.h
     文件        1836  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\font.h
     文件        4175  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\freetype.h
     文件         620  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\mask.h
     文件        2258  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\mixer.h
     文件        7057  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\palette.h
     文件        1060  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\pgarrinter.h
     文件        1961  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\pgbufferproxy.h
     文件        5927  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\pgcompat.h
     文件         379  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\pgopengl.h
     文件        1246  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\pygame.h
     文件        4594  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\scrap.h
     文件       14554  2020-02-04 20:27  tanchishefight1.0\Include\site\python3.7\pygame\surface.h
     目录           0  2020-02-04 20:25  tanchishefight1.0\Lib\
     目录           0  2020-02-04 20:28  tanchishefight1.0\Lib\site-packages\
     目录           0  2020-02-04 20:28  tanchishefight1.0\Lib\site-packages\PyInstaller\
............此处省略2953个文件信息

评论

共有 条评论