| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | using System; |
| | using System.Linq; |
| | using System.Xml; |
| | using UnityEngine; |
| |
|
| | namespace Mujoco { |
| |
|
| | |
| | public class MjGeom : MjShapeComponent { |
| | [Tooltip("If larger than zero, Density has no effect.")] |
| | public float Mass = 0.0f; |
| |
|
| | [Tooltip("Material density. Set to 0 for a zero-mass geom.")] |
| | public float Density = 1000.0f; |
| |
|
| | [Tooltip("Advanced settings.")] |
| | public MjGeomSettings Settings = MjGeomSettings.Default; |
| |
|
| | public override MujocoLib.mjtObj ObjectType => MujocoLib.mjtObj.mjOBJ_GEOM; |
| | private MjTransformation _geomInGlobalFrame = new MjTransformation(); |
| | private MjTransformation _comTransform; |
| |
|
| | protected override void OnParseMjcf(XmlElement mjcf) { |
| | ShapeFromMjcf(mjcf); |
| | Mass = mjcf.GetFloatAttribute("mass", defaultValue: 0.0f); |
| | Density = mjcf.GetFloatAttribute("density", defaultValue: 1000.0f); |
| | MjEngineTool.ParseTransformMjcf(mjcf, transform); |
| | Settings.FromMjcf(mjcf); |
| | } |
| |
|
| | |
| | |
| | protected override unsafe void OnBindToRuntime(MujocoLib.mjModel_* model, MujocoLib.mjData_* data) { |
| | var MjParent = MjHierarchyTool.FindParentComponent<MjBaseBody>(this); |
| | if (MjParent != null) { |
| | var comInParentFrame = new MjTransformation( |
| | translation: MjEngineTool.UnityVector3( |
| | MjEngineTool.MjVector3AtEntry(model->geom_pos, MujocoId)), |
| | rotation: MjEngineTool.UnityQuaternion( |
| | MjEngineTool.MjQuaternionAtEntry(model->geom_quat, MujocoId))); |
| |
|
| | |
| | |
| | |
| | var globalParentFrame = MjTransformation.LoadGlobal(transform.parent); |
| | var comInGlobalFrame = globalParentFrame * comInParentFrame; |
| | var globalFrame = MjTransformation.LoadGlobal(transform); |
| | _comTransform = comInGlobalFrame.Inverse() * globalFrame; |
| | } |
| | } |
| |
|
| | protected override XmlElement OnGenerateMjcf(XmlDocument doc) { |
| | var mjcf = (XmlElement)doc.CreateElement("geom"); |
| | if (Mass > 0) { |
| | mjcf.SetAttribute("mass", MjEngineTool.MakeLocaleInvariant($"{Mass}")); |
| | } else { |
| | mjcf.SetAttribute("density", MjEngineTool.MakeLocaleInvariant($"{Density}")); |
| | } |
| | ShapeToMjcf(mjcf, transform); |
| | MjEngineTool.PositionRotationToMjcf(mjcf, this); |
| | Settings.ToMjcf(mjcf); |
| |
|
| | return mjcf; |
| | } |
| |
|
| | public override unsafe void OnSyncState(MujocoLib.mjData_* data) { |
| | if (ShapeType == ShapeTypes.Mesh) { |
| | _geomInGlobalFrame.Set( |
| | translation: MjEngineTool.UnityVector3( |
| | MjEngineTool.MjVector3AtEntry(data->geom_xpos, MujocoId)), |
| | rotation: MjEngineTool.UnityQuaternionFromMatrix( |
| | MjEngineTool.MjMatrixAtEntry(data->geom_xmat, MujocoId))); |
| | var comInGlobalFrame = _geomInGlobalFrame * _comTransform; |
| | comInGlobalFrame.StoreGlobal(transform); |
| | } else { |
| | transform.position = MjEngineTool.UnityVector3( |
| | MjEngineTool.MjVector3AtEntry(data->geom_xpos, MujocoId)); |
| | transform.rotation = MjEngineTool.UnityQuaternionFromMatrix( |
| | MjEngineTool.MjMatrixAtEntry(data->geom_xmat, MujocoId)); |
| | } |
| | } |
| |
|
| | public void OnDrawGizmosSelected() { |
| | Gizmos.color = Color.blue; |
| | DrawGizmos(transform); |
| | } |
| | } |
| | } |
| |
|