我是一个相对较新的程序员,我正在制作游戏。我正在使用我之前项目中的一些代码运行正常。但是现在当我尝试调用某个函数时,我认为它不需要任何参数,它会返回一些奇怪的错误。
我有这个课程,我从之前的项目中复制过:
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。这是对的,我应该担心吗?
答案 0 :(得分:1)
您使用self._on_clicked
作为参数调用self
中存储的函数引用。 self
是Button
类的实例:
self._on_clicked(self)
自定义Button
课程的默认表示形式为<Button.Button object at 0x0707C350>
。
既然你明确这样做了,那就不用担心了。