| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  generic_6dof_joint_bullet.cpp                                        */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-01 14:40:08 +01:00
										 |  |  | /* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "generic_6dof_joint_bullet.h"
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | #include "bullet_types_converter.h"
 | 
					
						
							|  |  |  | #include "bullet_utilities.h"
 | 
					
						
							|  |  |  | #include "rigid_body_bullet.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | #include <BulletDynamics/ConstraintSolver/btGeneric6DofSpring2Constraint.h>
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  | 	@author AndreaCatania | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | Generic6DOFJointBullet::Generic6DOFJointBullet(RigidBodyBullet *rbA, RigidBodyBullet *rbB, const Transform &frameInA, const Transform &frameInB) : | 
					
						
							| 
									
										
										
										
											2017-12-06 21:36:34 +01:00
										 |  |  | 		JointBullet() { | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-09 01:22:36 +01:00
										 |  |  | 	Transform scaled_AFrame(frameInA.scaled(rbA->get_body_scale())); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	scaled_AFrame.basis.rotref_posscale_decomposition(scaled_AFrame.basis); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 	btTransform btFrameA; | 
					
						
							| 
									
										
										
										
											2017-12-09 01:22:36 +01:00
										 |  |  | 	G_TO_B(scaled_AFrame, btFrameA); | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (rbB) { | 
					
						
							| 
									
										
										
										
											2017-12-09 01:22:36 +01:00
										 |  |  | 		Transform scaled_BFrame(frameInB.scaled(rbB->get_body_scale())); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		scaled_BFrame.basis.rotref_posscale_decomposition(scaled_BFrame.basis); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 		btTransform btFrameB; | 
					
						
							| 
									
										
										
										
											2017-12-09 01:22:36 +01:00
										 |  |  | 		G_TO_B(scaled_BFrame, btFrameB); | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | 		sixDOFConstraint = bulletnew(btGeneric6DofSpring2Constraint(*rbA->get_bt_rigid_body(), *rbB->get_bt_rigid_body(), btFrameA, btFrameB)); | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | 		sixDOFConstraint = bulletnew(btGeneric6DofSpring2Constraint(*rbA->get_bt_rigid_body(), btFrameA)); | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	setup(sixDOFConstraint); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Transform Generic6DOFJointBullet::getFrameOffsetA() const { | 
					
						
							|  |  |  | 	btTransform btTrs = sixDOFConstraint->getFrameOffsetA(); | 
					
						
							|  |  |  | 	Transform gTrs; | 
					
						
							|  |  |  | 	B_TO_G(btTrs, gTrs); | 
					
						
							|  |  |  | 	return gTrs; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Transform Generic6DOFJointBullet::getFrameOffsetB() const { | 
					
						
							|  |  |  | 	btTransform btTrs = sixDOFConstraint->getFrameOffsetB(); | 
					
						
							|  |  |  | 	Transform gTrs; | 
					
						
							|  |  |  | 	B_TO_G(btTrs, gTrs); | 
					
						
							|  |  |  | 	return gTrs; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Transform Generic6DOFJointBullet::getFrameOffsetA() { | 
					
						
							|  |  |  | 	btTransform btTrs = sixDOFConstraint->getFrameOffsetA(); | 
					
						
							|  |  |  | 	Transform gTrs; | 
					
						
							|  |  |  | 	B_TO_G(btTrs, gTrs); | 
					
						
							|  |  |  | 	return gTrs; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Transform Generic6DOFJointBullet::getFrameOffsetB() { | 
					
						
							|  |  |  | 	btTransform btTrs = sixDOFConstraint->getFrameOffsetB(); | 
					
						
							|  |  |  | 	Transform gTrs; | 
					
						
							|  |  |  | 	B_TO_G(btTrs, gTrs); | 
					
						
							|  |  |  | 	return gTrs; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Generic6DOFJointBullet::set_linear_lower_limit(const Vector3 &linearLower) { | 
					
						
							|  |  |  | 	btVector3 btVec; | 
					
						
							|  |  |  | 	G_TO_B(linearLower, btVec); | 
					
						
							|  |  |  | 	sixDOFConstraint->setLinearLowerLimit(btVec); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Generic6DOFJointBullet::set_linear_upper_limit(const Vector3 &linearUpper) { | 
					
						
							|  |  |  | 	btVector3 btVec; | 
					
						
							|  |  |  | 	G_TO_B(linearUpper, btVec); | 
					
						
							|  |  |  | 	sixDOFConstraint->setLinearUpperLimit(btVec); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Generic6DOFJointBullet::set_angular_lower_limit(const Vector3 &angularLower) { | 
					
						
							|  |  |  | 	btVector3 btVec; | 
					
						
							|  |  |  | 	G_TO_B(angularLower, btVec); | 
					
						
							|  |  |  | 	sixDOFConstraint->setAngularLowerLimit(btVec); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Generic6DOFJointBullet::set_angular_upper_limit(const Vector3 &angularUpper) { | 
					
						
							|  |  |  | 	btVector3 btVec; | 
					
						
							|  |  |  | 	G_TO_B(angularUpper, btVec); | 
					
						
							|  |  |  | 	sixDOFConstraint->setAngularUpperLimit(btVec); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Generic6DOFJointBullet::set_param(Vector3::Axis p_axis, PhysicsServer::G6DOFJointAxisParam p_param, real_t p_value) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX(p_axis, 3); | 
					
						
							|  |  |  | 	switch (p_param) { | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_LINEAR_LOWER_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			limits_lower[0][p_axis] = p_value; | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | 			set_flag(p_axis, PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT, flags[p_axis][PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT]); // Reload bullet parameter
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_LINEAR_UPPER_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			limits_upper[0][p_axis] = p_value; | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | 			set_flag(p_axis, PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT, flags[p_axis][PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT]); // Reload bullet parameter
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2018-03-16 13:07:52 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_LINEAR_MOTOR_TARGET_VELOCITY: | 
					
						
							|  |  |  | 			sixDOFConstraint->getTranslationalLimitMotor()->m_targetVelocity.m_floats[p_axis] = p_value; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_LINEAR_MOTOR_FORCE_LIMIT: | 
					
						
							|  |  |  | 			sixDOFConstraint->getTranslationalLimitMotor()->m_maxMotorForce.m_floats[p_axis] = p_value; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_LOWER_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			limits_lower[1][p_axis] = p_value; | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | 			set_flag(p_axis, PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT, flags[p_axis][PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT]); // Reload bullet parameter
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_UPPER_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			limits_upper[1][p_axis] = p_value; | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | 			set_flag(p_axis, PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT, flags[p_axis][PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT]); // Reload bullet parameter
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_ERP: | 
					
						
							|  |  |  | 			sixDOFConstraint->getRotationalLimitMotor(p_axis)->m_stopERP = p_value; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_MOTOR_TARGET_VELOCITY: | 
					
						
							|  |  |  | 			sixDOFConstraint->getRotationalLimitMotor(p_axis)->m_targetVelocity = p_value; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_MOTOR_FORCE_LIMIT: | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | 			sixDOFConstraint->getRotationalLimitMotor(p_axis)->m_maxMotorForce = p_value; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2018-08-26 09:10:30 +02:00
										 |  |  | 			ERR_EXPLAIN("This parameter " + itos(p_param) + " is deprecated"); | 
					
						
							|  |  |  | 			WARN_DEPRECATED | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:40 +02:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | real_t Generic6DOFJointBullet::get_param(Vector3::Axis p_axis, PhysicsServer::G6DOFJointAxisParam p_param) const { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX_V(p_axis, 3, 0.); | 
					
						
							|  |  |  | 	switch (p_param) { | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_LINEAR_LOWER_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			return limits_lower[0][p_axis]; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_LINEAR_UPPER_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			return limits_upper[0][p_axis]; | 
					
						
							| 
									
										
										
										
											2018-03-16 13:07:52 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_LINEAR_MOTOR_TARGET_VELOCITY: | 
					
						
							|  |  |  | 			return sixDOFConstraint->getTranslationalLimitMotor()->m_targetVelocity.m_floats[p_axis]; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_LINEAR_MOTOR_FORCE_LIMIT: | 
					
						
							|  |  |  | 			return sixDOFConstraint->getTranslationalLimitMotor()->m_maxMotorForce.m_floats[p_axis]; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_LOWER_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			return limits_lower[1][p_axis]; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_UPPER_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			return limits_upper[1][p_axis]; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_RESTITUTION: | 
					
						
							|  |  |  | 			return sixDOFConstraint->getRotationalLimitMotor(p_axis)->m_bounce; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_ERP: | 
					
						
							|  |  |  | 			return sixDOFConstraint->getRotationalLimitMotor(p_axis)->m_stopERP; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_MOTOR_TARGET_VELOCITY: | 
					
						
							|  |  |  | 			return sixDOFConstraint->getRotationalLimitMotor(p_axis)->m_targetVelocity; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_ANGULAR_MOTOR_FORCE_LIMIT: | 
					
						
							| 
									
										
										
										
											2018-08-15 18:14:32 +02:00
										 |  |  | 			return sixDOFConstraint->getRotationalLimitMotor(p_axis)->m_maxMotorForce; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2018-08-26 09:10:30 +02:00
										 |  |  | 			ERR_EXPLAIN("This parameter " + itos(p_param) + " is deprecated"); | 
					
						
							|  |  |  | 			WARN_DEPRECATED; | 
					
						
							|  |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Generic6DOFJointBullet::set_flag(Vector3::Axis p_axis, PhysicsServer::G6DOFJointAxisFlag p_flag, bool p_value) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX(p_axis, 3); | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	flags[p_axis][p_flag] = p_value; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 	switch (p_flag) { | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			if (flags[p_axis][p_flag]) { | 
					
						
							|  |  |  | 				sixDOFConstraint->setLimit(p_axis, limits_lower[0][p_axis], limits_upper[0][p_axis]); | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 				sixDOFConstraint->setLimit(p_axis, 0, -1); // Free
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT: | 
					
						
							|  |  |  | 			if (flags[p_axis][p_flag]) { | 
					
						
							|  |  |  | 				sixDOFConstraint->setLimit(p_axis + 3, limits_lower[1][p_axis], limits_upper[1][p_axis]); | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 				sixDOFConstraint->setLimit(p_axis + 3, 0, -1); // Free
 | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_MOTOR: | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 			sixDOFConstraint->getRotationalLimitMotor(p_axis)->m_enableMotor = flags[p_axis][p_flag]; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2018-03-16 13:07:52 +01:00
										 |  |  | 		case PhysicsServer::G6DOF_JOINT_FLAG_ENABLE_LINEAR_MOTOR: | 
					
						
							|  |  |  | 			sixDOFConstraint->getTranslationalLimitMotor()->m_enableMotor[p_axis] = flags[p_axis][p_flag]; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2018-08-26 09:10:30 +02:00
										 |  |  | 			ERR_EXPLAIN("This flag " + itos(p_flag) + " is deprecated"); | 
					
						
							|  |  |  | 			WARN_DEPRECATED | 
					
						
							| 
									
										
										
										
											2018-08-27 10:10:40 +02:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool Generic6DOFJointBullet::get_flag(Vector3::Axis p_axis, PhysicsServer::G6DOFJointAxisFlag p_flag) const { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX_V(p_axis, 3, false); | 
					
						
							| 
									
										
										
										
											2017-12-09 19:53:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return flags[p_axis][p_flag]; | 
					
						
							| 
									
										
										
										
											2017-11-04 20:52:59 +01:00
										 |  |  | } |