Kivy Widget不接受属性和命令

时间:2015-05-04 16:49:52

标签: python widget kivy

我想制作我的第一个Kivy游戏,敌人在屏幕上运行,玩家应该通过点击它们来杀死敌人。 我创建了一个Enemy类,它是一个级别类的一部分,都是类Widget的子类。我创建了一个函数,它自动将类Enemy的实例添加到类级别。我在Enemy类中创建了一个if循环,它应该检查敌人是否到达了屏幕的末尾。 然后它应该从变量zicie中删除一个数字,然后它应该移除敌人,但两件事都不起作用。

错误消息是:

   File "bbgsa1.py", line 47, in Update
     self.parent.remove_widget(self)
 AttributeError: 'NoneType' object has no attribute 'remove_widget'

   File "bbgsa1.py", line 45, in Update
     self.parent.zicie = self.parent.zicie - 1
 AttributeError: 'NoneType' object has no attribute 'zicie'

以下是包含错误的代码部分:

class level(Widget):
    zicie = NumericProperty(10)# the variable containg the life of the player
    zloto = NumericProperty(0)
    e_killed = NumericProperty(0)
    intv1 = NumericProperty(2/1.)
    def __init__(self, **kwargs):
        super(level, self).__init__(**kwargs)
        Clock.schedule_interval(self.Update, self.intv1)
    def Update(self, *args):# this funktion generates enemys
        obj = ROOT.ids.place.ids.level
        obj.add_widget(Enemy(pos=(800,100))) # the widget enemy is added here

class Enemy(Widget):
    imgp = StringProperty('enemy.png')
    velocity = NumericProperty(1)
    intv = NumericProperty(0/60.)
    def __init__(self, **kwargs):
        super(Enemy, self).__init__(**kwargs)
        Clock.schedule_interval(self.Update, self.intv)

    def Update(self, *args):# the funktion that lets the enemy move
        self.x -= self.velocity
        if self.x < 1:# checks if the enemy widget reached the end
            self.velocity = 0#m akes the enemy stop moving
            self.parent.zicie = self.parent.zicie - 1# the variable zicie that is not found
            self.parent.remove_widget(self) # this command is also not working

    def on_touch_down(self, touch):# the funktion, that lets the enemy die
        if self.collide_point(*touch.pos):
            self.velocity = 0
            self.imgp = 'enemyd.png'
            self.parent.e_killed += 1
            self.parent.zloto += 10
            self.parent.remove_widget(self)

1 个答案:

答案 0 :(得分:1)

这些错误是因为self.parent在行运行时为None。我没有详细检查,但可能出现的一种方法是,即使在从其父级移除Enemy后,也会调用Clock预定的self.Update函数。

在从屏幕上删除Enemy之后你应该小心取消预定功能(以避免建立的预定功能的数量),但是也可以通过检查self.parent是否为None来直接解决问题。根据其价值做事。