bond-inter-unit-line.ts 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /**
  2. * Copyright (c) 2020-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. */
  6. import { ParamDefinition as PD } from '../../../mol-util/param-definition';
  7. import { VisualContext } from '../../visual';
  8. import { Structure, StructureElement, Bond, Unit } from '../../../mol-model/structure';
  9. import { Theme } from '../../../mol-theme/theme';
  10. import { Vec3 } from '../../../mol-math/linear-algebra';
  11. import { BitFlags, arrayEqual } from '../../../mol-util';
  12. import { LinkStyle, createLinkLines, LinkBuilderProps } from './util/link';
  13. import { ComplexVisual, ComplexLinesVisual, ComplexLinesParams } from '../complex-visual';
  14. import { VisualUpdateState } from '../../util';
  15. import { BondType } from '../../../mol-model/structure/model/types';
  16. import { BondIterator, getInterBondLoci, eachInterBond, BondLineParams, makeInterBondIgnoreTest } from './util/bond';
  17. import { Lines } from '../../../mol-geo/geometry/lines/lines';
  18. import { Sphere3D } from '../../../mol-math/geometry';
  19. const tmpRefPosBondIt = new Bond.ElementBondIterator();
  20. function setRefPosition(pos: Vec3, structure: Structure, unit: Unit.Atomic, index: StructureElement.UnitIndex) {
  21. tmpRefPosBondIt.setElement(structure, unit, index);
  22. while (tmpRefPosBondIt.hasNext) {
  23. const bA = tmpRefPosBondIt.move();
  24. bA.otherUnit.conformation.position(bA.otherUnit.elements[bA.otherIndex], pos);
  25. return pos;
  26. }
  27. return null;
  28. }
  29. function createInterUnitBondLines(ctx: VisualContext, structure: Structure, theme: Theme, props: PD.Values<InterUnitBondLineParams>, lines?: Lines) {
  30. const bonds = structure.interUnitBonds;
  31. const { edgeCount, edges } = bonds;
  32. if (!edgeCount) return Lines.createEmpty(lines);
  33. const { sizeFactor, aromaticBonds, multipleBonds } = props;
  34. const mbOff = multipleBonds === 'off';
  35. const mbSymmetric = multipleBonds === 'symmetric';
  36. const ref = Vec3();
  37. const loc = StructureElement.Location.create();
  38. const builderProps: LinkBuilderProps = {
  39. linkCount: edgeCount,
  40. referencePosition: (edgeIndex: number) => {
  41. const b = edges[edgeIndex];
  42. let unitA: Unit.Atomic, unitB: Unit.Atomic;
  43. let indexA: StructureElement.UnitIndex, indexB: StructureElement.UnitIndex;
  44. if (b.unitA < b.unitB) {
  45. unitA = structure.unitMap.get(b.unitA) as Unit.Atomic;
  46. unitB = structure.unitMap.get(b.unitB) as Unit.Atomic;
  47. indexA = b.indexA;
  48. indexB = b.indexB;
  49. } else if (b.unitA > b.unitB) {
  50. unitA = structure.unitMap.get(b.unitB) as Unit.Atomic;
  51. unitB = structure.unitMap.get(b.unitA) as Unit.Atomic;
  52. indexA = b.indexB;
  53. indexB = b.indexA;
  54. } else {
  55. throw new Error('same units in createInterUnitBondLines');
  56. }
  57. return setRefPosition(ref, structure, unitA, indexA) || setRefPosition(ref, structure, unitB, indexB);
  58. },
  59. position: (posA: Vec3, posB: Vec3, edgeIndex: number) => {
  60. const b = edges[edgeIndex];
  61. const uA = structure.unitMap.get(b.unitA);
  62. const uB = structure.unitMap.get(b.unitB);
  63. uA.conformation.position(uA.elements[b.indexA], posA);
  64. uB.conformation.position(uB.elements[b.indexB], posB);
  65. },
  66. style: (edgeIndex: number) => {
  67. const o = edges[edgeIndex].props.order;
  68. const f = BitFlags.create(edges[edgeIndex].props.flag);
  69. if (BondType.is(f, BondType.Flag.MetallicCoordination) || BondType.is(f, BondType.Flag.HydrogenBond)) {
  70. // show metallic coordinations and hydrogen bonds with dashed cylinders
  71. return LinkStyle.Dashed;
  72. } else if (o === 3) {
  73. return mbOff ? LinkStyle.Solid :
  74. mbSymmetric ? LinkStyle.Triple :
  75. LinkStyle.OffsetTriple;
  76. } else if (aromaticBonds && BondType.is(f, BondType.Flag.Aromatic)) {
  77. return LinkStyle.Aromatic;
  78. }
  79. return (o !== 2 || mbOff) ? LinkStyle.Solid :
  80. mbSymmetric ? LinkStyle.Double :
  81. LinkStyle.OffsetDouble;
  82. },
  83. radius: (edgeIndex: number) => {
  84. const b = edges[edgeIndex];
  85. loc.structure = structure;
  86. loc.unit = structure.unitMap.get(b.unitA);
  87. loc.element = loc.unit.elements[b.indexA];
  88. const sizeA = theme.size.size(loc);
  89. loc.unit = structure.unitMap.get(b.unitB);
  90. loc.element = loc.unit.elements[b.indexB];
  91. const sizeB = theme.size.size(loc);
  92. return Math.min(sizeA, sizeB) * sizeFactor;
  93. },
  94. ignore: makeInterBondIgnoreTest(structure, props)
  95. };
  96. const { lines: l, boundingSphere } = createLinkLines(ctx, builderProps, props, lines);
  97. if (boundingSphere) {
  98. l.setBoundingSphere(boundingSphere);
  99. } else if (l.lineCount > 0) {
  100. const { child } = structure;
  101. const sphere = Sphere3D.expand(Sphere3D(), (child ?? structure).boundary.sphere, 1 * sizeFactor);
  102. l.setBoundingSphere(sphere);
  103. }
  104. return l;
  105. }
  106. export const InterUnitBondLineParams = {
  107. ...ComplexLinesParams,
  108. ...BondLineParams,
  109. includeParent: PD.Boolean(false),
  110. };
  111. export type InterUnitBondLineParams = typeof InterUnitBondLineParams
  112. export function InterUnitBondLineVisual(materialId: number): ComplexVisual<InterUnitBondLineParams> {
  113. return ComplexLinesVisual<InterUnitBondLineParams>({
  114. defaultProps: PD.getDefaultValues(InterUnitBondLineParams),
  115. createGeometry: createInterUnitBondLines,
  116. createLocationIterator: (structure: Structure) => BondIterator.fromStructure(structure),
  117. getLoci: getInterBondLoci,
  118. eachLocation: eachInterBond,
  119. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<InterUnitBondLineParams>, currentProps: PD.Values<InterUnitBondLineParams>, newTheme: Theme, currentTheme: Theme, newStructure: Structure, currentStructure: Structure) => {
  120. state.createGeometry = (
  121. newProps.sizeFactor !== currentProps.sizeFactor ||
  122. newProps.linkScale !== currentProps.linkScale ||
  123. newProps.linkSpacing !== currentProps.linkSpacing ||
  124. newProps.aromaticDashCount !== currentProps.aromaticDashCount ||
  125. newProps.dashCount !== currentProps.dashCount ||
  126. newProps.ignoreHydrogens !== currentProps.ignoreHydrogens ||
  127. newProps.ignoreHydrogensVariant !== currentProps.ignoreHydrogensVariant ||
  128. !arrayEqual(newProps.includeTypes, currentProps.includeTypes) ||
  129. !arrayEqual(newProps.excludeTypes, currentProps.excludeTypes) ||
  130. newProps.multipleBonds !== currentProps.multipleBonds
  131. );
  132. if (newStructure.interUnitBonds !== currentStructure.interUnitBonds) {
  133. state.createGeometry = true;
  134. state.updateTransform = true;
  135. state.updateColor = true;
  136. state.updateSize = true;
  137. }
  138. }
  139. }, materialId);
  140. }