使用Tkinter (Python)构建奥赛罗游戏



如何在python中使用tkinter构建奥赛罗GUI ?具体地说,我该如何让最初的四个片段出现呢?当我选择一个正方形时,我如何让我的板打印出一块的位置?到目前为止,当点击一张图片时,它会打印出"[189.0,126.0,252.0,189.0]"。我真的只是在寻找指导,任何帮助是非常感激的!以下是我目前编写的代码。

import tkinter
class RA:
    def __init__(self):
        self._columns = 8
        self._rows = 8
        self._root = tkinter.Tk()
        self._canvas = tkinter.Canvas(master = self._root,
                                      height = 500, width = 500,
                                      background = 'green')
        self._canvas.pack(fill = tkinter.BOTH, expand = True)
        self._canvas.bind('<Configure>',self.draw_handler)

    def run(self):
        self._root.mainloop()
    def draw(self):
        for c in range(self._columns):
            for r in range(self._rows):
                x1 = c * (column_width)
                y1 = r * (row_height)
                x2 = x1 + (column_width)
                y2 = y1 + (row_height)
    def clicked(self,event: tkinter.Event):
        x = event.x
        y = event.y
        coordinates = self._canvas.coords("current")
        print(coordinates)
    def draw(self):
        self._canvas.delete(tkinter.ALL)
        column_width = self._canvas.winfo_width()/self._columns
        row_height = self._canvas.winfo_height()/self._rows
        for  x in range(self._columns):
            for y in range(self._rows):
                x1 = x * column_width
                y1 = y * row_height
                x2 = x1 + column_width
                y2 = y1 + row_height
                r = self._canvas.create_rectangle(x1,y1,x2,y2,fill = 'blue')
                self._canvas.tag_bind(r,'<ButtonPress-1>',self.clicked)
                self._canvas.create_rectangle(x1,y1,x2,y2)
        self._canvas.bind('<Configure>',self.draw_handler)

    def draw_handler(self,event):
        self.draw()

r = RA()
r.run()

使用canvas.create_oval(bbox, **options)绘制光盘

使用标签来区分画布项目:

标签是附加在项上的符号名称。标签是普通的字符串,它们可以包含除空格以外的任何内容。

我建议您标记每个单元格的每个元素(矩形和椭圆形),并使用一个可以让您识别它的标记。

item = canvas.create_oval(x1, x2, y1, y2, tags=("x=1","y=3"))

当一个项目被点击时,你可以用

获得它的所有标签
canvas.gettags(item)

然后迭代它的所有标签:如果标签以"x=""y="开头,那么它包含行/列信息,您可以使用int(tagname[2:])

提取这些信息。

相关内容

  • 没有找到相关文章

最新更新