Lines Matching refs:nodeEventData

734     VariantMap nodeEventData;  in SendBeginContactEvents()  local
750 nodeEventData[NodeBeginContact2D::P_CONTACTS] = contactInfo.Serialize(contacts_); in SendBeginContactEvents()
754 nodeEventData[NodeBeginContact2D::P_BODY] = contactInfo.bodyA_.Get(); in SendBeginContactEvents()
755 nodeEventData[NodeBeginContact2D::P_OTHERNODE] = contactInfo.nodeB_.Get(); in SendBeginContactEvents()
756 nodeEventData[NodeBeginContact2D::P_OTHERBODY] = contactInfo.bodyB_.Get(); in SendBeginContactEvents()
757 nodeEventData[NodeBeginContact2D::P_SHAPE] = contactInfo.shapeA_.Get(); in SendBeginContactEvents()
758 nodeEventData[NodeBeginContact2D::P_OTHERSHAPE] = contactInfo.shapeB_.Get(); in SendBeginContactEvents()
760 contactInfo.nodeA_->SendEvent(E_NODEBEGINCONTACT2D, nodeEventData); in SendBeginContactEvents()
765 nodeEventData[NodeBeginContact2D::P_BODY] = contactInfo.bodyB_.Get(); in SendBeginContactEvents()
766 nodeEventData[NodeBeginContact2D::P_OTHERNODE] = contactInfo.nodeA_.Get(); in SendBeginContactEvents()
767 nodeEventData[NodeBeginContact2D::P_OTHERBODY] = contactInfo.bodyA_.Get(); in SendBeginContactEvents()
768 nodeEventData[NodeBeginContact2D::P_SHAPE] = contactInfo.shapeB_.Get(); in SendBeginContactEvents()
769 nodeEventData[NodeBeginContact2D::P_OTHERSHAPE] = contactInfo.shapeA_.Get(); in SendBeginContactEvents()
771 contactInfo.nodeB_->SendEvent(E_NODEBEGINCONTACT2D, nodeEventData); in SendBeginContactEvents()
785 VariantMap nodeEventData; in SendEndContactEvents() local
801 nodeEventData[NodeEndContact2D::P_CONTACTS] = contactInfo.Serialize(contacts_); in SendEndContactEvents()
805 nodeEventData[NodeEndContact2D::P_BODY] = contactInfo.bodyA_.Get(); in SendEndContactEvents()
806 nodeEventData[NodeEndContact2D::P_OTHERNODE] = contactInfo.nodeB_.Get(); in SendEndContactEvents()
807 nodeEventData[NodeEndContact2D::P_OTHERBODY] = contactInfo.bodyB_.Get(); in SendEndContactEvents()
808 nodeEventData[NodeEndContact2D::P_SHAPE] = contactInfo.shapeA_.Get(); in SendEndContactEvents()
809 nodeEventData[NodeEndContact2D::P_OTHERSHAPE] = contactInfo.shapeB_.Get(); in SendEndContactEvents()
811 contactInfo.nodeA_->SendEvent(E_NODEENDCONTACT2D, nodeEventData); in SendEndContactEvents()
816 nodeEventData[NodeEndContact2D::P_BODY] = contactInfo.bodyB_.Get(); in SendEndContactEvents()
817 nodeEventData[NodeEndContact2D::P_OTHERNODE] = contactInfo.nodeA_.Get(); in SendEndContactEvents()
818 nodeEventData[NodeEndContact2D::P_OTHERBODY] = contactInfo.bodyA_.Get(); in SendEndContactEvents()
819 nodeEventData[NodeEndContact2D::P_SHAPE] = contactInfo.shapeB_.Get(); in SendEndContactEvents()
820 nodeEventData[NodeEndContact2D::P_OTHERSHAPE] = contactInfo.shapeA_.Get(); in SendEndContactEvents()
822 contactInfo.nodeB_->SendEvent(E_NODEENDCONTACT2D, nodeEventData); in SendEndContactEvents()