资源简介
俄罗斯方块是儿时最经典的游戏之一,使用Python实现俄罗斯方块游戏。
代码片段和文件信息
import random
from collections import namedtuple
Point = namedtuple(‘Point‘ ‘X Y‘)
Shape = namedtuple(‘Shape‘ ‘X Y Width Height‘)
Block = namedtuple(‘Block‘ ‘template start_pos end_pos name next‘)
# 方块形状的设计,我最初我是做成 4 × 4,因为长宽最长都是4,这样旋转的时候就不考虑怎么转了,就是从一个图形替换成另一个
# 其实要实现这个功能,只需要固定左上角的坐标就可以了
# S形方块
S_BLOCK = [Block([‘.OO‘
‘OO.‘
‘...‘] Point(0 0) Point(2 1) ‘S‘ 1)
Block([‘O..‘
‘OO.‘
‘.O.‘] Point(0 0) Point(1 2) ‘S‘ 0)]
# Z形方块
Z_BLOCK = [Block([‘OO.‘
‘.OO‘
‘...‘] Point(0 0) Point(2 1) ‘Z‘ 1)
Block([‘.O.‘
‘OO.‘
‘O..‘] Point(0 0) Point(1 2) ‘Z‘ 0)]
# I型方块
I_BLOCK = [Block([‘.O..‘
‘.O..‘
‘.O..‘
‘.O..‘] Point(1 0) Point(1 3) ‘I‘ 1)
Block([‘....‘
‘....‘
‘OOOO‘
‘....‘] Point(0 2) Point(3 2) ‘I‘ 0)]
# O型方块
O_BLOCK = [Block([‘OO‘
‘OO‘] Point(0 0) Point(1 1) ‘O‘ 0)]
# J型方块
J_BLOCK = [Block([‘O..‘
‘OOO‘
‘...‘] Point(0 0) Point(2 1) ‘J‘ 1)
Block([‘.OO‘
‘.O.‘
‘.O.‘] Point(1 0) Point(2 2) ‘J‘ 2)
Block([‘...‘
‘OOO‘
‘..O‘] Point(0 1) Point(2 2) ‘J‘ 3)
Block([‘.O.‘
‘.O.‘
‘OO.‘] Point(0 0) Point(1 2) ‘J‘ 0)]
# L型方块
L_BLOCK = [Block([‘..O‘
‘OOO‘
‘...‘] Point(0 0) Point(2 1) ‘L‘ 1)
Block([‘.O.‘
‘.O.‘
‘.OO‘] Point(1 0) Point(2 2) ‘L‘ 2)
Block([‘...‘
‘OOO‘
‘O..‘] Point(0 1) Point(2 2) ‘L‘ 3)
Block([‘OO.‘
‘.O.‘
‘.O.‘] Point(0 0) Point(1 2) ‘L‘ 0)]
# T型方块
T_BLOCK = [Block([‘.O.‘
‘OOO‘
‘...‘] Point(0 0) Point(2 1) ‘T‘ 1)
Block([‘.O.‘
‘.OO‘
‘.O.‘] Point(1 0) Point(2 2) ‘T‘ 2)
Block([‘...‘
‘OOO‘
‘.O.‘] Point(0 1) Point(2 2) ‘T‘ 3)
Block([‘.O.‘
‘OO.‘
‘.O.‘] Point(0 0) Point(1 2) ‘T‘ 0)]
BLOCKS = {‘O‘: O_BLOCK
‘I‘: I_BLOCK
‘Z‘: Z_BLOCK
‘T‘: T_BLOCK
‘L‘: L_BLOCK
‘S‘: S_BLOCK
‘J‘: J_BLOCK}
def get_block():
block_name = random.choice(‘OIZTLSJ‘)
b = BLOCKS[block_name]
idx = random.randint(0 len(b) - 1)
return b[idx]
def get_next_block(block):
b = BLOCKS[block.name]
return b[block.next]
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-14 14:16 俄罗斯方块\
文件 3176 2019-01-02 09:14 俄罗斯方块\blocks.py
文件 98600 2019-03-14 14:16 俄罗斯方块\freesansbold.ttf
文件 10240 2019-03-14 14:18 俄罗斯方块\tetris.py
文件 0 2018-08-30 21:03 俄罗斯方块\__init__.py
目录 0 2019-01-03 09:41 俄罗斯方块\__pycache__\
文件 1674 2019-01-03 09:41 俄罗斯方块\__pycache__\blocks.cpython-36.pyc
文件 45580 2019-01-02 13:13 俄罗斯方块\俄罗斯方块.png
- 上一篇:数值分析第五版部分上机实习题报告和源代码
- 下一篇:模拟示波器 py脚本
相关资源
- python实现SGBM图像匹配算法
- python实现灰度直方图均衡化
- scrapy_qunar_one
- Python学习全系列教程永久可用
- python简明教程.chm
- 抽奖大转盘python的图形化界面
- 双边滤波器实验报告及代码python
- python +MYSQL+HTML实现21蛋糕网上商城
- Python-直播答题助手自动检测出题搜索
- OpenCV入门教程+OpenCV官方教程中文版
- Python 串口工具源码+.exe文件
- Python开发的全栈股票系统.zip
- Python操作Excel表格并将其中部分数据写
- python书籍 PDF
- 利用python绘制散点图
- python+labview+No1.vi
- 老男孩python项目实战
- python源码制作whl文件.rar
- python3.5可用的scipy
- PYTHON3 经典50案例.pptx
- 计算机科学导论-python.pdf
- python模拟鼠标点击屏幕
- windows鼠标自动点击py脚本
- 鱼c小甲鱼零基础学python全套课后题和
- Python 练习题100道
- Practical Programming 2nd Edition
- wxPython Application Development Cookbook
- python 3.6
- Python 3.5.2 中文文档 互联网唯一CHM版本
- python3.5.2.chm官方文档
评论
共有 条评论