资源简介
基于python的俄罗斯方块小游戏,用较短的代码量实现了游戏的基本功能:包括翻转,边界检测,自动加分等。
代码片段和文件信息
from tkinter import *
from time import sleep
from random import *
from tkinter import messagebox
class Teris:
def __init__(self):
# 方块颜色列表
self.color = [‘red‘ ‘orange‘ ‘yellow‘ ‘purple‘ ‘blue‘ ‘green‘ ‘pink‘]
# 设置核心方块,任何形状都可以通过相对位置绘制
# 字典 存储形状对应7种形状 元组存储坐标
self.shapeDict = {1: [(0 0) (0 -1) (0 -2) (0 1)] # 方块 I 型
2: [(0 0) (0 -1) (1 -1) (1 0)] # 方块 O 型
3: [(0 0) (-1 0) (0 -1) (1 0)] # 方块 T 型
4: [(0 0) (0 -1) (1 0) (2 0)] # 方块 J 右长倒L盖子型
5: [(0 0) (0 -1) (-1 0) (-2 0)] # 方块 L 型
6: [(0 0) (0 -1) (-1 -1) (1 0)] # 方块 Z 型
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 14892 2018-11-12 15:27 ELuoSiFangKuai.py
文件 190032 2018-11-18 22:33 ELuoSiFangKuai-converted.pdf
----------- --------- ---------- ----- ----
204924 2
- 上一篇:pygame的接球小游戏
- 下一篇:布丰投针python
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- python turtle 跳房子
- python 人群计数
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
- 我的世界python编程——天空行走py格式
评论
共有 条评论