ya2 · news · projects · code · about

functional tests: editor
[pmachines.git] / pmachines / items / box.py
CommitLineData
c991401b 1from panda3d.bullet import BulletBoxShape
2aeb9f68 2from pmachines.items.item import Item, ItemStrategy
1be87278 3
852fb5ae 4
d5932612 5class Box(Item):
32aa4dae 6
3466af49
FC
7 def __init__(self, world, plane_node, cb_inst, curr_bottom, repos, json, model_scale=1, mass=1, pos=(0, 0, 0), r=0, count=0, restitution=.5, friction=.8):
8 super().__init__(world, plane_node, cb_inst, curr_bottom, repos, 'assets/models/bam/box/box.bam', json, model_scale=model_scale, mass=mass, pos=pos, r=r, count=count, restitution=restitution, friction=friction)
32aa4dae 9
80d579b1 10 def _set_shape(self, apply_scale=True):
ea38777c 11 self.node.add_shape(BulletBoxShape((.5, .5, .5)))
9fc7f6fb
FC
12
13
2aeb9f68 14class HitStrategy(ItemStrategy):
9fc7f6fb 15
0e86689f 16 def __init__(self, hit_by, node, world):
9fc7f6fb 17 self._hit_by = hit_by
0e86689f
FC
18 self._node = node
19 self._world = world
9fc7f6fb 20
0a0994e4 21 def win_condition(self):
0e86689f
FC
22 for contact in self._world.contact_test(self._node).get_contacts():
23 other = contact.get_node1() if contact.get_node0() == self._node else contact.get_node0()
9fc7f6fb
FC
24 if other == self._hit_by.node:
25 return True