# Released under the MIT License. See LICENSE for details.#"""Collision related functionality."""from__future__importannotationsfromtypingimportTYPE_CHECKINGimportbabaseimport_bascenev1ifTYPE_CHECKING:importbascenev1
[docs]classCollision:"""A class providing info about occurring collisions."""@propertydefposition(self)->bascenev1.Vec3:"""The position of the current collision."""returnbabase.Vec3(_bascenev1.get_collision_info('position'))@propertydefsourcenode(self)->bascenev1.Node:"""The node containing the material triggering the current callback. Throws a :class:`~babase.NodeNotFoundError` if the node does not exist, though the node should always exist (at least at the start of the collision callback). """node=_bascenev1.get_collision_info('sourcenode')assertisinstance(node,(_bascenev1.Node,type(None)))ifnotnode:raisebabase.NodeNotFoundError()returnnode@propertydefopposingnode(self)->bascenev1.Node:"""The node the current callback material node is hitting. Throws a :class:`~babase.NodeNotFoundError` if the node does not exist. This can be expected in some cases such as in 'disconnect' callbacks triggered by deleting a currently-colliding node. """node=_bascenev1.get_collision_info('opposingnode')assertisinstance(node,(_bascenev1.Node,type(None)))ifnotnode:raisebabase.NodeNotFoundError()returnnode@propertydefopposingbody(self)->int:"""The body index on the opposing node in the current collision."""body=_bascenev1.get_collision_info('opposingbody')assertisinstance(body,int)returnbody
# Simply recycle one instance..._collision=Collision()
[docs]defgetcollision()->Collision:"""Return the in-progress collision."""return_collision
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture