Python新手实现2048小游戏


Posted in Python onMarch 31, 2015

接触 Python 不久,看到很多人写2048,自己也捣鼓了一个,主要是熟悉Python语法。

程序使用Python3 写的,代码150行左右,基于控制台,方向键使用输入字符模拟。

演示图片

Python新手实现2048小游戏

2048.py

# -*- coding:UTF-8 -*-
#! /usr/bin/python3
 
import random
 
v = [[0, 0, 0, 0],
   [0, 0, 0, 0],
   [0, 0, 0, 0],
   [0, 0, 0, 0]]
 
def display(v, score):
    '''显示界面
 
    '''
    print('{0:4} {1:4} {2:4} {3:4}'.format(v[0][0], v[0][1], v[0][2], v[0][3]))
    print('{0:4} {1:4} {2:4} {3:4}'.format(v[1][0], v[1][1], v[1][2], v[1][3]))
    print('{0:4} {1:4} {2:4} {3:4}'.format(v[2][0], v[2][1], v[2][2], v[2][3]))
    print('{0:4} {1:4} {2:4} {3:4}'.format(v[3][0], v[3][1], v[3][2], v[3][3]), '  Total score: ', score)
 
def init(v):
    '''随机分布网格值
     
    '''
    for i in range(4):
        v[i] = [random.choice([0, 0, 0, 2, 2, 4]) for x in range(4)]
 
def align(vList, direction):
    '''对齐非零的数字
 
    direction == 'left':向左对齐,例如[8,0,0,2]左对齐后[8,2,0,0]
    direction == 'right':向右对齐,例如[8,0,0,2]右对齐后[0,0,8,2]
    '''
 
    # 移除列表中的0
    for i in range(vList.count(0)):
        vList.remove(0)
    # 被移除的0
    zeros = [0 for x in range(4 - len(vList))]
    # 在非0数字的一侧补充0
    if direction == 'left':
        vList.extend(zeros)
    else:
        vList[:0] = zeros
     
def addSame(vList, direction):
    '''在列表查找相同且相邻的数字相加, 找到符合条件的返回True,否则返回False,同时还返回增加的分数
     
    direction == 'left':从右向左查找,找到相同且相邻的两个数字,左侧数字翻倍,右侧数字置0
    direction == 'right':从左向右查找,找到相同且相邻的两个数字,右侧数字翻倍,左侧数字置0
    '''
    score = 0
    if direction == 'left':
        for i in [0, 1, 2]:
            if vList[i] == vList[i+1] != 0: 
                vList[i] *= 2
                vList[i+1] = 0
                score += vList[i]
                return {'bool':True, 'score':score}
    else:
        for i in [3, 2, 1]:
            if vList[i] == vList[i-1] != 0:
                vList[i-1] *= 2
                vList[i] = 0
                score += vList[i-1]
                return {'bool':True, 'score':score}
    return {'bool':False, 'score':score}
 
def handle(vList, direction):
    '''处理一行(列)中的数据,得到最终的该行(列)的数字状态值, 返回得分
 
    vList: 列表结构,存储了一行(列)中的数据
    direction: 移动方向,向上和向左都使用方向'left',向右和向下都使用'right'
    '''
    totalScore = 0
    align(vList, direction)
    result = addSame(vList, direction)
    while result['bool'] == True:
        totalScore += result['score']
        align(vList, direction)
        result = addSame(vList, direction)
    return totalScore
     
 
def operation(v):
    '''根据移动方向重新计算矩阵状态值,并记录得分
    '''
    totalScore = 0
    gameOver = False
    direction = 'left'
    op = input('operator:')
    if op in ['a', 'A']:  # 向左移动
        direction = 'left'
        for row in range(4):
            totalScore += handle(v[row], direction)
    elif op in ['d', 'D']: # 向右移动
        direction = 'right'
        for row in range(4):
            totalScore += handle(v[row], direction)
    elif op in ['w', 'W']: # 向上移动
        direction = 'left'
        for col in range(4):
            # 将矩阵中一列复制到一个列表中然后处理
            vList = [v[row][col] for row in range(4)]
            totalScore += handle(vList, direction)
            # 从处理后的列表中的数字覆盖原来矩阵中的值
            for row in range(4):
                v[row][col] = vList[row]
    elif op in ['s', 'S']: # 向下移动
        direction = 'right'
        for col in range(4):
            # 同上
            vList = [v[row][col] for row in range(4)]
            totalScore += handle(vList, direction)
            for row in range(4):
                v[row][col] = vList[row]
    else:
        print('Invalid input, please enter a charactor in [W, S, A, D] or the lower')
        return {'gameOver':gameOver, 'score':totalScore}
 
    # 统计空白区域数目 N
    N = 0
    for q in v:
      N += q.count(0)
    # 不存在剩余的空白区域时,游戏结束
    if N == 0:
        gameOver = True
        return {'gameOver':gameOver, 'score':totalScore}
 
    # 按2和4出现的几率为3/1来产生随机数2和4
    num = random.choice([2, 2, 2, 4]) 
    # 产生随机数k,上一步产生的2或4将被填到第k个空白区域
    k = random.randrange(1, N+1)
    n = 0
    for i in range(4):
        for j in range(4):
            if v[i][j] == 0:
                n += 1
                if n == k:
                    v[i][j] = num
                    break
 
    return {'gameOver':gameOver, 'score':totalScore}
 
init(v)
score = 0
print('Input:W(Up) S(Down) A(Left) D(Right), press <CR>.')
while True:
    display(v, score)
    result = operation(v)
    if result['gameOver'] == True:
        print('Game Over, You failed!')
        print('Your total score:', score)
    else:
        score += result['score']
        if score >= 2048:
            print('Game Over, You Win!!!')
            print('Your total score:', score)

以上所述就是本文给大家分享的全部代码了,希望能够对大家学习Python有所帮助。

Python 相关文章推荐
在Python中操作时间之strptime()方法的使用
Dec 30 Python
django接入新浪微博OAuth的方法
Jun 29 Python
Python爬虫抓取手机APP的传输数据
Jan 22 Python
PyCharm在win10的64位系统安装实例
Nov 26 Python
django 在原有表格添加或删除字段的实例
May 27 Python
python 处理数字,把大于上限的数字置零实现方法
Jan 28 Python
python画图——实现在图上标注上具体数值的方法
Jul 08 Python
Pandas数据离散化原理及实例解析
Nov 16 Python
Python Opencv实现单目标检测的示例代码
Sep 08 Python
python用tkinter实现一个gui的翻译工具
Oct 26 Python
python实现图片九宫格分割的示例
Apr 25 Python
详解Python生成器和基于生成器的协程
Jun 03 Python
举例介绍Python中的25个隐藏特性
Mar 30 #Python
在Python的循环体中使用else语句的方法
Mar 30 #Python
python实现2048小游戏
Mar 30 #Python
利用一个简单的例子窥探CPython内核的运行机制
Mar 30 #Python
30分钟搭建Python的Flask框架并在上面编写第一个应用
Mar 30 #Python
编写同时兼容Python2.x与Python3.x版本的代码的几个示例
Mar 30 #Python
以Python的Pyspider为例剖析搜索引擎的网络爬虫实现方法
Mar 30 #Python
You might like
php 特殊字符处理函数
2008/09/05 PHP
PHP生成带有雪花背景的验证码
2008/09/28 PHP
php权重计算方法代码分享
2014/01/09 PHP
跟我学Laravel之安装Laravel
2014/10/15 PHP
PHP实现根据时间戳获取周几的方法
2016/02/26 PHP
php遍历解析xml字符串的方法
2016/05/05 PHP
Yii隐藏URL中index.php的方法
2016/07/12 PHP
laravel实现上传图片的两种方式小结
2019/10/12 PHP
用javascript实现页面打印的三种方法
2007/03/05 Javascript
javascript 处理HTML元素必须避免使用的一种方法
2009/07/30 Javascript
firefox下jQuery UI Autocomplete 1.8.*中文输入修正方法
2012/09/19 Javascript
jQuery 获取和设置select下拉框的值实现代码
2013/11/08 Javascript
Jquery 分页插件之Jquery Pagination
2015/08/25 Javascript
详解如何在NodeJS项目中优雅的使用ES6
2017/04/22 NodeJs
Windows下快速搭建NodeJS本地服务器的步骤
2017/08/09 NodeJs
JavaScript 日期时间选择器一些小结
2018/04/02 Javascript
Angular-UI Bootstrap组件实现警报功能
2018/07/16 Javascript
vue-router跳转时打开新页面的两种方法
2019/07/29 Javascript
vue使用过滤器格式化日期
2021/01/20 Vue.js
python字典get()方法用法分析
2015/04/17 Python
python利用正则表达式提取字符串
2016/12/08 Python
基于python批量处理dat文件及科学计算方法详解
2018/05/08 Python
Python连接Redis的基本配置方法
2018/09/13 Python
python实现图片转字符小工具
2019/04/30 Python
keras 自定义loss损失函数,sample在loss上的加权和metric详解
2020/05/23 Python
pycharm中使用request和Pytest进行接口测试的方法
2020/07/31 Python
浅谈CSS3鼠标移入图片动态提示效果(transform)
2017/11/06 HTML / CSS
CSS3实现div从下往上滑入滑出效果示例
2020/04/28 HTML / CSS
Onzie官网:美国时尚瑜伽品牌
2019/08/21 全球购物
技术总监岗位职责
2013/12/05 职场文书
2014年减负工作总结
2014/12/10 职场文书
邀请书模板
2015/02/02 职场文书
医生辞职信范文
2015/03/02 职场文书
MySQL中的隐藏列的具体查看
2021/09/04 MySQL
Python实现Excel文件的合并(以新冠疫情数据为例)
2022/03/20 Python
分享五个Node.js开发的优秀实践 
2022/04/07 NodeJs