bond.ts 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. /**
  2. * Copyright (c) 2018-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. * @author David Sehnal <david.sehnal@gmail.com>
  6. * @author Gianluca Tomasello <giagitom@gmail.com>
  7. */
  8. import { BondType } from '../../../../mol-model/structure/model/types';
  9. import { Unit, StructureElement, Structure, Bond } from '../../../../mol-model/structure';
  10. import { ParamDefinition as PD } from '../../../../mol-util/param-definition';
  11. import { LocationIterator } from '../../../../mol-geo/util/location-iterator';
  12. import { LinkCylinderParams, LinkLineParams } from './link';
  13. import { ObjectKeys } from '../../../../mol-util/type-helpers';
  14. import { PickingId } from '../../../../mol-geo/geometry/picking';
  15. import { EmptyLoci, Loci } from '../../../../mol-model/loci';
  16. import { Interval, OrderedSet, SortedArray } from '../../../../mol-data/int';
  17. import { isHydrogen, StructureGroup } from './common';
  18. export const BondParams = {
  19. includeTypes: PD.MultiSelect(ObjectKeys(BondType.Names), PD.objectToOptions(BondType.Names)),
  20. excludeTypes: PD.MultiSelect([] as BondType.Names[], PD.objectToOptions(BondType.Names)),
  21. ignoreHydrogens: PD.Boolean(false),
  22. ignoreHydrogensVariant: PD.Select('all', PD.arrayToOptions(['all', 'non-polar'] as const)),
  23. aromaticBonds: PD.Boolean(true, { description: 'Display aromatic bonds with dashes' }),
  24. multipleBonds: PD.Select('symmetric', PD.arrayToOptions(['off', 'symmetric', 'offset'] as const)),
  25. };
  26. export const DefaultBondProps = PD.getDefaultValues(BondParams);
  27. export type BondProps = typeof DefaultBondProps
  28. export const BondCylinderParams = {
  29. ...LinkCylinderParams,
  30. ...BondParams,
  31. adjustCylinderLength: PD.Boolean(false, { description: 'Shorten cylinders to reduce overlap with spheres. Useful for for transparent bonds. Not working well with aromatic bonds.' })
  32. };
  33. export const DefaultBondCylinderProps = PD.getDefaultValues(BondCylinderParams);
  34. export type BondCylinderProps = typeof DefaultBondCylinderProps
  35. export const BondLineParams = {
  36. ...LinkLineParams,
  37. ...BondParams
  38. };
  39. export const DefaultBondLineProps = PD.getDefaultValues(BondLineParams);
  40. export type BondLineProps = typeof DefaultBondLineProps
  41. export function ignoreBondType(include: BondType.Flag, exclude: BondType.Flag, f: BondType.Flag) {
  42. return !BondType.is(include, f) || BondType.is(exclude, f);
  43. }
  44. export function makeIntraBondIgnoreTest(structure: Structure, unit: Unit.Atomic, props: BondProps): undefined | ((edgeIndex: number) => boolean) {
  45. const elements = unit.elements;
  46. const bonds = unit.bonds;
  47. const { a, b, edgeProps } = bonds;
  48. const { flags: _flags } = edgeProps;
  49. const { ignoreHydrogens, ignoreHydrogensVariant, includeTypes, excludeTypes } = props;
  50. const include = BondType.fromNames(includeTypes);
  51. const exclude = BondType.fromNames(excludeTypes);
  52. const allBondTypes = BondType.isAll(include) && BondType.Flag.None === exclude;
  53. const { child } = structure;
  54. const childUnit = child?.unitMap.get(unit.id);
  55. if (child && !childUnit) throw new Error('expected childUnit to exist if child exists');
  56. if (allBondTypes && !ignoreHydrogens && !child) return;
  57. return (edgeIndex: number) => {
  58. const aI = a[edgeIndex];
  59. const bI = b[edgeIndex];
  60. if ((!!childUnit && !SortedArray.has(childUnit.elements, elements[aI]))) {
  61. return true;
  62. }
  63. if (!allBondTypes && ignoreBondType(include, exclude, _flags[edgeIndex])) {
  64. return true;
  65. }
  66. if (!ignoreHydrogens) return false;
  67. if (isHydrogen(structure, unit, elements[aI], ignoreHydrogensVariant) || isHydrogen(structure, unit, elements[bI], ignoreHydrogensVariant)) return true;
  68. return false;
  69. };
  70. }
  71. export function makeInterBondIgnoreTest(structure: Structure, props: BondProps): undefined | ((edgeIndex: number) => boolean) {
  72. const bonds = structure.interUnitBonds;
  73. const { edges } = bonds;
  74. const { ignoreHydrogens, ignoreHydrogensVariant, includeTypes, excludeTypes } = props;
  75. const include = BondType.fromNames(includeTypes);
  76. const exclude = BondType.fromNames(excludeTypes);
  77. const allBondTypes = BondType.isAll(include) && BondType.Flag.None === exclude;
  78. const { child } = structure;
  79. if (allBondTypes && !ignoreHydrogens && !child) return;
  80. return (edgeIndex: number) => {
  81. if (child) {
  82. const b = edges[edgeIndex];
  83. const childUnitA = child.unitMap.get(b.unitA);
  84. if (!childUnitA) return true;
  85. const unitA = structure.unitMap.get(b.unitA);
  86. const eA = unitA.elements[b.indexA];
  87. if (!SortedArray.has(childUnitA.elements, eA)) return true;
  88. }
  89. if (ignoreHydrogens) {
  90. const b = edges[edgeIndex];
  91. const uA = structure.unitMap.get(b.unitA);
  92. const uB = structure.unitMap.get(b.unitB);
  93. if (isHydrogen(structure, uA, uA.elements[b.indexA], ignoreHydrogensVariant) || isHydrogen(structure, uB, uB.elements[b.indexB], ignoreHydrogensVariant)) return true;
  94. }
  95. if (!allBondTypes) {
  96. if (ignoreBondType(include, exclude, edges[edgeIndex].props.flag)) return true;
  97. }
  98. return false;
  99. };
  100. }
  101. export namespace BondIterator {
  102. export function fromGroup(structureGroup: StructureGroup, props?: { includeLocation2?: boolean }): LocationIterator {
  103. const { group, structure } = structureGroup;
  104. const unit = group.units[0] as Unit.Atomic;
  105. const groupCount = Unit.isAtomic(unit) ? unit.bonds.edgeCount * 2 : 0;
  106. const instanceCount = group.units.length;
  107. const location = Bond.Location(structure, undefined, undefined, structure, undefined, undefined);
  108. const getLocation = (groupIndex: number, instanceIndex: number) => {
  109. const unit = group.units[instanceIndex] as Unit.Atomic;
  110. location.aUnit = unit;
  111. location.bUnit = unit;
  112. location.aIndex = unit.bonds.a[groupIndex];
  113. location.bIndex = unit.bonds.b[groupIndex];
  114. return location;
  115. };
  116. if (props?.includeLocation2) {
  117. const location2 = Bond.Location(structure, undefined, undefined, structure, undefined, undefined);
  118. const getLocation2 = (groupIndex: number, instanceIndex: number) => { // swapping A and B
  119. const unit = group.units[instanceIndex] as Unit.Atomic;
  120. location2.aUnit = unit;
  121. location2.bUnit = unit;
  122. location2.aIndex = unit.bonds.b[groupIndex];
  123. location2.bIndex = unit.bonds.a[groupIndex];
  124. return location2;
  125. };
  126. return LocationIterator(groupCount, instanceCount, 1, getLocation, false, () => false, getLocation2);
  127. }
  128. return LocationIterator(groupCount, instanceCount, 1, getLocation);
  129. }
  130. export function fromStructure(structure: Structure, props?: { includeLocation2?: boolean }): LocationIterator {
  131. const groupCount = structure.interUnitBonds.edgeCount;
  132. const instanceCount = 1;
  133. const location = Bond.Location(structure, undefined, undefined, structure, undefined, undefined);
  134. const getLocation = (groupIndex: number) => {
  135. const bond = structure.interUnitBonds.edges[groupIndex];
  136. location.aUnit = structure.unitMap.get(bond.unitA);
  137. location.aIndex = bond.indexA;
  138. location.bUnit = structure.unitMap.get(bond.unitB);
  139. location.bIndex = bond.indexB;
  140. return location;
  141. };
  142. if (props?.includeLocation2) {
  143. const location2 = Bond.Location(structure, undefined, undefined, structure, undefined, undefined);
  144. const getLocation2 = (groupIndex: number) => { // swapping A and B
  145. const bond = structure.interUnitBonds.edges[groupIndex];
  146. location2.aUnit = structure.unitMap.get(bond.unitB);
  147. location2.aIndex = bond.indexB;
  148. location2.bUnit = structure.unitMap.get(bond.unitA);
  149. location2.bIndex = bond.indexA;
  150. return location2;
  151. };
  152. return LocationIterator(groupCount, instanceCount, 1, getLocation, true, () => false, getLocation2);
  153. };
  154. return LocationIterator(groupCount, instanceCount, 1, getLocation, true);
  155. }
  156. }
  157. //
  158. export function getIntraBondLoci(pickingId: PickingId, structureGroup: StructureGroup, id: number) {
  159. const { objectId, instanceId, groupId } = pickingId;
  160. if (id === objectId) {
  161. const { structure, group } = structureGroup;
  162. const unit = group.units[instanceId];
  163. if (Unit.isAtomic(unit)) {
  164. const { target } = structure;
  165. const iA = unit.bonds.a[groupId];
  166. const iB = unit.bonds.b[groupId];
  167. return Bond.Loci(target, [
  168. Bond.Location(target, unit, iA, target, unit, iB),
  169. Bond.Location(target, unit, iB, target, unit, iA)
  170. ]);
  171. }
  172. }
  173. return EmptyLoci;
  174. }
  175. export function eachIntraBond(loci: Loci, structureGroup: StructureGroup, apply: (interval: Interval) => boolean, isMarking: boolean) {
  176. let changed = false;
  177. if (Bond.isLoci(loci)) {
  178. const { structure, group } = structureGroup;
  179. if (!Structure.areEquivalent(loci.structure, structure)) return false;
  180. const unit = group.units[0];
  181. if (!Unit.isAtomic(unit)) return false;
  182. const groupCount = unit.bonds.edgeCount * 2;
  183. for (const b of loci.bonds) {
  184. if (b.aUnit !== b.bUnit) continue;
  185. const unitIdx = group.unitIndexMap.get(b.aUnit.id);
  186. if (unitIdx !== undefined) {
  187. const idx = unit.bonds.getDirectedEdgeIndex(b.aIndex, b.bIndex);
  188. if (idx !== -1) {
  189. if (apply(Interval.ofSingleton(unitIdx * groupCount + idx))) changed = true;
  190. }
  191. }
  192. }
  193. } else if (StructureElement.Loci.is(loci)) {
  194. const { structure, group } = structureGroup;
  195. if (!Structure.areEquivalent(loci.structure, structure)) return false;
  196. const unit = group.units[0];
  197. if (!Unit.isAtomic(unit)) return false;
  198. const groupCount = unit.bonds.edgeCount * 2;
  199. for (const e of loci.elements) {
  200. const unitIdx = group.unitIndexMap.get(e.unit.id);
  201. if (unitIdx !== undefined) {
  202. const { offset, b } = unit.bonds;
  203. OrderedSet.forEach(e.indices, v => {
  204. for (let t = offset[v], _t = offset[v + 1]; t < _t; t++) {
  205. if (!isMarking || OrderedSet.has(e.indices, b[t])) {
  206. if (apply(Interval.ofSingleton(unitIdx * groupCount + t))) changed = true;
  207. }
  208. }
  209. });
  210. }
  211. }
  212. }
  213. return changed;
  214. }
  215. //
  216. export function getInterBondLoci(pickingId: PickingId, structure: Structure, id: number) {
  217. const { objectId, groupId } = pickingId;
  218. if (id === objectId) {
  219. const { target } = structure;
  220. const b = structure.interUnitBonds.edges[groupId];
  221. const uA = structure.unitMap.get(b.unitA);
  222. const uB = structure.unitMap.get(b.unitB);
  223. return Bond.Loci(target, [
  224. Bond.Location(target, uA, b.indexA, target, uB, b.indexB),
  225. Bond.Location(target, uB, b.indexB, target, uA, b.indexA)
  226. ]);
  227. }
  228. return EmptyLoci;
  229. }
  230. const __unitMap = new Map<number, OrderedSet<StructureElement.UnitIndex>>();
  231. export function eachInterBond(loci: Loci, structure: Structure, apply: (interval: Interval) => boolean, isMarking: boolean) {
  232. let changed = false;
  233. if (Bond.isLoci(loci)) {
  234. if (!Structure.areEquivalent(loci.structure, structure)) return false;
  235. for (const b of loci.bonds) {
  236. const idx = structure.interUnitBonds.getBondIndexFromLocation(b);
  237. if (idx !== -1) {
  238. if (apply(Interval.ofSingleton(idx))) changed = true;
  239. }
  240. }
  241. } else if (StructureElement.Loci.is(loci)) {
  242. if (!Structure.areEquivalent(loci.structure, structure)) return false;
  243. if (isMarking && loci.elements.length === 1) return false; // only a single unit
  244. for (const e of loci.elements) __unitMap.set(e.unit.id, e.indices);
  245. for (const e of loci.elements) {
  246. const { unit } = e;
  247. if (!Unit.isAtomic(unit)) continue;
  248. structure.interUnitBonds.getConnectedUnits(unit.id).forEach(b => {
  249. const otherLociIndices = __unitMap.get(b.unitB);
  250. if (!isMarking || otherLociIndices) {
  251. OrderedSet.forEach(e.indices, v => {
  252. if (!b.connectedIndices.includes(v)) return;
  253. b.getEdges(v).forEach(bi => {
  254. if (!isMarking || (otherLociIndices && OrderedSet.has(otherLociIndices, bi.indexB))) {
  255. const idx = structure.interUnitBonds.getEdgeIndex(v, unit.id, bi.indexB, b.unitB);
  256. if (apply(Interval.ofSingleton(idx))) changed = true;
  257. }
  258. });
  259. });
  260. }
  261. });
  262. }
  263. __unitMap.clear();
  264. }
  265. return changed;
  266. }