Python Tetromino怎么实现?python俄罗斯方块代码

Python Tetromino (俄罗斯方块)

下面是一个完整的、可运行的 Python Tetromino(俄罗斯方块)实现,使用 pygame 库。

安装依赖

pip install pygame

完整代码

import pygame
import random
import sys
# 初始化 pygame
pygame.init()
# ==================== 常量 ====================
BLOCK_SIZE = 30
COLS = 10
ROWS = 20
SCREEN_WIDTH = COLS  BLOCK_SIZE + 200  # 留出侧边栏
SCREEN_HEIGHT = ROWS  BLOCK_SIZE
# 颜色定义
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
GRAY = (40, 40, 40)
DARK_GRAY = (80, 80, 80)
# 方块颜色
COLORS = [
    (0, 255, 255),    # I - 青色
    (0, 0, 255),      # J - 蓝色
    (255, 165, 0),    # L - 橙色
    (255, 255, 0),    # O - 黄色
    (0, 255, 0),      # S - 绿色
    (128, 0, 128),    # T - 紫色
    (255, 0, 0),      # Z - 红色
]
# 方块形状定义 (每个方块有4个旋转状态)
SHAPES = [
    # I
    [
        [[1, 1, 1, 1]],
        [[1], [1], [1], [1]],
    ],
    # J
    [
        [[1, 0, 0], [1, 1, 1]],
        [[1, 1], [1, 0], [1, 0]],
        [[1, 1, 1], [0, 0, 1]],
        [[0, 0, 1], [0, 1], [0, 1]],
    ],
    # L
    [
        [[0, 0, 1], [1, 1, 1]],
        [[1, 0], [1, 0], [1, 1]],
        [[1, 1, 1], [1, 0, 0]],
        [[0, 1], [0, 1], [1, 1]],
    ],
    # O
    [
        [[1, 1], [1, 1]],
    ],
    # S
    [
        [[0, 1, 1], [1, 1, 0]],
        [[1, 0], [1, 1], [0, 1]],
    ],
    # T
    [
        [[0, 1, 0], [1, 1, 1]],
        [[0, 1], [1, 1], [0, 1]],
        [[1, 1, 1], [0, 1, 0]],
        [[1, 0], [1, 1], [1, 0]],
    ],
    # Z
    [
        [[1, 1, 0], [0, 1, 1]],
        [[0, 1], [1, 1], [1, 0]],
    ],
]
# ==================== 方块类 ====================
class Piece:
    def __init__(self, shape_index=None):
        if shape_index is None:
            self.shape_index = random.randint(0, len(SHAPES) - 1)
        else:
            self.shape_index = shape_index
        self.color = COLORS[self.shape_index]
        self.rotation = 0
        # 初始位置:顶部中间
        self.x = COLS // 2 - 1
        self.y = 0
    def get_shape(self):
        """获取当前旋转状态下的形状"""
        shapes = SHAPES[self.shape_index]
        return shapes[self.rotation % len(shapes)]
    def rotate(self):
        """旋转方块"""
        self.rotation = (self.rotation + 1) % len(SHAPES[self.shape_index])
# ==================== 游戏主类 ====================
class Tetris:
    def __init__(self):
        self.screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
        pygame.display.set_caption("Tetromino - 俄罗斯方块")
        self.clock = pygame.time.Clock()
        self.font = pygame.font.SysFont("arial", 24)
        self.big_font = pygame.font.SysFont("arial", 48, bold=True)
        self.reset_game()
    def reset_game(self):
        """重置游戏状态"""
        self.board = [[None]  COLS for _ in range(ROWS)]
        self.current_piece = Piece()
        self.next_piece = Piece()
        self.score = 0
        self.level = 1
        self.lines_cleared = 0
        self.game_over = False
        self.drop_timer = 0
        self.drop_interval = 500  # 毫秒,随等级加快
    def get_valid_positions(self, piece, dx=0, dy=0):
        """获取方块所有有效位置(用于碰撞检测)"""
        shape = piece.get_shape()
        positions = []
        for r, row in enumerate(shape):
            for c, cell in enumerate(row):
                if cell:
                    new_x = piece.x + c + dx
                    new_y = piece.y + r + dy
                    positions.append((new_x, new_y))
        return positions
    def is_valid(self, piece, dx=0, dy=0):
        """检查方块位置是否合法"""
        positions = self.get_valid_positions(piece, dx, dy)
        for x, y in positions:
    

Python Tetromino怎么实现?python俄罗斯方块代码

全网最详细-使用python实现俄罗斯方块小游戏
加载中
全网最详细-使用python实现俄罗斯方块小游戏
# 检查边界 if x < 0 or x >= COLS or y >= ROWS: return False # 检查是否与已有方块重叠 if y >= 0 and self.board[y][x] is not None: return False return True def lock_piece(self): """将当前方块锁定到棋盘""" shape = self.current_piece.get_shape() for r, row in enumerate(shape): for c, cell in enumerate(row): if cell: x = self.current_piece.x + c y = self.current_piece.y + r if 0 <= y < ROWS and 0 <= x < COLS: self.board[y][x] = self.current_piece.color def clear_lines(self): """清除完整行并计分""" lines_to_clear = [] for r in range(ROWS): if all(cell is not None for cell in self.board[r]): lines_to_clear.append(r) if lines_to_clear: # 从下往上删除行 for line in sorted(lines_to_clear, reverse=True): del self.board[line] self.board.insert(0, [None] COLS) num_lines = len(lines_to_clear) # 计分规则 points = [0, 100, 300, 500, 800] self.score += points[num_lines] self.level self.lines_cleared += num_lines # 每10行升一级 self.level = self.lines_cleared // 10 + 1 self.drop_interval = max(100, 500 - (self.level - 1) 40) def spawn_new_piece(self): """生成新方块""" self.current_piece = self.next_piece self.next_piece = Piece() # 检查新方块是否立即碰撞(游戏结束) if not self.is_valid(self.current_piece): self.game_over = True def get_ghost_piece(self): """获取幽灵方块(预测落点)""" ghost = Piece() ghost.shape_index = self.current_piece.shape_index ghost.color = self.current_piece.color ghost.rotation = self.current_piece.rotation ghost.x = self.current_piece.x ghost.y = self.current_piece.y while self.is_valid(ghost, dy=1): ghost.y += 1 return ghost def draw_board(self): """绘制游戏棋盘""" # 背景 self.screen.fill(BLACK) # 绘制网格线 for r in range(ROWS + 1): pygame.draw.line(self.screen, GRAY, (0, r BLOCK_SIZE), (COLS BLOCK_SIZE, r BLOCK_SIZE)) for c in range(COLS + 1): pygame.draw.line(self.screen, GRAY, (c BLOCK_SIZE, 0), (c BLOCK_SIZE, ROWS BLOCK_SIZE)) # 绘制已锁定的方块 for r in range(ROWS): for c in range(COLS): if self.board[r][c] is not None: rect = pygame.Rect(c BLOCK_SIZE, r BLOCK_SIZE, BLOCK_SIZE, BLOCK_SIZE) pygame.draw.rect(self.screen, self.board[r][c], rect) pygame.draw.rect(self.screen, DARK_GRAY, rect, 2) # 绘制幽灵方块 if not self.game_over: ghost = self.get_ghost_piece() shape = ghost.get_shape() for r, row in enumerate(shape): for c, cell in enumerate(row): if cell: gx = ghost.x + c gy = ghost.y + r if 0 <= gy < ROWS: rect = pygame.Rect(gx BLOCK_SIZE, gy BLOCK_SIZE, BLOCK_SIZE, BLOCK_SIZE) pygame.draw.rect(self.screen, (255, 255, 255, 50), rect, 2) # 绘制当前方块 if not self.game_over: shape = self.current_piece.get_shape()

Python Tetromino怎么实现?python俄罗斯方块代码

for r, row in enumerate(shape): for c, cell in enumerate(row): if cell: x = self.current_piece.x + c y = self.current_piece.y + r if y >= 0: # 只绘制可见部分 rect = pygame.Rect(x BLOCK_SIZE, y BLOCK_SIZE, BLOCK_SIZE, BLOCK_SIZE) pygame.draw.rect(self.screen, self.current_piece.color, rect) pygame.draw.rect(self.screen, DARK_GRAY, rect, 2) def draw_sidebar(self): """绘制侧边栏(分数、下一个方块等)""" sidebar_x = COLS BLOCK_SIZE + 20 # 标题 title = self.big_font.render("TETRIS", True, WHITE) self.screen.blit(title, (sidebar_x, 20)) # 分数 score_text = self.font.render(f"Score: {self.score}", True, WHITE) self.screen.blit(score_text, (sidebar_x, 100)) # 等级 level_text = self.font.render(f"Level: {self.level}", True, WHITE) self.screen.blit(level_text, (sidebar_x, 140)) # 行数 lines_text = self.font.render(f"Lines: {self.lines_cleared}", True, WHITE) self.screen.blit(lines_text, (sidebar_x, 180)) # 下一个方块 next_title = self.font.render("Next:", True, WHITE) self.screen.blit(next_title, (sidebar_x, 240)) # 绘制下一个方块预览 shape = self.next_piece.get_shape() preview_x = sidebar_x + 10 preview_y = 280 for r, row in enumerate(shape): for c, cell in enumerate(row): if cell: rect = pygame.Rect(preview_x + c BLOCK_SIZE, preview_y + r BLOCK_SIZE, BLOCK_SIZE, BLOCK_SIZE) pygame.draw.rect(self.screen, self.next_piece.color, rect) pygame.draw.rect(self.screen, DARK_GRAY, rect, 2) # 操作说明 controls_y = 400 controls = [ "Controls:", "← → : Move", "↑ : Rotate", "↓ : Soft Drop", "Space: Hard Drop", "P : Pause", "R : Restart", "Q : Quit" ] for i, text in enumerate(controls): color = WHITE if i > 0 else (200, 200, 0) t = self.font.render(text, True, color) self.screen.blit(t, (sidebar_x, controls_y + i 28)) # 游戏结束 if self.game_over: overlay = pygame.Surface((SCREEN_WIDTH, SCREEN_HEIGHT)) overlay.set_alpha(180) overlay.fill(BLACK) self.screen.blit(overlay, (0, 0)) go_text = self.big_font.render("GAME OVER", True, (255, 0, 0)) text_rect = go_text.get_rect(center=(SCREEN_WIDTH // 2, SCREEN_HEIGHT // 2 - 30)) self.screen.blit(go_text, text_rect) score_text = self.font.render(f"Final Score: {self.score}", True, WHITE) score_rect = score_text.get_rect(center=(SCREEN_WIDTH // 2, SCREEN_HEIGHT // 2 + 20)) self.screen.blit(score_text, score_rect) restart_text = self.font.render("Press R to Restart", True, WHITE) restart_rect = restart_text.get_rect(center=(SCREEN_WIDTH // 2, SCREEN_HEIGHT // 2 + 60)) self.screen.blit(restart_text, restart_rect) def draw(self): """绘制整个游戏画面""" self.draw_board() self.draw_sidebar() pygame.display.flip() def handle_input(self): """处理用户输入""" keys = pygame.key.get_pressed() dt = self.clock.get_time() if not self.game_over: # 左右移动 if keys[pygame.K_LEFT]: if self.is_valid(self.current_piece, dx=-1):

Python Tetromino怎么实现?python俄罗斯方块代码

self.current_piece.x -= 1 if keys[pygame.K_RIGHT]: if self.is_valid(self.current_piece, dx=1): self.current_piece.x += 1 # 旋转 if keys[pygame.K_UP]: old_rotation = self.current_piece.rotation self.current_piece.rotate() if not self.is_valid(self.current_piece): # 尝试墙踢(wall kick) for offset in [-1, 1, -2, 2]: if self.is_valid(self.current_piece, dx=offset): self.current_piece.x += offset break else: # 回滚旋转 self.current_piece.rotation = old_rotation break # 软降 if keys[pygame.K_DOWN]: self.drop_timer += dt 3 # 加速下落 # 硬降 if keys[pygame.K_SPACE]: while self.is_valid(self.current_piece, dy=1): self.current_piece.y += 1 self.lock_piece() self.clear_lines() self.spawn_new_piece() self.drop_timer = 0 # 暂停 if keys[pygame.K_p]: pass # 简化:不实现暂停切换 # 重启 if keys[pygame.K_r]: self.reset_game() # 退出 if keys[pygame.K_q]: pygame.quit() sys.exit() def update(self): """更新游戏状态""" if not self.game_over: self.drop_timer += self.clock.get_time() if self.drop_timer >= self.drop_interval: if self.is_valid(self.current_piece, dy=1): self.current_piece.y += 1 else: # 锁定方块 self.lock_piece() self.clear_lines() self.spawn_new_piece() self.drop_timer = 0 def run(self): """游戏主循环""" running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False elif event.type == pygame.KEYDOWN: if event.key == pygame.K_q: running = False elif event.key == pygame.K_r: self.reset_game() self.handle_input() self.update() self.draw() self.clock.tick(60) # 60 FPS pygame.quit() sys.exit() # ==================== 运行游戏 ==================== if __name__ == "__main__": game = Tetris() game.run()

功能特性

功能 说明
7种标准方块 I, J, L, O, S, T, Z
旋转系统 支持墙踢(Wall Kick)
幽灵方块 白色半透明预览落点
下一个方块预览 侧边栏显示下一个方块
计分系统 单行100分,双行300分,三行500分,四行800分(乘以等级)
等级系统 每清除10行升一级,下落速度加快
硬降/软降 空格硬降,↓键软降

操作说明

  • : 左右移动
  • : 旋转
  • : 加速下落
  • 空格 : 直接落到底部
  • R : 重新开始
  • Q : 退出游戏

运行方式

python tetromino.py

确保已安装 pygamepip install pygame

首发原创文章,作者:王坚‌,如若转载,请注明出处:https://idctop.com/article/484379.html

(0)
Curese Python是什么?Python新手入门教程
上一篇 2026年7月12日 01:57
cdn供应商哪家好,cdn供应商排名
下一篇 2026年7月12日 01:59

相关推荐

  • gp数据库设置密码忘了怎么办?如何重置gp数据库密码

    在Greenplum数据库中设置密码,核心是通过修改pg_hba.conf配置文件启用md5或scram-sha-256认证方式,并使用ALTER USER命令为具体账号分配强密码,同时重启服务使配置生效,很多刚接触Greenplum(GP)数据库的管理员,往往习惯性地沿用PostgreSQL的默认信任模式,觉……

    2026年6月25日
    2600
  • 服务器机房造价预算揭秘?建设一个机房需要多少钱

    服务器机房造价的核心影响因素服务器机房的造价是企业在数字化转型中的关键投资,直接影响运营效率和长期成本,核心结论是:一个标准服务器机房的造价范围通常在50万到500万人民币之间,具体取决于规模、技术水平和定制需求,小型企业机房可能只需50万-100万,而大型数据中心可达500万以上,这一造价受多重因素驱动,包括……

    2026年2月15日
    31700
  • 服务器怎么买经济型,经济型服务器购买流程是怎样的

    购买经济型服务器的核心在于精准匹配业务需求与配置资源,拒绝性能过剩,同时选择正确的购买时机与付费模式,企业或个人在选购时,应优先考虑云服务商的促销活动与抢占式实例,结合自身业务波峰波谷特性,采用“按需+预留”的组合策略,将综合成本降低30%至50%, 真正的经济型购买,不是单纯寻找最低价格,而是在保障业务稳定性……

    2026年3月22日
    10500
  • 如何查看服务器内存使用日志?|服务器性能优化终极指南

    服务器内存使用日志是运维人员诊断性能瓶颈、预防系统崩溃的核心依据,通过实时监控与深度分析内存日志,可精准定位内存泄漏、配置不当或资源争用问题,确保业务连续性与服务稳定性,内存日志的核心价值与监控指标内存日志不仅记录使用量,更揭示资源分配模式,关键指标包括:可用内存(Available Memory):包含缓存和……

    2026年2月7日
    14000
  • 视频存储时间有规定吗?监控录像保存多久合适

    视频存储时间并非无限期保留,通常依据《网络安全法》及行业规范,日志留存不少于6个月,而监控录像则根据场景不同,常规保存期为30至90天,关键数据需长期归档,在数字化时代,视频数据如同企业的数字资产,其存储策略直接关系到合规安全与成本控制,许多用户常陷入一个误区,认为硬盘插上去就能永久保存,或者盲目追求云端无限存……

    2026年7月3日
    1600
  • 服务器端口一共有多少个,服务器端口范围是多少

    从网络通信的底层逻辑来看,一台服务器理论上拥有 65536 个端口,这个数字并非随意设定,而是由TCP/IP协议栈中TCP头部的数据结构决定的,具体而言,端口号是一个16位的无符号整数,其数值范围从0到65535,因此总数为65536个,在实际的网络运维与架构设计中,理解这一数字背后的分配机制、使用限制以及管理……

    2026年2月23日
    13600
  • 燕云国际服有哪些服务器值得选择,哪个服务器最稳定

    燕云十六声国际服目前开放了北美、欧洲、东南亚、东亚(除中国大陆)四大战区,具体服务器节点分布在洛杉矶、圣何塞、法兰克福、新加坡、东京和中国香港, 不同节点的网络质量差异明显,选择哪个服务器取决于你所在的地理位置和对延迟的敏感度,下面我按区域拆解各服务器的实际体验,并给出可操作的连接方案,国际服四大战区与核心服务……

    2026年8月23日
    200
  • 服务器带外管理装系统怎么操作?服务器带外管理安装系统详细教程

    服务器带外管理装系统是现代数据中心运维人员必须掌握的核心技能,它彻底改变了传统光盘、U盘引导安装的低效模式,通过服务器的带外管理系统(如iDRAC、iLO、IPMI等),运维人员无需亲临机房现场,即可远程完成操作系统的快速部署与故障恢复,极大提升了运维效率与业务连续性,掌握这一技术,意味着拥有了全天候、不受地理……

    2026年4月11日
    7400
  • E9000服务器主要有哪些组件,多少钱?

    E9000服务器的核心组件包括计算节点、交换模块、管理模块、电源模块和风扇模块,这些模块共同构成了其高密度、高性能的融合架构,适用于虚拟化、大数据等场景,E9000服务器组件详细解析计算节点计算节点是E9000服务器的处理核心,负责运行操作系统和业务应用,每个节点采用刀片式设计,可独立插拔,内部集成CPU、内存……

    2026年8月7日
    200
  • 个人博客如何购买虚拟主机?虚拟主机怎么选才便宜

    优先选择国内备案的轻量级云服务器或高性能共享主机,重点考察解析速度、SSL证书支持及备份机制,而非单纯追求低价,搭建个人博客是许多技术爱好者和内容创作者的起点,在2026年的互联网环境下,网络基础设施已经非常成熟,但“虚拟主机”这个概念在实际操作中发生了细微变化,很多新手容易陷入价格陷阱,忽略了稳定性与合规性……

    2026年6月12日
    2900

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注