0

我是一个相对较新的程序员,我正在制作游戏。我正在使用我以前的项目中运行良好的一些代码。但是现在当我尝试调用某个我认为不需要任何参数的函数时,它会返回一些奇怪的错误。

我有从我以前的项目中复制的这个类:

import pyglet as p


class Button(object):
    def __init__(self, image, x, y, text, on_clicked):
        self._width = image.width
        self._height = image.height
        self._sprite = p.sprite.Sprite(image, x, y)
        self._label = p.text.Label(text,
                                  font_name='Times New Roman',
                                  font_size=20,
                                  x=x + 20, y=y + 15,
                                  anchor_x='center',
                                  anchor_y='center')
        self._on_clicked = on_clicked  # action executed when button is clicked

    def contains(self, x, y):
        return (x >= self._sprite.x - self._width // 2
            and x < self._sprite.x + self._width // 2
            and y >= self._sprite.y - self._height // 2
            and y < self._sprite.y + self._height // 2)

    def clicked(self, x, y):
        if self.contains(x, y):
            self._on_clicked(self)

    def draw(self):
        self._sprite.draw()
        self._label.draw()

我有调用函数的窗口事件(w 是窗口):

@w.event
def on_mouse_press(x, y, button, modifiers):
    for button in tiles:
        button.clicked(x, y)

以及它调用的函数的三种变体,每个变体都有不同的“错误”:

def phfunc(a):
    print(a)

返回这个东西:<Button.Button object at 0x0707C350>

def phfunc(a):
    print('a')

返回:a 它实际上应该

def phfunc():
    print('a')

返回一长串回调,结果如下:

  File "C:\Google Drive\game programmeren\main.py", line 15, in on_mouse_press
    button.clicked(x, y)
  File "C:\Google Drive\game programmeren\Button.py", line 25, in clicked
    self._on_clicked(self)
TypeError: phfunc() takes no arguments (1 given)

我最好的猜测是它的参数是 Button 类中的 self 。这是正确的,我应该担心这个吗?

4

1 回答 1

1

self._on_clicked您将存储在with中的函数引用self作为参数调用。self是你的Button类的实例:

self._on_clicked(self)

Button您的自定义类的默认表示是<Button.Button object at 0x0707C350>.

既然你明确地这样做了,那就不用担心了。

于 2013-03-23T15:55:08.680 回答