冬季连衣裙搭配 Python 大作业——五子棋游戏
姓名:吴欣 学号:
姓名:张雨清 学号:
一 游戏介绍:
我们设计的是五子棋游戏,支持两人一个鼠标对下,黑方用左键单击,白方用右键单击,谁先下均可,落子无悔,下过的棋子对方点击后不会变色,程序可自行判断输赢并在五子连珠时弹出结果对话框,游戏双方需遵守不在空地点击和一次下一子的规则。
二 游戏代码设计:
代码均为原创,没有借鉴和抄袭,首先是用户GUI界面设计,点击start进入游戏界面,点击quit则退出程序,为了方便判断和记录,我们按从左到右,从上到下的顺序给15x15=225颗棋子编号225,左键绑定函数callback1,点击后可算出它位于哪颗棋子上再画出来黑子,并把对应编号计入record这个列表,之后进入判断函数。右键绑定函数 callback2,点击后画出白
子,对应编号计入recor这个列表,之后进入判断函数,其中总列表rec的作用是使棋子不被下第二遍。
三 作业感想
这个游戏虽然很小但是可以供室友们晚上娱乐之用,我们倾注了很多心血,之前采用模块化编程失败了很多次,有事件响应问题,参数传递问题,到第七个程序才成功,感谢张同珍老师指点了很多,我们学会了使用类,受益匪浅,对Python产生了浓厚的兴趣.
四 过程截图
五、实验代码
from Tkinter import *
from tkMessageBox import *
class Game:
def __init__(lf):
lf.A=[]
大四下学期还能考六级吗 lf。B=[]
lf.record=t()
lf.recor=t()
吉林省四六级报名 lf。rec=lf。record|lf.recor
lf。root=Tk()
weather怎么读
lf。ry(”180x250")
lf。root。title(”Wu Zi Qi Game")
lf.r=,width=180,height=210,bg="purple”)
pic=PhotoImage(file="beijing。gif”)
ate_image(90,100,image=pic)
lf。r。place(x=0,y=15)
Label(lf。root,text=”***Wu Zi Qi Game***",fg="red")。place(x=20,y=0)
,text=”start”,command=lf。start)。place(x=30,y=230)
Button(lf。root,text=”quit ”,destroy)。place(x=100,y=230)
lf。r。mainloop()
def start(lf):
lf。root.destroy()
mary says lf.top=Tk()
lf.top。title(”Game Start”)
lf。c=Canvas(lf.top,width=480,height=480,bg="white")
lf.c。pack()
lf.c。create_rectangle(25,25,455,455,fill=”gray”)
沈阳外语 for i in range(30,451,30):
for j in range(30,451,30):
lf.c。create_oval(i-2,j—2,i+2,j+2,fill="blue")
for i in range(1,16):
currencycode
lf。c.create_line(30,30*i,450,30*i)
毕业论文答辩技巧
race lf.c。create_line(30*i,30,30*i,450)
lf。c。create_oval(234,234,246,246,fill=”black")
lf。c.create_oval(115,115,125,125,fill=”black”)
lf.c。create_oval(355,115,365,125,fill=”black”)
lf。c。create_oval(115,355,125,365,fill=”black”)
lf.c。create_oval(355,355,365,365,fill=”black")
lf.c.bind("〈Button-1>”,lf.callback1)
lf。c。bind("〈Button—3>”,lf.callback2)
袍子的拼音
lf。c。mainloop()
def callback1(lf,event):
u,v=event.x,event。y
s=u/15
if s%2==1:
lf。x=(s+1)/2
el:
lf。x=s/2
l=v/15
if l%2==1:
lf.y=(l+1)/2
el:
lf.y=l/2
g=(lf.y—1)*15+lf.x
while g not in lf。rec:
lf.c。create_oval(lf。x*30—12,lf.y*30—12,lf。x*30+12,lf.y*30+12,fill="black”)
lf。A。append(g)
lf。record=t(lf.A)
lf。rec=lf。record|lf。recor
judge=panduan(g,lf。record)
if judge==1:
answer=showinfo(”Game over”,"Black wins!")
lf。top.destroy()
def callback2(lf,event):
u,v=event.x,event.y
s=u/15
if s%2==1:
lf。m=(s+1)/2
el:
lf.m=s/2
l=v/15
if l%2==1:
lf.n=(l+1)/2
el:
lf。n=l/2
k=(lf.n-1)*15+lf。m
while k not in lf。rec:
ate_oval(lf.m*30—12,lf.n*30-12,lf.m*30+12,lf.n*30+12,fill=”white”)
lf。B。append(k)
lf.recor=t(lf。B)
lf.d|lf。recor
judge=panduan(k,lf。recor)
if judge==1:
answer=showinfo("Game over”,"White wins!")
lf。top.destroy()
def panduan(g,record):
#判断横排是否出现赢的情况
if {g—4,g—3,g-2,g-1}〈=record:
return 1
elif {g—3,g—2,g—1,g+1}〈=record:
return 1
elif {g-2,g—1,g+1,g+2}<=record:
return 1
elif {g-1,g+1,g+2,g+3}〈=record:
return 1
elif {g+1,g+2,g+3,g+4}<=record:
return 1
#判断竖列是否出现赢的情况
elif {g-60,g-45,g—30,g-15}<=record:
return 1
elif {g-45,g-30,g—15,g+15}<=record:
return 1
elif {g-30,g-15,g+15,g+30}〈=record:
return 1