• 大小: 458KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: Python
  • 标签: 游戏代码  

资源简介

文件中有打乒乓球游戏代码和滑雪游戏代码,还有一些其他显示动态图的代码,可以作为python游戏小作业

资源截图

代码片段和文件信息

import pygamesysrandomtime
from pygame.color import THECOLORS
pygame.init()
screen = pygame.display.set_mode([640480])
screen.fill([255255255])
for i in range(100):
    width = random.randint(0250)
    height = random.randint(0100)
    top = random.randint(0400)
    left = random.randint(0500)
    color_name = random.choice(THECOLORS.keys())
    color = THECOLORS[color_name]
    pygame.draw.rect(screencolor[lefttopwidthheight]3)
    pygame.time.delay(80)
    pygame.display.flip()
while  True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            sys.exit()

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-12-20 12:03  pythonGame\
     文件         389  2017-12-20 12:03  pythonGame\.project
     文件         307  2017-12-20 12:03  pythonGame\.pydevproject
     文件        1006  2017-03-22 22:37  pythonGame\README.md
     文件         612  2017-03-22 22:37  pythonGame\arts.py
     目录           0  2017-12-20 12:03  pythonGame\bg_img\
     文件        3576  2017-03-22 22:37  pythonGame\bg_img\no.png
     文件        1041  2017-03-22 22:37  pythonGame\bg_img\pingpang.png
     文件       19746  2017-03-22 22:37  pythonGame\bg_img\pingpangGamePic.jpeg
     文件       27538  2017-03-22 22:37  pythonGame\bg_img\pingpangGamePic2.jpeg
     文件       35705  2017-03-22 22:37  pythonGame\bg_img\skierGame.jpeg
     文件       41394  2017-03-22 22:37  pythonGame\bg_img\skierGamePic.jpeg
     文件        1010  2017-03-22 22:37  pythonGame\bg_img\skier_crash.png
     文件         768  2017-03-22 22:37  pythonGame\bg_img\skier_down.png
     文件         257  2017-03-22 22:37  pythonGame\bg_img\skier_flag.png
     文件         972  2017-03-22 22:37  pythonGame\bg_img\skier_left1.png
     文件        1002  2017-03-22 22:37  pythonGame\bg_img\skier_left2.png
     文件         983  2017-03-22 22:37  pythonGame\bg_img\skier_right1.png
     文件        1042  2017-03-22 22:37  pythonGame\bg_img\skier_right2.png
     文件         847  2017-03-22 22:37  pythonGame\bg_img\skier_tree.png
     目录           0  2017-12-20 12:03  pythonGame\bg_music\
     文件      349902  2017-03-22 22:37  pythonGame\bg_music\bg_music.mp3
     文件        7446  2017-03-22 22:37  pythonGame\bg_music\game_over.wav
     文件        9260  2017-03-22 22:37  pythonGame\bg_music\get_point.wav
     文件        4978  2017-03-22 22:37  pythonGame\bg_music\hit_paddle.wav
     文件        4178  2017-03-22 22:37  pythonGame\bg_music\hit_wall.wav
     文件        2236  2017-03-22 22:37  pythonGame\bg_music\new_life.wav
     文件        7836  2017-03-22 22:37  pythonGame\bg_music\splat.wav
     文件         541  2017-03-22 22:37  pythonGame\drawTree.py
     文件        1607  2017-03-22 22:37  pythonGame\eventsGames.py
     文件        1676  2017-03-22 22:37  pythonGame\mutiplPicMove.py
............此处省略4个文件信息

评论

共有 条评论