python实现简单俄罗斯方块游戏

 更新时间:2022年01月16日 07:27:08   作者:大学生编程地  
这篇文章主要为大家详细介绍了python实现简单俄罗斯方块游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了python实现简单俄罗斯方块游戏的具体代码,供大家参考,具体内容如下

import pygame,sys,random,time

all_block = [[[0,0],[0,-1],[0,1],[0,2]],
        [[0,0],[0,1],[1,1],[1,0]],
        [[0,0],[0,-1],[-1,0],[-1,1]], 
        [[0,0],[0,1],[-1,-1],[-1,0]],  
        [[0,0],[0,1],[1,0],[0,-1]], 
        [[0,0],[1,0],[-1,0],[1,-1]],
        [[0,0],[1,0],[-1,0],[1,1]]] 
background = [[0 for column in range(0,10)] for row in range(0,22)]
background[0] = [1 for column in range(0,10)]

select_block = list(random.choice(all_block))
block_initial_position = [21,5] 
times = 0
score = [0]  
gameover = [] 
press = False

pygame.init()
screen = pygame.display.set_mode((250,500))
title = pygame.display.set_caption("俄罗斯方块")

#下落、位置、数组检测、得分、屏幕信息
def block_move_down():
    y_drop=block_initial_position[0] 
    x_move=block_initial_position[1]
    y_drop-=1 

    for row,column in select_block:
        row+=y_drop
        column+=x_move

        if background[row][column]==1:
            break 
    else:
        block_initial_position.clear()
        block_initial_position.extend([y_drop,x_move])
        return

    y_drop,x_move=block_initial_position

    for row,column in select_block:
        background[y_drop+row][x_move+column]=1

    complete_row=[] 

    for row in range(1,21):
        if 0 not in background[row]:
            complete_row.append(row)

    complete_row.sort(reverse=True)

    for row in complete_row:
        background.pop(row)
        background.append([0 for column in range(0,10)])

    score[0]+=len(complete_row)
    pygame.display.set_caption(str(score[0])+'分')

    select_block.clear()  
    select_block.extend(list(random.choice(all_block))) 
    block_initial_position.clear()  
    block_initial_position.extend([20,5])
    y_drop,x_move=block_initial_position

    for row,column in select_block:
        row+=y_drop
        column+=x_move
        if background[row][column]:
            gameover.append(1)

#方块设置、变化、背景改变
def new_draw():
    y_drop,x_move=block_initial_position
    for row,column in select_block:
        row+=y_drop
        column+=x_move 
        pygame.draw.rect(screen,(255,165,0),(column*25,500-row*25,23,23))

    for row in range(0,20):
        for column in range(0,10):
            bottom_block=background[row][column]
            if bottom_block:
                pygame.draw.rect(screen,(0,0,255),(column*25,500-row*25,23,23))

#方块的移动,防止出界,碰撞
def move_left_right(n):
    y_drop,x_move=block_initial_position 
    x_move+=n
    for row,column in select_block:
        row+=y_drop
        column+=x_move
        if column<0 or column>9 or background[row][column]:
            break
    else:
        block_initial_position.clear()
        block_initial_position.extend([y_drop,x_move])


#旋转,位置都进行变化
def rotate():
    y_drop,x_move=block_initial_position
    rotating_position=[(-column,row)for row,column in select_block]

    for row,column in rotating_position:
        row+=y_drop
        column+=x_move
        if column<0 or column>9 or background[row][column]:
            break
    else:
        select_block.clear()
        select_block.extend(rotating_position)

while True:
    screen.fill((255,255,255))
    for event in pygame.event.get():
        if event.type==pygame.QUIT:
            sys.exit()
        elif event.type==pygame.KEYDOWN and event.key==pygame.K_LEFT:
            move_left_right(-1)
        elif event.type==pygame.KEYDOWN and event.key==pygame.K_RIGHT:
            move_left_right(1)
        elif event.type==pygame.KEYDOWN and event.key==pygame.K_UP:
            rotate()
        elif event.type==pygame.KEYDOWN and event.key==pygame.K_DOWN:
            press=True
        elif event.type==pygame.KEYUP and event.key==pygame.K_DOWN:
            press=False

    if press:
        times+=10

    if times>=50:
        block_move_down()
        times=0
    else:
        times+=1

    if gameover:
        sys.exit()

    new_draw()
    pygame.time.Clock().tick(200)
    pygame.display.flip()

效果:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Python高级架构模式知识点总结

    Python高级架构模式知识点总结

    在本篇文章里小编给大家整理了一篇关于Python高级架构模式知识点总结内容,有兴趣的朋友们可以学习参考下。
    2021-08-08
  • python调用java的jar包方法

    python调用java的jar包方法

    今天小编就为大家分享一篇python调用java的jar包方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-12-12
  • 分享Python字符串关键点

    分享Python字符串关键点

    字符串是 Python 中最常用的数据类型。我们可以使用引号来创建字符串,通过本篇文章给大家分享python字符串关键点相关资料,感兴趣的朋友一起学习吧
    2015-12-12
  • matplotlib交互式数据光标实现(mplcursors)

    matplotlib交互式数据光标实现(mplcursors)

    这篇文章主要介绍了matplotlib交互式数据光标实现(mplcursors),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2021-01-01
  • 利用PyTorch进行模型量化的全过程

    利用PyTorch进行模型量化的全过程

    模型量化是一种降低深度学习模型大小和加速其推理速度的技术,它通过减少模型中参数的比特数来实现这一目的,本文给大家介绍了利用PyTorch进行模型量化的全过程,需要的朋友可以参考下
    2024-07-07
  • python读取txt文件,去掉空格计算每行长度的方法

    python读取txt文件,去掉空格计算每行长度的方法

    今天小编就为大家分享一篇python读取txt文件,去掉空格计算每行长度的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-12-12
  • python中super().__init__()的用法

    python中super().__init__()的用法

    python里的super().__init__()有什么作用?很多同学没有弄清楚。super()用来调用父类(基类)的方法,__init__()是类的构造方法,感兴趣的小伙伴可以参考阅读本文
    2023-03-03
  • python使用Pyinstaller如何打包整个项目

    python使用Pyinstaller如何打包整个项目

    这篇文章主要介绍了python使用Pyinstaller如何打包整个项目,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-11-11
  • Python已解决NameError: name ‘xxx‘ is not defined

    Python已解决NameError: name ‘xxx‘ is not&nb

    本文主要介绍了Python已解决NameError: name ‘xxx‘ is not defined,解决报错NameError: name 'xxx' is not defined的关键在于仔细检查拼写、作用域和赋值等问题,感兴趣的可以了解一下
    2024-06-06
  • python生成ppt的方法

    python生成ppt的方法

    这篇文章主要为大家详细介绍了python生成ppt的方法,通过python生成ppt文件,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-06-06

最新评论