本文实例为大家分享了python实现五子棋游戏的具体代码,供大家参考,具体内容如下
# -*- coding:utf-8 -*- # @Time: 2017/8/29 0029 10:14 # @Author: assasin # @Email: assasin0308@sina.com from tkinter import * import math class chessBoard(): def __init__(self): # 创建一个tk对象,窗口 self.window = Tk() # 窗口名称 self.window.title('五子棋游戏') # 窗口大小 self.window.geometry('660x470') # 设置窗口不可缩放 self.window.resizable(0,0) # 定义窗口的画布 self.canvas = Canvas(self.window, bg="#EEE8AC", width=470, height=470) # 画出画布内容 self.paint_board() # 定义画布所在的网格 self.canvas.grid(row=0, column=0) def paint_board(self): # 画横线 for row in range(0, 15): if row == 0 or row == 14: self.canvas.create_line(25, 25 + row * 30, 25 + 14 * 30, 25 + row * 30, width=2) else: self.canvas.create_line(25, 25 + row * 30, 25 + 14 * 30, 25 + row * 30, width=1) # 画竖线 for column in range(0, 15): if column == 0 or column == 14: self.canvas.create_line(25 + column * 30, 25, 25 + column * 30, 25 + 14 * 30, width=2) else: self.canvas.create_line(25 + column * 30, 25, 25 + column * 30, 25 + 14 * 30, width=1) # 画圆 self.canvas.create_oval(112, 112, 118, 118, fill="black") self.canvas.create_oval(352, 112, 358, 118, fill="black") self.canvas.create_oval(112, 352, 118, 358, fill="black") self.canvas.create_oval(232, 232, 238, 238, fill="black") self.canvas.create_oval(352, 352, 358, 358, fill="black") #定义五子棋游戏类 #0为黑子 , 1为白子 , 2为空位 class Gobang() : #初始化 def __init__(self) : self.board = chessBoard() self.game_print = StringVar() self.game_print.set("") # 16*16的二维列表,保证不会out of index self.db = [([2] * 16) for i in range(16)] # 悔棋用的顺序列表 self.order = [] # 棋子颜色 self.color_count = 0 self.color = 'black' # 清空与赢的初始化,已赢为1,已清空为1 self.flag_win = 1 self.flag_empty = 1 self.options() # 黑白互换 def change_color(self): self.color_count = (self.color_count + 1) % 2 if self.color_count == 0: self.color = "black" elif self.color_count == 1: self.color = "white" # 落子 def chess_moving(self,event): # 不点击“开始”与“清空”无法再次开始落子 if self.flag_win == 1 or self.flag_empty == 0: return # 坐标转化为下标 x, y = event.x - 25, event.y - 25 x = round(x / 30) y = round(y / 30) # 点击位置没用落子,且没有在棋盘线外,可以落子 while self.db[y][x] == 2 and self.limit_boarder(y, x): self.db[y][x] = self.color_count self.order.append(x + 15 * y) self.board.canvas.create_oval(25 + 30 * x - 12, 25 + 30 * y - 12, 25 + 30 * x + 12, 25 + 30 * y + 12,fill=self.color, tags="chessman") if self.game_win(y, x, self.color_count): print(self.color, "获胜") self.game_print.set(self.color + "获胜") else: self.change_color() self.game_print.set("请" + self.color + "落子") # 保证棋子落在棋盘上 def limit_boarder(self, y, x): if x < 0 or x > 14 or y < 0 or y > 14: return False else: return True # 计算连子的数目,并返回最大连子数目 def chessman_count(self, y, x, color_count): count1, count2, count3, count4 = 1, 1, 1, 1 # 横计算 for i in range(-1, -5, -1): if self.db[y][x + i] == color_count: count1 += 1 else: break for i in range(1, 5, 1): if self.db[y][x + i] == color_count: count1 += 1 else: break # 竖计算 for i in range(-1, -5, -1): if self.db[y + i][x] == color_count: count2 += 1 else: break for i in range(1, 5, 1): if self.db[y + i][x] == color_count: count2 += 1 else: break # /计算 for i in range(-1, -5, -1): if self.db[y + i][x + i] == color_count: count3 += 1 else: break for i in range(1, 5, 1): if self.db[y + i][x + i] == color_count: count3 += 1 else: break # \计算 for i in range(-1, -5, -1): if self.db[y + i][x - i] == color_count: count4 += 1 else: break for i in range(1, 5, 1): if self.db[y + i][x - i] == color_count: count4 += 1 else: break return max(count1, count2, count3, count4) # 判断输赢 def game_win(self , y , x , color_count ): if self.chessman_count(y, x, color_count) >= 5: self.flag_win = 1 self.flag_empty = 0 return True else: return False #悔棋,清空棋盘,再画剩下的n-1个棋子 def withdraw(self): if len(self.order) == 0 or self.flag_win == 1: return self.board.canvas.delete("chessman") z = self.order.pop() x = z % 15 y = z // 15 self.db[y][x] = 2 self.color_count = 1 for i in self.order: ix = i % 15 iy = i // 15 self.change_color() self.board.canvas.create_oval(25 + 30 * ix - 12, 25 + 30 * iy - 12, 25 + 30 * ix + 12, 25 + 30 * iy + 12, fill=self.color, tags="chessman") self.change_color() self.game_print.set("请" + self.color + "落子") # 清空 def empty_all(self) : self.board.canvas.delete("chessman") # 还原初始化 self.db = [([2] * 16) for i in range(16)] self.order = [] self.color_count = 0 self.color = 'black' self.flag_win = 1 self.flag_empty = 1 self.game_print.set("") #将self.flag_win置0才能在棋盘上落子 def game_start(self): # 没有清空棋子不能置0开始 if self.flag_empty == 0: return self.flag_win = 0 self.game_print.set("请" + self.color + "落子") def options(self): self.board.canvas.bind("<Button-1>", self.chess_moving) Label(self.board.window, textvariable=self.game_print, font=("Arial", 20)).place(relx=0, rely=0, x=495, y=200) Button(self.board.window, text="开始游戏", command=self.game_start, width=13, font=("Verdana", 12)).place(relx=0,rely=0,x=495,y=15) Button(self.board.window, text="我要悔棋", command=self.withdraw, width=13, font=("Verdana", 12)).place(relx=0,rely=0,x=495, y=60) Button(self.board.window, text="清空棋局", command=self.empty_all, width=13, font=("Verdana", 12)).place(relx=0,rely=0,x=495,y=105) Button(self.board.window, text="结束游戏", command=self.board.window.destroy, width=13, font=("Verdana", 12)).place(relx=0, rely=0, x=495, y=420) self.board.window.mainloop() if __name__ == '__main__': chess_game = Gobang()
更多有趣的经典小游戏实现专题,分享给大家:
C++经典小游戏汇总
python经典小游戏汇总
python俄罗斯方块游戏集合
JavaScript经典游戏 玩不停
javascript经典小游戏汇总
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
2024年11月17日
2024年11月17日
- 中国武警男声合唱团《辉煌之声1天路》[DTS-WAV分轨]
- 紫薇《旧曲新韵》[320K/MP3][175.29MB]
- 紫薇《旧曲新韵》[FLAC/分轨][550.18MB]
- 周深《反深代词》[先听版][320K/MP3][72.71MB]
- 李佳薇.2024-会发光的【黑籁音乐】【FLAC分轨】
- 后弦.2012-很有爱【天浩盛世】【WAV+CUE】
- 林俊吉.2012-将你惜命命【美华】【WAV+CUE】
- 晓雅《分享》DTS-WAV
- 黑鸭子2008-飞歌[首版][WAV+CUE]
- 黄乙玲1989-水泼落地难收回[日本天龙版][WAV+CUE]
- 周深《反深代词》[先听版][FLAC/分轨][310.97MB]
- 姜育恒1984《什么时候·串起又散落》台湾复刻版[WAV+CUE][1G]
- 那英《如今》引进版[WAV+CUE][1G]
- 蔡幸娟.1991-真的让我爱你吗【飞碟】【WAV+CUE】
- 群星.2024-好团圆电视剧原声带【TME】【FLAC分轨】