1

我有一个球生成器,它“生成”并将球(圆圈)添加到模拟中。

当球击中 list 中的静态 poly 时,球将被移除s_boxes
这是由碰撞处理程序完成的ball_wall_collision

错误:
以下弹出窗口按其名称显示,它弹出
**弹出窗口**

我的代码:
球发生器

class BallGenerator:
    def __init__(self, min_y, max_y, x):
        self.min = min_y
        self.max = max_y
        self.x = x

        self.counter = 0

    def bowl(self, balls):
        global ball_bowled
        y = random.randint(self.min, self.max)
        pos = to_pymunk((self.x,y))
        r = 10
        m = 15
        i = pm.moment_for_circle(m, 0, r)
        b = pm.Body(m,i)
        b.position = pos
        f_x = random.randint(-600000,-400000)
        b.apply_force( (f_x,0.0),(0,0) )

        ball = pm.Circle(b, r)
        ball.elasticity = 0.75
        ball.friction = 0.95
        balls.append(ball)
        space.add(ball,b)
        print 'bowled'

        ball_bowled += 1

    def handle(self, balls):
        if self.counter == FPS:
            self.bowl(balls)
            self.counter = 0
        self.counter += 1

碰撞处理程序

def ball_wall_collision(space, arb, balls, s_boxes):
    shapes = arb.shapes
    boxes = [box[0] for box in s_boxes] # Get walls
    ball = None
    wall = None
    for ba in balls:
        if ba in shapes:
            ball = ba
            break
    for box in boxes:
        if box in shapes:
            wall = box
            break
    if wall and ball:
        print 'removing'
        space.remove(ball, ball.body) # Where the runtime problem happens
        balls.remove(ball)
        print 'removed'

        return False
    else:
        return True
space.add_collision_handler(0,0,begin=ball_wall_collision,
                            balls=balls,s_boxes=s_boxes) # Other args to function

我在碰撞处理中做错了什么?

  • 我在通话中遗漏了什么space.remove吗?
  • 该功能没有按我的意愿工作吗?或者是其他地方的错误(我认为不是)......
4

1 回答 1

2

看起来问题是您在模拟步骤期间尝试从碰撞处理程序中的空间中删除对象。

相反,您可以尝试手动将所有球收集到一个列表中,然后在步骤之后调用 remove,或者使用 post step 回调将删除排队,如下所示:

space.add_post_step_callback(space.remove, ball)
space.add_post_step_callback(space.remove, ball.body)

(未经测试的代码)

我可能应该尝试在 API 文档中使这一点更加明显。我想知道自动安排删除直到步骤结束是否是一个好主意,或者侵入性较小的选项,在 python 中触发一个断言,这样你就不会得到c++ 错误。

于 2013-03-08T10:38:38.127 回答