2017-03-01 87 views
0

我目前正在学习如何在python中使用kivy。我下面这个教程创建一个简单的乒乓球比赛在Kivy运行简单的pong教程时出现Typer错误

https://kivy.org/docs/tutorials/pong.html

的当我到达那里我试图动画球的一部分。我完全按照教程编写了代码。我用F5运行从IDLE程序,我得到的交互shell一个

return game() 
Type Error: 'PongGame' object is not callable 

消息和游戏本身冻结的窗口。有关如何解决这个问题的任何想法?在此先感谢

这里是我写的代码(完全按照教程): -

为main.py

代码
from kivy.app import App 
from kivy.uix.widget import Widget 
from kivy.properties import NumericProperty, ReferenceListProperty,\ 
ObjectProperty 
from kivy.vector import Vector 
from kivy.clock import Clock 
from random import randint 


class PongBall(Widget): 
    velocity_x = NumericProperty(0) 
    velocity_y = NumericProperty(0) 
    velocity = ReferenceListProperty(velocity_x, velocity_y) 

    def move(self): 
     self.pos = Vector(*self.velocity) + self.pos 


class PongGame(Widget): 
    ball = ObjectProperty(None) 

    def serve_ball(self): 
     self.ball.center = self.center 
     self.ball.velocity = Vector(4, 0).rotate(randint(0, 360)) 

    def update(self, dt): 
     self.ball.move() 

     # bounce off top and bottom 
     if (self.ball.y < 0) or (self.ball.top > self.height): 
      self.ball.velocity_y *= -1 

     # bounce off left and right 
     if (self.ball.x < 0) or (self.ball.right > self.width): 
      self.ball.velocity_x *= -1 


class PongApp(App): 
    def build(self): 
     game = PongGame() 
     game.serve_ball() 
     Clock.schedule_interval(game.update, 1.0/60.0) 
     return game 


if __name__ == '__main__': 
    PongApp().run() 

代码pong.kv

#:kivy 1.0.9 

<PongBall>: 
    size: 50, 50 
canvas: 
    Ellipse: 
     pos: self.pos 
     size: self.size   

<PongGame>: 
    ball: pong_ball 

    canvas: 
     Rectangle: 
      pos: self.center_x-5, 0 
      size: 10, self.height 

    Label: 
     font_size: 70 
     center_x: root.width/4 
     top: root.top - 50 
     text: "0" 

    Label: 
     font_size: 70 
     center_x: root.width * 3/4 
     top: root.top - 50 
     text: "0" 

    PongBall: 
     id: pong_ball 
     center: self.parent.center 
+0

很奇怪。在错误信息中返回游戏(),但是在你的代码中,“返回游戏”(后者是正确的,第一个尝试调用该对象!) –

回答