为了账号安全,请及时绑定邮箱和手机立即绑定

童年记忆第七弹!!!用python开发2048

###前言
这款游戏的玩法很简单,每次可以选择上下左右滑动,每滑动一次,所有的数字方块都会往滑动的方向靠拢,系统也会在空白的地方乱数出现一个数字方块,相同数字的方块在靠拢、相撞时会相加。不断的叠加最终拼凑出2048这个数字就算成功。

2048的规则大家都清楚了,那么我们一起来用python开发它吧。

游戏效果

效果

效果

游戏用到的图片

背景2.GIF

数字图片都是90像素的正方形
数字图片

游戏代码

[2048.py](游戏主模块)

import pygame
from settings import Settings
import game_body as gb
import 算法 as sf

nums = [[0, 0, 0, 0],
        [0, 0, 0, 0],
        [0, 0, 0, 0],
        [0, 0, 0, 0]]
def run_game():
    set = Settings()
    pygame.init()
    screen = pygame.display.set_mode((set.screen_width, set.screen_height))
    pygame.display.set_caption("2048")
    sf.addnum(nums)
    sf.addnum(nums)
    while True:
        gb.check_events(nums)
        gb.update_screen(nums, set, screen)
        pygame.display.flip()
run_game()

[算法.py]对应按键的数据处理,判断游戏是否结束,添加数字)

对数据的处理没有好好想更好的处理方法,我觉着肯定有简单的方法,但是我想不到。。。

import random
import sys
def right(nums):
    for i in [0,1,2,3]:
        j = 3
        while j >= 0:
            if nums[i][j] == 0:
                j -= 1
            elif j > 0 and nums[i][j] == nums[i][j-1]:
                nums[i][j] *= 2
                nums[i][j-1] = 0
                j -= 2
            elif j > 1 and nums[i][j-1] == 0 and nums[i][j] == nums[i][j-2]:
                nums[i][j] *= 2
                nums[i][j - 2] = 0
                j = -1
            elif j == 3 and nums[i][j] == nums[i][0] and nums[i][j-1] == 0 \
                    and nums[i][j-2] == 0:
                nums[i][j] *= 2
                nums[i][0] = 0
                j = -1
            else:
                j -= 1
        j = 0
        n = []
        while j <= 3:
            if nums[i][j] != 0:
                n.append(nums[i][j])
                nums[i][j] = 0
            j += 1
        m = len(n)
        for i1 in n:
            nums[i][3-m+1] = i1
            m -= 1
def left(nums):
    for i in [0, 1, 2, 3]:
        j = 0
        while j <= 3:
            if nums[i][j] == 0:
                j += 1
            elif j < 3 and nums[i][j] == nums[i][j+1]:
                nums[i][j] *= 2
                nums[i][j+1] = 0
                j += 2
            elif j < 2 and nums[i][j+1] == 0 and nums[i][j] ==nums[i][j+2]:
                nums[i][j] *= 2
                nums[i][j + 2] = 0
                j = 4
            elif j == 0 and nums[i][j] == nums[i][3] and nums[i][j+1] == 0\
                and nums[i][j+2] == 0:
                nums[i][j] *= 2
                nums[i][3] =0
                j = 4
            else:
                j += 1
        j = 0
        n = []
        while j <= 3:
            if nums[i][j] != 0:
                n.append(nums[i][j])
                nums[i][j] = 0
            j += 1
        m = 0
        for i1 in n:
            nums[i][m] = i1
            m += 1
def down(nums):
    for j in [0,1,2,3]:
        i = 3
        while i>=0:
            if nums[i][j] == 0:
                i -= 1
            elif i> 0 and nums[i][j] == nums[i-1][j]:
                nums[i][j] *= 2
                nums[i-1][j] = 0
                i -= 2
            elif i>1 and nums[i-1][j] == 0 and nums[i][j] == nums[i-2][j]:
                nums[i][j] *= 2
                nums[i-2][j] = 0
                i -= 1
            elif i == 3 and nums[i][j] == nums[0][j] and nums[i-1][j] == 0\
                and nums[i-2][j] == 0:
                nums[i][j] *= 2
                nums[0][j] = 0
                i = -1
            else:
                i -= 1
        i = 0
        n = []
        while i <= 3:
            if nums[i][j] != 0:
                n.append(nums[i][j])
                nums[i][j] = 0
            i += 1
        m = len(n)
        for i1 in n:
            nums[3-m+1][j] = i1
            m -= 1
def up(nums):
    for j in [0,1,2,3]:
        i = 0
        while i <= 3:
            if nums[i][j] == 0:
                i += 1
            elif i<3 and nums[i][j] == nums[i+1][j]:
                nums[i][j] *= 2
                nums[i + 1][j] = 0
                i += 2
            elif i < 2 and nums[i+1][j] == 0 and nums[i][j] == nums[i+2][j]:
                nums[i][j] *= 2
                nums[i + 2][j] = 0
                i += 1
            elif i ==0 and nums[i][j] ==nums[3][j] and nums[i+1][j] == 0\
                and nums[i+2][j] == 0:
                nums[i][j] *= 2
                nums[3][j] = 0
                i = 4
            else:
                i += 1
        i = 0
        n = []
        while i <= 3:
            if nums[i][j] != 0:
                n.append(nums[i][j])
                nums[i][j] = 0
            i += 1
        m = 0
        for i1 in n:
            nums[m][j] = i1
            m += 1
def addnum(nums):
    s = []
    for i in range(4):
        for j in range(4):
            if nums[i][j] == 0:
                s.append((i, j))
            if nums[i][j] == 2048:
                print("游戏胜利!")
                sys.exit()
    if len(s) == 0:
        print("游戏结束!")
        sys.exit()
    x = len(s)
    n = random.randint(0, x-1)
    ij = s[n]
    i = int(ij[0])
    j = int(ij[1])
    nums[i][j] = random.choice([2, 4])

game_body.py (响应按键,屏幕更新)

import sys
import pygame
import 算法 as sf
import number as nu
def check_events(nums):
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            sys.exit()
        elif event.type == pygame.KEYDOWN:
            if event.key == pygame.K_RIGHT:
                sf.right(nums)
            elif event.key == pygame.K_LEFT:
                sf.left(nums)
            elif event.key == pygame.K_DOWN:
                sf.down(nums)
            elif event.key == pygame.K_UP:
                sf.up(nums)
            sf.addnum(nums)
def update_screen(nums, set, screen):
    screen.blit(set.screen_bg, set.screen_rect)
    y = set.numlen * 2.5
    for i in range(4):
        x = set.numlen * 0.5
        for j in range(4):
            if nums[i][j] != 0:
                nu.drawnum(nums[i][j], screen, x, y)
            x += set.numlen
        y += set.numlen

[number.py](加载数字图片)

import pygame

def drawnum(num, screen, x, y):
    if num == 2:
        n = pygame.image.load('images/2.gif')
    elif num == 4:
        n = pygame.image.load('images/4.gif')
    elif num == 8:
        n = pygame.image.load('images/8.gif')
    elif num == 16:
        n = pygame.image.load('images/16.gif')
    elif num == 32:
        n = pygame.image.load('images/32.gif')
    elif num == 64:
        n = pygame.image.load('images/64.gif')
    elif num == 128:
        n = pygame.image.load('images/128.gif')
    elif num == 256:
        n = pygame.image.load('images/256.gif')
    elif num == 512:
        n = pygame.image.load('images/512.gif')
    elif num == 1024:
        n = pygame.image.load('images/1024.gif')
    else:
        n = pygame.image.load('images/2048.gif')
    r = n.get_rect()
    r.centerx = x
    r.centery = y
    screen.blit(n, r)

[settings.py](游戏窗口属性)

import pygame
class Settings():
    def __init__(self):
        # 屏幕设置
        self.screen_width = 400
        self.screen_height = 600
        self.screen_bg = pygame.image.load('images/背景2.gif')
        self.screen_rect = self.screen_bg.get_rect()
        self.numlen = 100

#总结
以上就是2048的源码过程,大家可以写一下玩一玩
我是白白,一个喜欢学习喜欢编程的年轻人
想学习python的可以关注我哦~

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消