【发布时间】:2018-11-01 13:09:39
【问题描述】:
我正在尝试打乒乓球,我希望我的球拍跟随鼠标的 x 位置。我只是将鼠标的 x 位置分配给一个变量,每次我移动鼠标然后离开屏幕时它都会添加到自身。我现在对其进行了一些更改,但我无法让它工作
错误:
Traceback (most recent call last):
File "Tkinter.py", line 1536, in __call__
return self.func(*args)
File "animationTest.py", line 51, in motion
self.diff = self.x - canvas.coords(self.paddle)
TypeError: unsupported operand type(s) for -: 'int' and 'list'
代码:
from Tkinter import *
import time
HEIGHT = 500
WIDTH = 800
COLOR = 'blue'
SIZE = 50
root = Tk()
canvas = Canvas(root, width=WIDTH, height=HEIGHT, bg=COLOR)
canvas.pack()
class Ball:
def __init__(self, canvas):
self.ball = canvas.create_oval(0, 0, SIZE, SIZE, fill='black')
self.speedx = 6
self.speedy = 6
self.active = True
self.move_active()
def ball_update(self):
canvas.move(self.ball, self.speedx, self.speedy)
pos = canvas.coords(self.ball)
if pos[2] >= WIDTH or pos[0] <= 0:
self.speedx *= -1
if pos[3] >= HEIGHT or pos[1] <= 0:
self.speedy *= -1
def move_active(self):
if self.active:
self.ball_update()
root.after(1, self.move_active)
class Paddle:
def __init__(self, canvas):
self.paddle = canvas.create_rectangle(0,0,100,10, fill='red')
canvas.bind('<Motion>', self.motion)
self.active = True
self.move_active
def motion(self, event):
self.x = event.x
self.diff = self.x - canvas.coords(self.paddle)
print('the diff is:' ,self.diff)
print('the click is at: {}'.format(self.x))
def move_active(self):
if self.active:
self.motion()
root.after(1, self.move_active)
run = Ball(canvas)
run2 = Paddle(canvas)
root.mainloop()
【问题讨论】:
-
canvas.coords(self.paddle)返回一个包含左上角 X 位置和 Y 位置以及右下角 X 位置和 Y 位置的列表。您需要先从列表中提取您想要的位置,然后才能在减法中使用它。 -
@Novel 我将一个变量设置为
canvas.coords(self.paddle),但我如何才能获得 X1? -
就像任何列表一样使用方括号对其进行索引:
x1 = canvas.coords(self.paddle)[0]。
标签: python tkinter python-2.x