units-visual.ts 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. /**
  2. * Copyright (c) 2018-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. * @author Gianluca Tomasello <giagitom@gmail.com>
  6. */
  7. import { ParamDefinition as PD } from '../../mol-util/param-definition';
  8. import { Structure, Unit, StructureElement, Bond } from '../../mol-model/structure';
  9. import { RepresentationProps } from '../representation';
  10. import { Visual, VisualContext } from '../visual';
  11. import { Geometry, GeometryUtils } from '../../mol-geo/geometry/geometry';
  12. import { LocationIterator } from '../../mol-geo/util/location-iterator';
  13. import { Theme } from '../../mol-theme/theme';
  14. import { createUnitsTransform, includesUnitKind, StructureGroup } from './visual/util/common';
  15. import { createRenderObject, GraphicsRenderObject, RenderObjectValues } from '../../mol-gl/render-object';
  16. import { PickingId } from '../../mol-geo/geometry/picking';
  17. import { Loci, isEveryLoci, EmptyLoci } from '../../mol-model/loci';
  18. import { Interval } from '../../mol-data/int';
  19. import { LocationCallback, VisualUpdateState } from '../util';
  20. import { ColorTheme } from '../../mol-theme/color';
  21. import { createMarkers } from '../../mol-geo/geometry/marker-data';
  22. import { MarkerAction } from '../../mol-util/marker-action';
  23. import { ValueCell, deepEqual } from '../../mol-util';
  24. import { createSizes } from '../../mol-geo/geometry/size-data';
  25. import { createColors } from '../../mol-geo/geometry/color-data';
  26. import { Mat4 } from '../../mol-math/linear-algebra';
  27. import { Overpaint } from '../../mol-theme/overpaint';
  28. import { Transparency } from '../../mol-theme/transparency';
  29. import { Mesh } from '../../mol-geo/geometry/mesh/mesh';
  30. import { SizeTheme } from '../../mol-theme/size';
  31. import { Spheres } from '../../mol-geo/geometry/spheres/spheres';
  32. import { Cylinders } from '../../mol-geo/geometry/cylinders/cylinders';
  33. import { Points } from '../../mol-geo/geometry/points/points';
  34. import { Lines } from '../../mol-geo/geometry/lines/lines';
  35. import { Text } from '../../mol-geo/geometry/text/text';
  36. import { DirectVolume } from '../../mol-geo/geometry/direct-volume/direct-volume';
  37. import { TextureMesh } from '../../mol-geo/geometry/texture-mesh/texture-mesh';
  38. import { SizeValues } from '../../mol-gl/renderable/schema';
  39. import { StructureParams, StructureMeshParams, StructureSpheresParams, StructurePointsParams, StructureLinesParams, StructureTextParams, StructureDirectVolumeParams, StructureTextureMeshParams, StructureCylindersParams } from './params';
  40. import { Clipping } from '../../mol-theme/clipping';
  41. import { WebGLContext } from '../../mol-gl/webgl/context';
  42. import { isPromiseLike } from '../../mol-util/type-helpers';
  43. import { Substance } from '../../mol-theme/substance';
  44. export interface UnitsVisual<P extends RepresentationProps = {}> extends Visual<StructureGroup, P> { }
  45. function createUnitsRenderObject<G extends Geometry>(structureGroup: StructureGroup, geometry: G, locationIt: LocationIterator, theme: Theme, props: PD.Values<StructureParams & Geometry.Params<G>>, materialId: number) {
  46. const { createValues, createRenderableState } = Geometry.getUtils(geometry);
  47. const transform = createUnitsTransform(structureGroup, props.includeParent);
  48. const values = createValues(geometry, transform, locationIt, theme, props);
  49. const state = createRenderableState(props);
  50. return createRenderObject(geometry.kind, values, state, materialId);
  51. }
  52. interface UnitsVisualBuilder<P extends StructureParams, G extends Geometry> {
  53. defaultProps: PD.Values<P>
  54. createGeometry(ctx: VisualContext, unit: Unit, structure: Structure, theme: Theme, props: PD.Values<P>, geometry?: G): Promise<G> | G
  55. createLocationIterator(structureGroup: StructureGroup, props: PD.Values<P>): LocationIterator
  56. getLoci(pickingId: PickingId, structureGroup: StructureGroup, id: number): Loci
  57. eachLocation(loci: Loci, structureGroup: StructureGroup, apply: (interval: Interval) => boolean, isMarking: boolean): boolean
  58. setUpdateState(state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup): void
  59. mustRecreate?: (structureGroup: StructureGroup, props: PD.Values<P>) => boolean
  60. processValues?: (values: RenderObjectValues<G['kind']>, geometry: G, props: PD.Values<P>, theme: Theme, webgl?: WebGLContext) => void
  61. dispose?: (geometry: G) => void
  62. }
  63. interface UnitsVisualGeometryBuilder<P extends StructureParams, G extends Geometry> extends UnitsVisualBuilder<P, G> {
  64. geometryUtils: GeometryUtils<G>
  65. }
  66. export function UnitsVisual<G extends Geometry, P extends StructureParams & Geometry.Params<G>>(builder: UnitsVisualGeometryBuilder<P, G>, materialId: number): UnitsVisual<P> {
  67. const { defaultProps, createGeometry, createLocationIterator, getLoci, eachLocation, setUpdateState, mustRecreate, processValues, dispose } = builder;
  68. const { createEmpty: createEmptyGeometry, updateValues, updateBoundingSphere, updateRenderableState, createPositionIterator } = builder.geometryUtils;
  69. const updateState = VisualUpdateState.create();
  70. const previousMark: Visual.PreviousMark = { loci: EmptyLoci, action: MarkerAction.None, status: -1 };
  71. let renderObject: GraphicsRenderObject<G['kind']> | undefined;
  72. let newProps: PD.Values<P> = Object.assign({}, defaultProps);
  73. let newTheme: Theme = Theme.createEmpty();
  74. let newStructureGroup: StructureGroup;
  75. let currentProps: PD.Values<P>;
  76. let currentTheme: Theme;
  77. let currentStructureGroup: StructureGroup;
  78. let geometry: G;
  79. let geometryVersion = -1;
  80. let locationIt: LocationIterator;
  81. let positionIt: LocationIterator;
  82. function prepareUpdate(theme: Theme, props: PD.Values<P>, structureGroup: StructureGroup) {
  83. if (!structureGroup && !currentStructureGroup) {
  84. throw new Error('missing structureGroup');
  85. }
  86. newProps = props;
  87. newTheme = theme;
  88. newStructureGroup = structureGroup;
  89. VisualUpdateState.reset(updateState);
  90. if (!renderObject || !currentStructureGroup) {
  91. // console.log('create new');
  92. updateState.createNew = true;
  93. updateState.createGeometry = true;
  94. return;
  95. }
  96. setUpdateState(updateState, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  97. if (!Structure.areHierarchiesEqual(currentStructureGroup.structure, newStructureGroup.structure)) {
  98. // console.log('new hierarchy');
  99. updateState.updateTransform = true;
  100. updateState.updateColor = true;
  101. updateState.updateSize = true;
  102. }
  103. if (!ColorTheme.areEqual(newTheme.color, currentTheme.color)) {
  104. // console.log('new colorTheme');
  105. updateState.updateColor = true;
  106. }
  107. if (currentStructureGroup.structure.child !== newStructureGroup.structure.child) {
  108. // console.log('new child');
  109. updateState.createGeometry = true;
  110. }
  111. if (newProps.instanceGranularity !== currentProps.instanceGranularity) {
  112. updateState.updateTransform = true;
  113. }
  114. if (!deepEqual(newProps.unitKinds, currentProps.unitKinds)) {
  115. // console.log('new unitKinds');
  116. updateState.createGeometry = true;
  117. }
  118. if (newStructureGroup.group.transformHash !== currentStructureGroup.group.transformHash) {
  119. // console.log('new transformHash');
  120. if (newStructureGroup.group.units.length !== currentStructureGroup.group.units.length || updateState.updateColor) {
  121. updateState.updateTransform = true;
  122. } else {
  123. updateState.updateMatrix = true;
  124. }
  125. }
  126. // check if the operator or conformation of unit has changed
  127. const newUnit = newStructureGroup.group.units[0];
  128. const currentUnit = currentStructureGroup.group.units[0];
  129. if (!Unit.areOperatorsEqual(newUnit, currentUnit)) {
  130. // console.log('new operators');
  131. updateState.updateTransform = true;
  132. }
  133. if (!Unit.areConformationsEqual(newUnit, currentUnit)) {
  134. // console.log('new conformation');
  135. updateState.createGeometry = true;
  136. }
  137. if (updateState.updateTransform) {
  138. updateState.updateMatrix = true;
  139. }
  140. if (updateState.updateSize && !('uSize' in renderObject.values)) {
  141. updateState.createGeometry = true;
  142. }
  143. if (updateState.createGeometry || updateState.updateTransform) {
  144. if (currentStructureGroup.structure.hashCode !== newStructureGroup.structure.hashCode) {
  145. // console.log('new hashCode');
  146. updateState.updateColor = true;
  147. updateState.updateSize = true;
  148. }
  149. if (newTheme.color.granularity.startsWith('vertex') ||
  150. renderObject.values.dColorType.ref.value.startsWith('vertex') ||
  151. newTheme.color.granularity.startsWith('volume') ||
  152. renderObject.values.dColorType.ref.value.startsWith('volume')
  153. ) {
  154. updateState.updateColor = true;
  155. }
  156. }
  157. }
  158. function update(newGeometry?: G) {
  159. if (updateState.createNew) {
  160. locationIt = createLocationIterator(newStructureGroup, newProps);
  161. if (newGeometry) {
  162. renderObject = createUnitsRenderObject(newStructureGroup, newGeometry, locationIt, newTheme, newProps, materialId);
  163. positionIt = createPositionIterator(newGeometry, renderObject.values);
  164. } else {
  165. throw new Error('expected geometry to be given');
  166. }
  167. } else {
  168. if (!renderObject) {
  169. throw new Error('expected renderObject to be available');
  170. }
  171. if (updateState.updateTransform) {
  172. // console.log('update transform');
  173. locationIt = createLocationIterator(newStructureGroup, newProps);
  174. const { instanceCount, groupCount } = locationIt;
  175. if (newProps.instanceGranularity) {
  176. createMarkers(instanceCount, 'instance', renderObject.values);
  177. } else {
  178. createMarkers(instanceCount * groupCount, 'groupInstance', renderObject.values);
  179. }
  180. }
  181. if (updateState.updateMatrix) {
  182. // console.log('update matrix');
  183. createUnitsTransform(newStructureGroup, newProps.includeParent, renderObject.values);
  184. }
  185. if (updateState.createGeometry) {
  186. // console.log('update geometry');
  187. if (newGeometry) {
  188. ValueCell.updateIfChanged(renderObject.values.drawCount, Geometry.getDrawCount(newGeometry));
  189. ValueCell.updateIfChanged(renderObject.values.uVertexCount, Geometry.getVertexCount(newGeometry));
  190. ValueCell.updateIfChanged(renderObject.values.uGroupCount, Geometry.getGroupCount(newGeometry));
  191. } else {
  192. throw new Error('expected geometry to be given');
  193. }
  194. }
  195. if (updateState.updateTransform || updateState.createGeometry) {
  196. updateBoundingSphere(renderObject.values, newGeometry || geometry);
  197. positionIt = createPositionIterator(newGeometry || geometry, renderObject.values);
  198. }
  199. if (updateState.updateSize) {
  200. // not all geometries have size data, so check here
  201. if ('uSize' in renderObject.values) {
  202. // console.log('update size');
  203. createSizes(locationIt, newTheme.size, renderObject.values as SizeValues);
  204. }
  205. }
  206. if (updateState.updateColor) {
  207. // console.log('update color');
  208. createColors(locationIt, positionIt, newTheme.color, renderObject.values);
  209. }
  210. updateValues(renderObject.values, newProps);
  211. updateRenderableState(renderObject.state, newProps);
  212. }
  213. currentProps = newProps;
  214. currentTheme = newTheme;
  215. currentStructureGroup = newStructureGroup;
  216. if (newGeometry) {
  217. geometry = newGeometry;
  218. geometryVersion += 1;
  219. }
  220. }
  221. function _createGeometry(ctx: VisualContext, unit: Unit, structure: Structure, theme: Theme, props: PD.Values<P>, geometry?: G) {
  222. return includesUnitKind(props.unitKinds, unit)
  223. ? createGeometry(ctx, unit, structure, theme, props, geometry)
  224. : createEmptyGeometry(geometry);
  225. }
  226. function lociIsSuperset(loci: Loci) {
  227. if (isEveryLoci(loci)) return true;
  228. if (Structure.isLoci(loci) && Structure.areRootsEquivalent(loci.structure, currentStructureGroup.structure)) return true;
  229. if (StructureElement.Loci.is(loci) && Structure.areRootsEquivalent(loci.structure, currentStructureGroup.structure)) {
  230. if (StructureElement.Loci.isWholeStructure(loci)) return true;
  231. }
  232. return false;
  233. }
  234. function eachInstance(loci: Loci, structureGroup: StructureGroup, apply: (interval: Interval) => boolean) {
  235. let changed = false;
  236. if (Bond.isLoci(loci)) {
  237. const { structure, group } = structureGroup;
  238. if (!Structure.areEquivalent(loci.structure, structure)) return false;
  239. for (const b of loci.bonds) {
  240. if (b.aUnit !== b.bUnit) continue;
  241. const unitIdx = group.unitIndexMap.get(b.aUnit.id);
  242. if (unitIdx !== undefined) {
  243. if (apply(Interval.ofSingleton(unitIdx))) changed = true;
  244. }
  245. }
  246. } else if (StructureElement.Loci.is(loci)) {
  247. const { structure, group } = structureGroup;
  248. if (!Structure.areEquivalent(loci.structure, structure)) return false;
  249. for (const e of loci.elements) {
  250. const unitIdx = group.unitIndexMap.get(e.unit.id);
  251. if (unitIdx !== undefined) {
  252. if (apply(Interval.ofSingleton(unitIdx))) changed = true;
  253. }
  254. }
  255. }
  256. return changed;
  257. }
  258. function lociApply(loci: Loci, apply: (interval: Interval) => boolean, isMarking: boolean) {
  259. if (lociIsSuperset(loci)) {
  260. if (currentProps.instanceGranularity) {
  261. return apply(Interval.ofBounds(0, locationIt.instanceCount));
  262. } else {
  263. return apply(Interval.ofBounds(0, locationIt.groupCount * locationIt.instanceCount));
  264. }
  265. } else {
  266. if (currentProps.instanceGranularity) {
  267. return eachInstance(loci, currentStructureGroup, apply);
  268. } else {
  269. return eachLocation(loci, currentStructureGroup, apply, isMarking);
  270. }
  271. }
  272. }
  273. function finalize(ctx: VisualContext) {
  274. if (renderObject) {
  275. processValues?.(renderObject.values, geometry, currentProps, currentTheme, ctx.webgl);
  276. }
  277. }
  278. return {
  279. get groupCount() { return locationIt ? locationIt.count : 0; },
  280. get renderObject() { return locationIt && locationIt.count ? renderObject : undefined; },
  281. get geometryVersion() { return geometryVersion; },
  282. createOrUpdate(ctx: VisualContext, theme: Theme, props: PD.Values<P>, structureGroup?: StructureGroup) {
  283. prepareUpdate(theme, props, structureGroup || currentStructureGroup);
  284. if (updateState.createGeometry) {
  285. const newGeometry = _createGeometry(ctx, newStructureGroup.group.units[0], newStructureGroup.structure, newTheme, newProps, geometry);
  286. if (isPromiseLike(newGeometry)) {
  287. return newGeometry.then(g => {
  288. update(g);
  289. finalize(ctx);
  290. });
  291. }
  292. update(newGeometry);
  293. } else {
  294. update();
  295. }
  296. finalize(ctx);
  297. },
  298. getLoci(pickingId: PickingId) {
  299. return renderObject ? getLoci(pickingId, currentStructureGroup, renderObject.id) : EmptyLoci;
  300. },
  301. eachLocation(cb: LocationCallback) {
  302. locationIt.reset();
  303. while (locationIt.hasNext) {
  304. const { location, isSecondary } = locationIt.move();
  305. cb(location, isSecondary);
  306. }
  307. },
  308. mark(loci: Loci, action: MarkerAction) {
  309. let hasInvariantId = true;
  310. if (StructureElement.Loci.is(loci)) {
  311. hasInvariantId = false;
  312. const { invariantId } = currentStructureGroup.group.units[0];
  313. for (const e of loci.elements) {
  314. if (e.unit.invariantId === invariantId) {
  315. hasInvariantId = true;
  316. break;
  317. }
  318. }
  319. }
  320. return hasInvariantId ? Visual.mark(renderObject, loci, action, lociApply, previousMark) : false;
  321. },
  322. setVisibility(visible: boolean) {
  323. Visual.setVisibility(renderObject, visible);
  324. },
  325. setAlphaFactor(alphaFactor: number) {
  326. Visual.setAlphaFactor(renderObject, alphaFactor);
  327. },
  328. setPickable(pickable: boolean) {
  329. Visual.setPickable(renderObject, pickable);
  330. },
  331. setColorOnly(colorOnly: boolean) {
  332. Visual.setColorOnly(renderObject, colorOnly);
  333. },
  334. setTransform(matrix?: Mat4, instanceMatrices?: Float32Array | null) {
  335. Visual.setTransform(renderObject, matrix, instanceMatrices);
  336. },
  337. setOverpaint(overpaint: Overpaint, webgl?: WebGLContext) {
  338. const smoothing = { geometry, props: currentProps, webgl };
  339. Visual.setOverpaint(renderObject, overpaint, lociApply, true, smoothing);
  340. },
  341. setTransparency(transparency: Transparency, webgl?: WebGLContext) {
  342. const smoothing = { geometry, props: currentProps, webgl };
  343. Visual.setTransparency(renderObject, transparency, lociApply, true, smoothing);
  344. },
  345. setSubstance(substance: Substance, webgl?: WebGLContext) {
  346. const smoothing = { geometry, props: currentProps, webgl };
  347. Visual.setSubstance(renderObject, substance, lociApply, true, smoothing);
  348. },
  349. setClipping(clipping: Clipping) {
  350. Visual.setClipping(renderObject, clipping, lociApply, true);
  351. },
  352. setThemeStrength(strength: { overpaint: number, transparency: number, substance: number }) {
  353. Visual.setThemeStrength(renderObject, strength);
  354. },
  355. destroy() {
  356. dispose?.(geometry);
  357. if (renderObject) {
  358. renderObject.state.disposed = true;
  359. renderObject = undefined;
  360. }
  361. },
  362. mustRecreate
  363. };
  364. }
  365. // mesh
  366. export const UnitsMeshParams = { ...StructureMeshParams, ...StructureParams };
  367. export type UnitsMeshParams = typeof UnitsMeshParams
  368. export interface UnitsMeshVisualBuilder<P extends UnitsMeshParams> extends UnitsVisualBuilder<P, Mesh> { }
  369. export function UnitsMeshVisual<P extends UnitsMeshParams>(builder: UnitsMeshVisualBuilder<P>, materialId: number): UnitsVisual<P> {
  370. return UnitsVisual<Mesh, P>({
  371. ...builder,
  372. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup) => {
  373. builder.setUpdateState(state, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  374. if (!SizeTheme.areEqual(newTheme.size, currentTheme.size)) state.createGeometry = true;
  375. },
  376. geometryUtils: Mesh.Utils
  377. }, materialId);
  378. }
  379. // spheres
  380. export const UnitsSpheresParams = { ...StructureSpheresParams, ...StructureParams };
  381. export type UnitsSpheresParams = typeof UnitsSpheresParams
  382. export interface UnitsSpheresVisualBuilder<P extends UnitsSpheresParams> extends UnitsVisualBuilder<P, Spheres> { }
  383. export function UnitsSpheresVisual<P extends UnitsSpheresParams>(builder: UnitsSpheresVisualBuilder<P>, materialId: number): UnitsVisual<P> {
  384. return UnitsVisual<Spheres, P>({
  385. ...builder,
  386. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup) => {
  387. builder.setUpdateState(state, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  388. if (!SizeTheme.areEqual(newTheme.size, currentTheme.size)) state.updateSize = true;
  389. },
  390. geometryUtils: Spheres.Utils
  391. }, materialId);
  392. }
  393. // cylinders
  394. export const UnitsCylindersParams = { ...StructureCylindersParams, ...StructureParams };
  395. export type UnitsCylindersParams = typeof UnitsCylindersParams
  396. export interface UnitsCylindersVisualBuilder<P extends UnitsCylindersParams> extends UnitsVisualBuilder<P, Cylinders> { }
  397. export function UnitsCylindersVisual<P extends UnitsCylindersParams>(builder: UnitsCylindersVisualBuilder<P>, materialId: number): UnitsVisual<P> {
  398. return UnitsVisual<Cylinders, P>({
  399. ...builder,
  400. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup) => {
  401. builder.setUpdateState(state, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  402. if (!SizeTheme.areEqual(newTheme.size, currentTheme.size)) state.updateSize = true;
  403. },
  404. geometryUtils: Cylinders.Utils
  405. }, materialId);
  406. }
  407. // points
  408. export const UnitsPointsParams = { ...StructurePointsParams, ...StructureParams };
  409. export type UnitsPointsParams = typeof UnitsPointsParams
  410. export interface UnitsPointVisualBuilder<P extends UnitsPointsParams> extends UnitsVisualBuilder<P, Points> { }
  411. export function UnitsPointsVisual<P extends UnitsPointsParams>(builder: UnitsPointVisualBuilder<P>, materialId: number): UnitsVisual<P> {
  412. return UnitsVisual<Points, P>({
  413. ...builder,
  414. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup) => {
  415. builder.setUpdateState(state, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  416. if (!SizeTheme.areEqual(newTheme.size, currentTheme.size)) state.updateSize = true;
  417. },
  418. geometryUtils: Points.Utils
  419. }, materialId);
  420. }
  421. // lines
  422. export const UnitsLinesParams = { ...StructureLinesParams, ...StructureParams };
  423. export type UnitsLinesParams = typeof UnitsLinesParams
  424. export interface UnitsLinesVisualBuilder<P extends UnitsLinesParams> extends UnitsVisualBuilder<P, Lines> { }
  425. export function UnitsLinesVisual<P extends UnitsLinesParams>(builder: UnitsLinesVisualBuilder<P>, materialId: number): UnitsVisual<P> {
  426. return UnitsVisual<Lines, P>({
  427. ...builder,
  428. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup) => {
  429. builder.setUpdateState(state, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  430. if (!SizeTheme.areEqual(newTheme.size, currentTheme.size)) state.updateSize = true;
  431. },
  432. geometryUtils: Lines.Utils
  433. }, materialId);
  434. }
  435. // text
  436. export const UnitsTextParams = { ...StructureTextParams, ...StructureParams };
  437. export type UnitsTextParams = typeof UnitsTextParams
  438. export interface UnitsTextVisualBuilder<P extends UnitsTextParams> extends UnitsVisualBuilder<P, Text> { }
  439. export function UnitsTextVisual<P extends UnitsTextParams>(builder: UnitsTextVisualBuilder<P>, materialId: number): UnitsVisual<P> {
  440. return UnitsVisual<Text, P>({
  441. ...builder,
  442. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup) => {
  443. builder.setUpdateState(state, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  444. if (!SizeTheme.areEqual(newTheme.size, currentTheme.size)) state.updateSize = true;
  445. if (newProps.background !== currentProps.background) state.createGeometry = true;
  446. if (newProps.backgroundMargin !== currentProps.backgroundMargin) state.createGeometry = true;
  447. if (newProps.tether !== currentProps.tether) state.createGeometry = true;
  448. if (newProps.tetherLength !== currentProps.tetherLength) state.createGeometry = true;
  449. if (newProps.tetherBaseWidth !== currentProps.tetherBaseWidth) state.createGeometry = true;
  450. if (newProps.attachment !== currentProps.attachment) state.createGeometry = true;
  451. if (newProps.fontFamily !== currentProps.fontFamily) state.createGeometry = true;
  452. if (newProps.fontQuality !== currentProps.fontQuality) state.createGeometry = true;
  453. if (newProps.fontStyle !== currentProps.fontStyle) state.createGeometry = true;
  454. if (newProps.fontVariant !== currentProps.fontVariant) state.createGeometry = true;
  455. if (newProps.fontWeight !== currentProps.fontWeight) state.createGeometry = true;
  456. },
  457. geometryUtils: Text.Utils
  458. }, materialId);
  459. }
  460. // direct-volume
  461. export const UnitsDirectVolumeParams = { ...StructureDirectVolumeParams, ...StructureParams };
  462. export type UnitsDirectVolumeParams = typeof UnitsDirectVolumeParams
  463. export interface UnitsDirectVolumeVisualBuilder<P extends UnitsDirectVolumeParams> extends UnitsVisualBuilder<P, DirectVolume> { }
  464. export function UnitsDirectVolumeVisual<P extends UnitsDirectVolumeParams>(builder: UnitsDirectVolumeVisualBuilder<P>, materialId: number): UnitsVisual<P> {
  465. return UnitsVisual<DirectVolume, P>({
  466. ...builder,
  467. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup) => {
  468. builder.setUpdateState(state, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  469. if (!SizeTheme.areEqual(newTheme.size, currentTheme.size)) state.createGeometry = true;
  470. },
  471. geometryUtils: DirectVolume.Utils
  472. }, materialId);
  473. }
  474. // texture-mesh
  475. export const UnitsTextureMeshParams = { ...StructureTextureMeshParams, ...StructureParams };
  476. export type UnitsTextureMeshParams = typeof UnitsTextureMeshParams
  477. export interface UnitsTextureMeshVisualBuilder<P extends UnitsTextureMeshParams> extends UnitsVisualBuilder<P, TextureMesh> { }
  478. export function UnitsTextureMeshVisual<P extends UnitsTextureMeshParams>(builder: UnitsTextureMeshVisualBuilder<P>, materialId: number): UnitsVisual<P> {
  479. return UnitsVisual<TextureMesh, P>({
  480. ...builder,
  481. setUpdateState: (state: VisualUpdateState, newProps: PD.Values<P>, currentProps: PD.Values<P>, newTheme: Theme, currentTheme: Theme, newStructureGroup: StructureGroup, currentStructureGroup: StructureGroup) => {
  482. builder.setUpdateState(state, newProps, currentProps, newTheme, currentTheme, newStructureGroup, currentStructureGroup);
  483. if (!SizeTheme.areEqual(newTheme.size, currentTheme.size)) state.createGeometry = true;
  484. },
  485. geometryUtils: TextureMesh.Utils
  486. }, materialId);
  487. }