spheres.ts 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /**
  2. * Copyright (c) 2019-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. */
  6. import { ValueCell } from '../../../mol-util';
  7. import { GeometryUtils } from '../geometry';
  8. import { ParamDefinition as PD } from '../../../mol-util/param-definition';
  9. import { TransformData } from '../transform-data';
  10. import { LocationIterator, PositionLocation } from '../../../mol-geo/util/location-iterator';
  11. import { Theme } from '../../../mol-theme/theme';
  12. import { SpheresValues } from '../../../mol-gl/renderable/spheres';
  13. import { createColors } from '../color-data';
  14. import { createMarkers } from '../marker-data';
  15. import { TextureImage, calculateInvariantBoundingSphere, calculateTransformBoundingSphere, createTextureImage } from '../../../mol-gl/renderable/util';
  16. import { Sphere3D } from '../../../mol-math/geometry';
  17. import { createSizes, getMaxSize } from '../size-data';
  18. import { Color } from '../../../mol-util/color';
  19. import { BaseGeometry } from '../base';
  20. import { createEmptyOverpaint } from '../overpaint-data';
  21. import { createEmptyTransparency } from '../transparency-data';
  22. import { hashFnv32a } from '../../../mol-data/util';
  23. import { GroupMapping, createGroupMapping } from '../../util';
  24. import { createEmptyClipping } from '../clipping-data';
  25. import { Vec2, Vec3, Vec4 } from '../../../mol-math/linear-algebra';
  26. import { RenderableState } from '../../../mol-gl/renderable';
  27. import { createEmptySubstance } from '../substance-data';
  28. export interface Spheres {
  29. readonly kind: 'spheres',
  30. /** Number of spheres */
  31. sphereCount: number,
  32. /** Center buffer as array of xyz values wrapped in a value cell */
  33. readonly centerBuffer: ValueCell<Float32Array>,
  34. /** Group buffer as array of group ids for each vertex wrapped in a value cell */
  35. readonly groupBuffer: ValueCell<Float32Array>,
  36. /** Bounding sphere of the spheres */
  37. readonly boundingSphere: Sphere3D
  38. /** Maps group ids to sphere indices */
  39. readonly groupMapping: GroupMapping
  40. setBoundingSphere(boundingSphere: Sphere3D): void
  41. shaderData: Spheres.ShaderData
  42. }
  43. export namespace Spheres {
  44. export interface ShaderData {
  45. readonly positionGroup: ValueCell<TextureImage<Float32Array>>
  46. readonly texDim: ValueCell<Vec2>
  47. update(): void
  48. }
  49. export function create(centers: Float32Array, groups: Float32Array, sphereCount: number, spheres?: Spheres): Spheres {
  50. return spheres ?
  51. update(centers, groups, sphereCount, spheres) :
  52. fromArrays(centers, groups, sphereCount);
  53. }
  54. export function createEmpty(spheres?: Spheres): Spheres {
  55. const cb = spheres ? spheres.centerBuffer.ref.value : new Float32Array(0);
  56. const gb = spheres ? spheres.groupBuffer.ref.value : new Float32Array(0);
  57. return create(cb, gb, 0, spheres);
  58. }
  59. function hashCode(spheres: Spheres) {
  60. return hashFnv32a([
  61. spheres.sphereCount,
  62. spheres.centerBuffer.ref.version,
  63. spheres.groupBuffer.ref.version
  64. ]);
  65. }
  66. function fromArrays(centers: Float32Array, groups: Float32Array, sphereCount: number): Spheres {
  67. const boundingSphere = Sphere3D();
  68. let groupMapping: GroupMapping;
  69. let currentHash = -1;
  70. let currentGroup = -1;
  71. const positionGroup = ValueCell.create(createTextureImage(1, 4, Float32Array));
  72. const texDim = ValueCell.create(Vec2.create(0, 0));
  73. const spheres = {
  74. kind: 'spheres' as const,
  75. sphereCount,
  76. centerBuffer: ValueCell.create(centers),
  77. groupBuffer: ValueCell.create(groups),
  78. get boundingSphere() {
  79. const newHash = hashCode(spheres);
  80. if (newHash !== currentHash) {
  81. const b = calculateInvariantBoundingSphere(spheres.centerBuffer.ref.value, spheres.sphereCount * 4, 4);
  82. Sphere3D.copy(boundingSphere, b);
  83. currentHash = newHash;
  84. }
  85. return boundingSphere;
  86. },
  87. get groupMapping() {
  88. if (spheres.groupBuffer.ref.version !== currentGroup) {
  89. groupMapping = createGroupMapping(spheres.groupBuffer.ref.value, spheres.sphereCount, 4);
  90. currentGroup = spheres.groupBuffer.ref.version;
  91. }
  92. return groupMapping;
  93. },
  94. setBoundingSphere(sphere: Sphere3D) {
  95. Sphere3D.copy(boundingSphere, sphere);
  96. currentHash = hashCode(spheres);
  97. },
  98. shaderData: {
  99. positionGroup,
  100. texDim,
  101. update() {
  102. const pgt = createTextureImage(spheres.sphereCount, 4, Float32Array, positionGroup.ref.value.array);
  103. setPositionGroup(pgt, spheres.centerBuffer.ref.value, spheres.groupBuffer.ref.value, spheres.sphereCount);
  104. ValueCell.update(positionGroup, pgt);
  105. ValueCell.update(texDim, Vec2.set(texDim.ref.value, pgt.width, pgt.height));
  106. }
  107. },
  108. };
  109. return spheres;
  110. }
  111. function update(centers: Float32Array, groups: Float32Array, sphereCount: number, spheres: Spheres) {
  112. spheres.sphereCount = sphereCount;
  113. ValueCell.update(spheres.centerBuffer, centers);
  114. ValueCell.update(spheres.groupBuffer, groups);
  115. spheres.shaderData.update();
  116. return spheres;
  117. }
  118. function setPositionGroup(out: TextureImage<Float32Array>, centers: Float32Array, groups: Float32Array, count: number) {
  119. const { array } = out;
  120. for (let i = 0; i < count; ++i) {
  121. array[i * 4 + 0] = centers[i * 3 + 0];
  122. array[i * 4 + 1] = centers[i * 3 + 1];
  123. array[i * 4 + 2] = centers[i * 3 + 2];
  124. array[i * 4 + 3] = groups[i];
  125. }
  126. }
  127. export const Params = {
  128. ...BaseGeometry.Params,
  129. sizeFactor: PD.Numeric(1, { min: 0, max: 10, step: 0.1 }),
  130. doubleSided: PD.Boolean(false, BaseGeometry.CustomQualityParamInfo),
  131. ignoreLight: PD.Boolean(false, BaseGeometry.ShadingCategory),
  132. xrayShaded: PD.Select<boolean | 'inverted'>(false, [[false, 'Off'], [true, 'On'], ['inverted', 'Inverted']], BaseGeometry.ShadingCategory),
  133. transparentBackfaces: PD.Select('off', PD.arrayToOptions(['off', 'on', 'opaque'] as const), BaseGeometry.ShadingCategory),
  134. solidInterior: PD.Boolean(true, BaseGeometry.ShadingCategory),
  135. clipPrimitive: PD.Boolean(false, { ...BaseGeometry.ShadingCategory, description: 'Clip whole sphere instead of cutting it.' }),
  136. approximate: PD.Boolean(false, { ...BaseGeometry.ShadingCategory, description: 'Faster rendering, but has artifacts.' }),
  137. alphaThickness: PD.Numeric(0, { min: 0, max: 20, step: 1 }, { ...BaseGeometry.ShadingCategory, description: 'If not zero, adjusts alpha for radius.' }),
  138. bumpFrequency: PD.Numeric(0, { min: 0, max: 10, step: 0.1 }, BaseGeometry.ShadingCategory),
  139. bumpAmplitude: PD.Numeric(1, { min: 0, max: 5, step: 0.1 }, BaseGeometry.ShadingCategory),
  140. };
  141. export type Params = typeof Params
  142. export const Utils: GeometryUtils<Spheres, Params> = {
  143. Params,
  144. createEmpty,
  145. createValues,
  146. createValuesSimple,
  147. updateValues,
  148. updateBoundingSphere,
  149. createRenderableState,
  150. updateRenderableState,
  151. createPositionIterator
  152. };
  153. function createPositionIterator(spheres: Spheres, transform: TransformData): LocationIterator {
  154. const groupCount = spheres.sphereCount;
  155. const instanceCount = transform.instanceCount.ref.value;
  156. const location = PositionLocation();
  157. const p = location.position;
  158. const v = spheres.centerBuffer.ref.value;
  159. const m = transform.aTransform.ref.value;
  160. const getLocation = (groupIndex: number, instanceIndex: number) => {
  161. if (instanceIndex < 0) {
  162. Vec3.fromArray(p, v, groupIndex * 3);
  163. } else {
  164. Vec3.transformMat4Offset(p, v, m, 0, groupIndex * 3, instanceIndex * 16);
  165. }
  166. return location;
  167. };
  168. return LocationIterator(groupCount, instanceCount, 1, getLocation);
  169. }
  170. function createValues(spheres: Spheres, transform: TransformData, locationIt: LocationIterator, theme: Theme, props: PD.Values<Params>): SpheresValues {
  171. const { instanceCount, groupCount } = locationIt;
  172. const positionIt = createPositionIterator(spheres, transform);
  173. const color = createColors(locationIt, positionIt, theme.color);
  174. const size = createSizes(locationIt, theme.size);
  175. const marker = props.instanceGranularity
  176. ? createMarkers(instanceCount, 'instance')
  177. : createMarkers(instanceCount * groupCount, 'groupInstance');
  178. const overpaint = createEmptyOverpaint();
  179. const transparency = createEmptyTransparency();
  180. const material = createEmptySubstance();
  181. const clipping = createEmptyClipping();
  182. const counts = { drawCount: spheres.sphereCount * 2 * 3, vertexCount: spheres.sphereCount * 6, groupCount, instanceCount };
  183. const padding = spheres.boundingSphere.radius ? getMaxSize(size) * props.sizeFactor : 0;
  184. const invariantBoundingSphere = Sphere3D.expand(Sphere3D(), spheres.boundingSphere, padding);
  185. const boundingSphere = calculateTransformBoundingSphere(invariantBoundingSphere, transform.aTransform.ref.value, instanceCount, 0);
  186. spheres.shaderData.update();
  187. return {
  188. dGeometryType: ValueCell.create('spheres'),
  189. uTexDim: spheres.shaderData.texDim,
  190. tPositionGroup: spheres.shaderData.positionGroup,
  191. boundingSphere: ValueCell.create(boundingSphere),
  192. invariantBoundingSphere: ValueCell.create(invariantBoundingSphere),
  193. uInvariantBoundingSphere: ValueCell.create(Vec4.ofSphere(invariantBoundingSphere)),
  194. ...color,
  195. ...size,
  196. ...marker,
  197. ...overpaint,
  198. ...transparency,
  199. ...material,
  200. ...clipping,
  201. ...transform,
  202. padding: ValueCell.create(padding),
  203. ...BaseGeometry.createValues(props, counts),
  204. uSizeFactor: ValueCell.create(props.sizeFactor),
  205. uDoubleSided: ValueCell.create(props.doubleSided),
  206. dIgnoreLight: ValueCell.create(props.ignoreLight),
  207. dXrayShaded: ValueCell.create(props.xrayShaded === 'inverted' ? 'inverted' : props.xrayShaded === true ? 'on' : 'off'),
  208. dTransparentBackfaces: ValueCell.create(props.transparentBackfaces),
  209. dSolidInterior: ValueCell.create(props.solidInterior),
  210. dClipPrimitive: ValueCell.create(props.clipPrimitive),
  211. dApproximate: ValueCell.create(props.approximate),
  212. uAlphaThickness: ValueCell.create(props.alphaThickness),
  213. uBumpFrequency: ValueCell.create(props.bumpFrequency),
  214. uBumpAmplitude: ValueCell.create(props.bumpAmplitude),
  215. centerBuffer: spheres.centerBuffer,
  216. groupBuffer: spheres.groupBuffer,
  217. };
  218. }
  219. function createValuesSimple(spheres: Spheres, props: Partial<PD.Values<Params>>, colorValue: Color, sizeValue: number, transform?: TransformData) {
  220. const s = BaseGeometry.createSimple(colorValue, sizeValue, transform);
  221. const p = { ...PD.getDefaultValues(Params), ...props };
  222. return createValues(spheres, s.transform, s.locationIterator, s.theme, p);
  223. }
  224. function updateValues(values: SpheresValues, props: PD.Values<Params>) {
  225. BaseGeometry.updateValues(values, props);
  226. ValueCell.updateIfChanged(values.uSizeFactor, props.sizeFactor);
  227. ValueCell.updateIfChanged(values.uDoubleSided, props.doubleSided);
  228. ValueCell.updateIfChanged(values.dIgnoreLight, props.ignoreLight);
  229. ValueCell.updateIfChanged(values.dXrayShaded, props.xrayShaded === 'inverted' ? 'inverted' : props.xrayShaded === true ? 'on' : 'off');
  230. ValueCell.updateIfChanged(values.dTransparentBackfaces, props.transparentBackfaces);
  231. ValueCell.updateIfChanged(values.dSolidInterior, props.solidInterior);
  232. ValueCell.updateIfChanged(values.dClipPrimitive, props.clipPrimitive);
  233. ValueCell.updateIfChanged(values.dApproximate, props.approximate);
  234. ValueCell.updateIfChanged(values.uAlphaThickness, props.alphaThickness);
  235. ValueCell.updateIfChanged(values.uBumpFrequency, props.bumpFrequency);
  236. ValueCell.updateIfChanged(values.uBumpAmplitude, props.bumpAmplitude);
  237. }
  238. function updateBoundingSphere(values: SpheresValues, spheres: Spheres) {
  239. const padding = spheres.boundingSphere.radius
  240. ? getMaxSize(values) * values.uSizeFactor.ref.value
  241. : 0;
  242. const invariantBoundingSphere = Sphere3D.expand(Sphere3D(), spheres.boundingSphere, padding);
  243. const boundingSphere = calculateTransformBoundingSphere(invariantBoundingSphere, values.aTransform.ref.value, values.instanceCount.ref.value, 0);
  244. if (!Sphere3D.equals(boundingSphere, values.boundingSphere.ref.value)) {
  245. ValueCell.update(values.boundingSphere, boundingSphere);
  246. }
  247. if (!Sphere3D.equals(invariantBoundingSphere, values.invariantBoundingSphere.ref.value)) {
  248. ValueCell.update(values.invariantBoundingSphere, invariantBoundingSphere);
  249. ValueCell.update(values.uInvariantBoundingSphere, Vec4.fromSphere(values.uInvariantBoundingSphere.ref.value, invariantBoundingSphere));
  250. }
  251. ValueCell.update(values.padding, padding);
  252. }
  253. function createRenderableState(props: PD.Values<Params>): RenderableState {
  254. const state = BaseGeometry.createRenderableState(props);
  255. updateRenderableState(state, props);
  256. return state;
  257. }
  258. function updateRenderableState(state: RenderableState, props: PD.Values<Params>) {
  259. BaseGeometry.updateRenderableState(state, props);
  260. state.opaque = state.opaque && !props.xrayShaded;
  261. state.writeDepth = state.opaque;
  262. }
  263. }