Python双人五子棋

这篇文章旨在介绍一个双人的五子棋程序。再次重申,本人不擅长对代码的可读性进行优化,所以可能有些杂乱(在所难免)。
先瞅一眼效果图:
Python双人五子棋
请注意,这个棋子……是这么圆润立体!本程序不需任何素材图片,完全用代码绘制所需的图像,因此这样立体的棋子十分难能可贵。那么,这究竟是如何做到的呢?
别急,听我慢慢道来。 首先,一个好的程序必须配有高端大气的文字。对于博大精深的中文,gbk或utf-8的编码声明自然是非常必要的。于是,就有了第一行代码:
#coding:utf-8
然后,当然是模块的导入。本次所需的模块不多,只有sys、pygame和random。其中pygame需要用pip工具进行安装。
import sys
import pygame
import random
接下来,我们定义一个函数:do(),里面输入我们所需要的代码。至于为何要定义函数,这是因为在游戏结束后需要重新运行该程序,因而不可避免地要将全部的程序代码输入一个函数中,并调用这个函数。
def do():
然后,就是最重磅的棋子绘制函数,我们先看黑棋:
    def black(x, y):
        a = 30
        b = 30
        c = 30
        d = 8
        for i in range(50):
            pygame.draw.circle(screen, (a, b, c), [19.5 + 32 * x, 19.5 + 32 * y], 111 / d)
            a += 0.3
            b += 0.3
            c += 0.3
            d += 0.2
        pygame.display.update()
这里的x和y是绘制黑棋的位置,暂且先不管。可以看到,这一个圆润的棋子是有50个同心圆组成。这些同心圆的颜色逐个变浅,相邻两个圆的颜色差值不变。因此,我们只需要使圆的直径(或半径)呈曲线变化,就可以使绘制的棋子边缘非常圆润。作为一个初二的学生,我立马想到了反比例函数。因此,“d=8”“111/d”和“d+=0.2”实际上是使同心圆的半径随循环变量的变化呈一个偏移的反比例函数,这样就可以营造一种圆润的视感。
同理,白棋的绘制也是遵循类似的方式。在此不在赘述,只给出代码:
    def white(x, y):
        a = 200
        b = 200
        c = 200
        d = 8
        for i in range(50):
            pygame.draw.circle(screen, (a, b, c), [19.5 + 32 * x, 19.5 + 32 * y], 111 / d)
            a += 0.3
            b += 0.3
            c += 0.3
            d += 0.2
        pygame.display.update()
接下来,是冗长无味的棋盘绘制:
    pygame.init()
    screen = pygame.display.set_mode((615, 615))
    pygame.display.set_caption('五子棋')
    screen.fill("#DD954F")
    a = pygame.Surface((603, 603), flags=pygame.HWSURFACE)
    a.fill(color='#121010')
    b = pygame.Surface((585, 585), flags=pygame.HWSURFACE)
    b.fill(color="#DD954F")
    c = pygame.Surface((579, 579), flags=pygame.HWSURFACE)
    c.fill(color='#121010')
    d = pygame.Surface((576, 576), flags=pygame.HWSURFACE)
    d.fill(color="#DD954F")
    e = pygame.Surface((31, 31), flags=pygame.HWSURFACE)
    e.fill(color="#DD954F")
    screen.blit(a, (6.5, 6.5))
    screen.blit(b, (15, 15))
    screen.blit(c, (18, 18))
    for j in range(18):
        for i in range(18):
            screen.blit(e, (20 + 32 * i, 20 + 32 * j))
    alist = []
    for j in range(19):
        alistone = []
        for i in range(19):
            alistone.append(0)
        alist.append(alistone)
    pygame.draw.circle(screen, '#121010', [307.5, 307.5], 5)
    pygame.draw.circle(screen, '#121010', [115.5, 307.5], 5)
    pygame.draw.circle(screen, '#121010', [499.5, 307.5], 5)
    pygame.draw.circle(screen, '#121010', [115.5, 499.5], 5)
    pygame.draw.circle(screen, '#121010', [499.5, 499.5], 5)
    pygame.draw.circle(screen, '#121010', [115.5, 115.5], 5)
    pygame.draw.circle(screen, '#121010', [499.5, 115.5], 5)
    pygame.draw.circle(screen, '#121010', [307.5, 499.5], 5)
    pygame.draw.circle(screen, '#121010', [307.5, 115.5], 5)
    pygame.display.flip()
可以看到,我们先画了一个花哨的边框,然后画上其中的格子,顺便定义了一个被0填满的19*19的二维列表(在此处似乎很冗余,但到后面,你会发现它异常有用!)。最后,九个平平无奇的点被画上了棋盘。 至此,我们的五子棋初见雏形。但是,要使用它进行对弈,这还远远不够。
    wb = "black"
    font1 = pygame.font.SysFont('stxingkai', 70)
    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()
            if event.type == pygame.MOUSEBUTTONDOWN:
                x, y = pygame.mouse.get_pos()
                x = round((x - 19.5) / 32)
                y = round((y - 19.5) / 32)
                if x < 0:
                    x = 0
                if x > 18:
                    x = 18
                if y < 0:
                    y = 0
                if y > 18:
                    y = 18
                z = False
                if alist[x][y] == 0:
                    eval(wb + "({},{})".format(x, y))
                    if wb == "black":
                        alist[x][y] = 1
                        wb1 = "黑棋"
                        wb = "white"
                    elif wb == "white":
                        alist[x][y] = 2
                        wb1 = "白棋"
                        wb = "black"
这里,就是最核心的对弈程序。首先我们进入主循环,并获取事件。在这里,我们除了对按下关闭按钮进行了几乎每个pygame程序都会进行的处理外,还对按下鼠标事件进行了处理。首先,我们获取鼠标点击的坐标,通过计算来得到对应的格点(这里对不在格点上的点击进行四舍五入,对棋盘之外的点击自动匹配与其最近的格点)。然后,根据此时的先手方和计算得的格点运行black/white函数,绘制所需的棋子,同时在之前创建的二维列表的对应位置留下标记(白棋为2,黑棋为1,无棋为0)。
                    xx = x
                    yy = y
                    while True:
                        if xx == 0:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            xx += 1
                            break
                        else:
                            xx -= 1
                    num = 0
                    while True:
                        if xx == 18:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            break
                        else:
                            xx += 1
                            num += 1
                    if num >= 5:
                        pygame.font.init()
                        text = font1.render("{}赢了".format(wb1), True, (0, 0, 0))
                        textRect = text.get_rect()
                        textRect.center = (307.5, 307.5)
                        screen.blit(text, textRect)
                        pygame.display.flip()
                        while True:
                            for event in pygame.event.get():
                                if event.type == pygame.QUIT:
                                    pygame.quit()
                                    sys.exit()
                                if event.type == pygame.MOUSEBUTTONDOWN:
                                    do()
                    xx = x
                    yy = y
                    while True:
                        if yy == 0:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            yy += 1
                            break
                        else:
                            yy -= 1
                    num = 0
                    while True:
                        if yy == 18:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            break
                        else:
                            yy += 1
                            num += 1
                    if num >= 5:
                        pygame.font.init()
                        text = font1.render("{}赢了".format(wb1), True, (0, 0, 0))
                        textRect = text.get_rect()
                        textRect.center = (307.5, 307.5)
                        screen.blit(text, textRect)
                        pygame.display.flip()
                        while True:
                            for event in pygame.event.get():
                                if event.type == pygame.QUIT:
                                    pygame.quit()
                                    sys.exit()
                                if event.type == pygame.MOUSEBUTTONDOWN:
                                    do()
                    xx = x
                    yy = y
                    while True:
                        if xx == 0:
                            break
                        elif yy == 0:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            xx += 1
                            yy += 1
                            break
                        else:
                            xx -= 1
                            yy -= 1
                    num = 0
                    while True:
                        if xx == 18:
                            break
                        elif yy == 18:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            break
                        else:
                            xx += 1
                            yy += 1
                            num += 1
                    if num >= 5:
                        pygame.font.init()
                        text = font1.render("{}赢了".format(wb1), True, (0, 0, 0))
                        textRect = text.get_rect()
                        textRect.center = (307.5, 307.5)
                        screen.blit(text, textRect)
                        pygame.display.flip()
                        while True:
                            for event in pygame.event.get():
                                if event.type == pygame.QUIT:
                                    pygame.quit()
                                    sys.exit()
                                if event.type == pygame.MOUSEBUTTONDOWN:
                                    do()
                    xx = x
                    yy = y
                    while True:
                        if xx == 0:
                            break
                        elif yy == 18:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            xx += 1
                            yy -= 1
                            break
                        else:
                            xx -= 1
                            yy += 1
                    num = 0
                    while True:
                        if xx == 18:
                            break
                        elif yy == 0:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            break
                        else:
                            xx += 1
                            yy -= 1
                            num += 1
                    if num >= 5:
                        pygame.font.init()
                        text = font1.render("{}赢了".format(wb1), True, (0, 0, 0))
                        textRect = text.get_rect()
                        textRect.center = (307.5, 307.5)
                        screen.blit(text, textRect)
                        pygame.display.flip()
                        while True:
                            for event in pygame.event.get():
                                if event.type == pygame.QUIT:
                                    pygame.quit()
                                    sys.exit()
                                if event.type == pygame.MOUSEBUTTONDOWN:
                                    do()
这是冗长的胜负判断,具体内容我自己也难以解释(这个程序编了有一段时间了)。主要思路,是向各个方向寻找同色棋子的连接,并判断是否满五个棋(这里就要用到储存棋盘局面的二维列表了)。当然,不得不承认,这一段确实不太高明,似乎有别人发布过比我更好的方案,感兴趣的可以上网找找。
do()
这是程序的收尾,也就是对do()函数的运行。至此,整个程序完全结束。 完整代码:
#coding:utf-8
import sys
import pygame
import random
def do():
    def black(x, y):
        a = 20
        b = 20
        c = 20
        d = 0
        for i in range(50):
            pygame.draw.circle(screen, (a, b, c), [19.5 + 32 * x, 19.5 + 32 * y], (10/(d-5)+10)*1.6)
            a += 1
            b += 1
            c += 1
            d += 0.08
        pygame.display.update()

    def white(x, y):
        a = 170
        b = 170
        c = 170
        d = 0
        for i in range(50):
            pygame.draw.circle(screen, (a, b, c), [19.5 + 32 * x, 19.5 + 32 * y], (10/(d-5)+10)*1.6)
            a += 1
            b += 1
            c += 1
            d += 0.08
        pygame.display.update()
    pygame.init()
    screen = pygame.display.set_mode((615, 615))
    pygame.display.set_caption('五子棋')
    screen.fill("#DD954F")
    a = pygame.Surface((603, 603), flags=pygame.HWSURFACE)
    a.fill(color='#121010')
    b = pygame.Surface((585, 585), flags=pygame.HWSURFACE)
    b.fill(color="#DD954F")
    c = pygame.Surface((579, 579), flags=pygame.HWSURFACE)
    c.fill(color='#121010')
    d = pygame.Surface((576, 576), flags=pygame.HWSURFACE)
    d.fill(color="#DD954F")
    e = pygame.Surface((31, 31), flags=pygame.HWSURFACE)
    e.fill(color="#DD954F")
    screen.blit(a, (6.5, 6.5))
    screen.blit(b, (15, 15))
    screen.blit(c, (18, 18))
    for j in range(18):
        for i in range(18):
            screen.blit(e, (20 + 32 * i, 20 + 32 * j))
    alist = []
    for j in range(19):
        alistone = []
        for i in range(19):
            alistone.append(0)
        alist.append(alistone)
    pygame.draw.circle(screen, '#121010', [307.5, 307.5], 5)
    pygame.draw.circle(screen, '#121010', [115.5, 307.5], 5)
    pygame.draw.circle(screen, '#121010', [499.5, 307.5], 5)
    pygame.draw.circle(screen, '#121010', [115.5, 499.5], 5)
    pygame.draw.circle(screen, '#121010', [499.5, 499.5], 5)
    pygame.draw.circle(screen, '#121010', [115.5, 115.5], 5)
    pygame.draw.circle(screen, '#121010', [499.5, 115.5], 5)
    pygame.draw.circle(screen, '#121010', [307.5, 499.5], 5)
    pygame.draw.circle(screen, '#121010', [307.5, 115.5], 5)
    pygame.display.flip()
    wb = "black"
    font1 = pygame.font.SysFont('stxingkai', 70)
    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()
            if event.type == pygame.MOUSEBUTTONDOWN:
                x, y = pygame.mouse.get_pos()
                x = round((x - 19.5) / 32)
                y = round((y - 19.5) / 32)
                if x < 0:
                    x = 0
                if x > 18:
                    x = 18
                if y < 0:
                    y = 0
                if y > 18:
                    y = 18
                z = False
                if alist[x][y] == 0:
                    eval(wb + "({},{})".format(x, y))
                    if wb == "black":
                        alist[x][y] = 1
                        wb1 = "黑棋"
                        wb = "white"
                    elif wb == "white":
                        alist[x][y] = 2
                        wb1 = "白棋"
                        wb = "black"
                    xx = x
                    yy = y
                    while True:
                        if xx == 0:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            xx += 1
                            break
                        else:
                            xx -= 1
                    num = 0
                    while True:
                        if xx == 18:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            break
                        else:
                            xx += 1
                            num += 1
                    if num >= 5:
                        pygame.font.init()
                        text = font1.render("{}赢了".format(wb1), True, (0, 0, 0))
                        textRect = text.get_rect()
                        textRect.center = (307.5, 307.5)
                        screen.blit(text, textRect)
                        pygame.display.flip()
                        while True:
                            for event in pygame.event.get():
                                if event.type == pygame.QUIT:
                                    pygame.quit()
                                    sys.exit()
                                if event.type == pygame.MOUSEBUTTONDOWN:
                                    do()
                    xx = x
                    yy = y
                    while True:
                        if yy == 0:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            yy += 1
                            break
                        else:
                            yy -= 1
                    num = 0
                    while True:
                        if yy == 18:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            break
                        else:
                            yy += 1
                            num += 1
                    if num >= 5:
                        pygame.font.init()
                        text = font1.render("{}赢了".format(wb1), True, (0, 0, 0))
                        textRect = text.get_rect()
                        textRect.center = (307.5, 307.5)
                        screen.blit(text, textRect)
                        pygame.display.flip()
                        while True:
                            for event in pygame.event.get():
                                if event.type == pygame.QUIT:
                                    pygame.quit()
                                    sys.exit()
                                if event.type == pygame.MOUSEBUTTONDOWN:
                                    do()
                    xx = x
                    yy = y
                    while True:
                        if xx == 0:
                            break
                        elif yy == 0:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            xx += 1
                            yy += 1
                            break
                        else:
                            xx -= 1
                            yy -= 1
                    num = 0
                    while True:
                        if xx == 18:
                            break
                        elif yy == 18:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            break
                        else:
                            xx += 1
                            yy += 1
                            num += 1
                    if num >= 5:
                        pygame.font.init()
                        text = font1.render("{}赢了".format(wb1), True, (0, 0, 0))
                        textRect = text.get_rect()
                        textRect.center = (307.5, 307.5)
                        screen.blit(text, textRect)
                        pygame.display.flip()
                        while True:
                            for event in pygame.event.get():
                                if event.type == pygame.QUIT:
                                    pygame.quit()
                                    sys.exit()
                                if event.type == pygame.MOUSEBUTTONDOWN:
                                    do()
                    xx = x
                    yy = y
                    while True:
                        if xx == 0:
                            break
                        elif yy == 18:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            xx += 1
                            yy -= 1
                            break
                        else:
                            xx -= 1
                            yy += 1
                    num = 0
                    while True:
                        if xx == 18:
                            break
                        elif yy == 0:
                            break
                        elif alist[xx][yy] != alist[x][y]:
                            break
                        else:
                            xx += 1
                            yy -= 1
                            num += 1
                    if num >= 5:
                        pygame.font.init()
                        text = font1.render("{}赢了".format(wb1), True, (0, 0, 0))
                        textRect = text.get_rect()
                        textRect.center = (307.5, 307.5)
                        screen.blit(text, textRect)
                        pygame.display.flip()
                        while True:
                            for event in pygame.event.get():
                                if event.type == pygame.QUIT:
                                    pygame.quit()
                                    sys.exit()
                                if event.type == pygame.MOUSEBUTTONDOWN:
                                    do()
do()

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Python双人五子棋 - Python技术站

(0)
上一篇 2023年4月2日 下午5:28
下一篇 2023年4月2日 下午5:28

相关文章

  • Python迷宫生成器

    作为一项古老的智力游戏,千百年来迷宫都散发着迷人的魅力。但是,手工设计迷宫费时又耗(脑)力,于是,我们有必要制作一个程序:迷宫生成器…… 好吧,我编不下去了。但是,从上面的文字中,我们可以看出,我们此次的主题是:用Python实现一个迷宫生成器。 首先展示一下效果图: 我们先分析一下所需的库: 既然是生成器,每次生成的迷宫一模一样显然是说不过去的。因此,我们…

    2023年4月2日
    00
  • python实现一个加密的文字处理器

    这是一个类似于记事本的文字处理器。与正常的记事本不同的是,它会将文本文档进行加密,确保无法被常规的程序打开。 由于本人是一位业余编程爱好者,对于“python之禅”之类的规则比较不以为然,因此本程序代码也许有些许凌乱(当然不利于后期修改)。 这篇文章我早已发布过,但当时只给出了代码,并加了一些注释。现在,我希望在这里详细解释这个程序。 首先,对于一个适合我们…

    Python开发 2023年4月2日
    00
  • Python之枚举法解数学题

    作为初二的学生,数学题总是令我苦恼的问题。尤其是我们这里的预备班考试(即我们这里最好的两所高中提前一年招生,选拔尖子生的考试)将近,我所面对的数学题越发令人头疼。 这不,麻烦来了: 如图,在正方形ABCD中,E在射线BC上,连接AE、CE,则DE/AE的最小值为________. 拿到这题,信心满满的我从容淡定地设AB:CE为1:x,即AB=k,CE=xk,…

    2023年4月2日
    00
  • 趣味问题《寻人启事》的Python程序解决

    偷懒了很久,今天我终于又来更新博客了~ 最近,我看到了一个趣味问题,或者说是数学游戏:《寻人启事》。 在表述这个问题前,我们需要了解一下“冰雹猜想”: 对于任意一个正整数x,重复作如下变换: 如果x是偶数,则变为x/2; 如果x是奇数,则变为3x+1; 在若干次变换后,x一定会陷入4-2-1这样的循环。 对于冰雹猜想的证明,在此不多加阐述。 而《寻人启事》这…

    Python开发 2023年4月2日
    00
  • Python:一个闹钟

    随着一个《霍格沃茨:一段校史》风格的大字(呃,这字好像并不大……)标题的出现,无聊的我没事干,又开始整活了~ 之前我做的程序,一个使用了Tkinter库,一个则是Pygame,总之都是带有图形化的界面的。但作为一个懒汉,我自然能懒必懒(这点我非常有自知之明),这次,我就来一个简单朴素的没有图形界面的程序。 这是一个闹钟,一个可以设定时间的闹钟(虽然操作的界面…

    Python开发 2023年4月2日
    00
合作推广
合作推广
分享本页
返回顶部