texture-mesh.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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 { Sphere3D } from '../../../mol-math/geometry';
  8. import { ParamDefinition as PD } from '../../../mol-util/param-definition';
  9. import { LocationIterator, PositionLocation } from '../../../mol-geo/util/location-iterator';
  10. import { TransformData } from '../transform-data';
  11. import { createColors } from '../color-data';
  12. import { createMarkers } from '../marker-data';
  13. import { GeometryUtils } from '../geometry';
  14. import { Theme } from '../../../mol-theme/theme';
  15. import { Color } from '../../../mol-util/color';
  16. import { BaseGeometry } from '../base';
  17. import { createEmptyOverpaint } from '../overpaint-data';
  18. import { createEmptyTransparency } from '../transparency-data';
  19. import { TextureMeshValues } from '../../../mol-gl/renderable/texture-mesh';
  20. import { calculateTransformBoundingSphere } from '../../../mol-gl/renderable/util';
  21. import { createNullTexture, Texture } from '../../../mol-gl/webgl/texture';
  22. import { Vec2, Vec3, Vec4 } from '../../../mol-math/linear-algebra';
  23. import { createEmptyClipping } from '../clipping-data';
  24. import { NullLocation } from '../../../mol-model/location';
  25. import { createEmptySubstance } from '../substance-data';
  26. import { RenderableState } from '../../../mol-gl/renderable';
  27. import { WebGLContext } from '../../../mol-gl/webgl/context';
  28. export interface TextureMesh {
  29. readonly kind: 'texture-mesh',
  30. /** Number of vertices in the texture-mesh */
  31. vertexCount: number,
  32. /** Number of groups in the texture-mesh */
  33. groupCount: number,
  34. readonly geoTextureDim: ValueCell<Vec2>,
  35. readonly vertexTexture: ValueCell<Texture>,
  36. readonly groupTexture: ValueCell<Texture>,
  37. readonly normalTexture: ValueCell<Texture>,
  38. readonly varyingGroup: ValueCell<boolean>,
  39. readonly doubleBuffer: TextureMesh.DoubleBuffer
  40. readonly boundingSphere: Sphere3D
  41. readonly meta: {
  42. webgl?: WebGLContext
  43. [k: string]: unknown
  44. }
  45. }
  46. export namespace TextureMesh {
  47. export class DoubleBuffer {
  48. private index = 0;
  49. private textures: ({ vertex: Texture, group: Texture, normal: Texture } | undefined)[] = [];
  50. get() {
  51. return this.textures[this.index];
  52. }
  53. set(vertex: Texture, group: Texture, normal: Texture) {
  54. this.textures[this.index] = Object.assign(this.textures[this.index] || {}, {
  55. vertex, group, normal
  56. });
  57. this.index = (this.index + 1) % 2;
  58. }
  59. destroy() {
  60. for (const buffer of this.textures) {
  61. buffer!.vertex.destroy();
  62. buffer!.group.destroy();
  63. buffer!.normal.destroy();
  64. }
  65. }
  66. }
  67. export function create(vertexCount: number, groupCount: number, vertexTexture: Texture, groupTexture: Texture, normalTexture: Texture, boundingSphere: Sphere3D, textureMesh?: TextureMesh): TextureMesh {
  68. const width = vertexTexture.getWidth();
  69. const height = vertexTexture.getHeight();
  70. if (textureMesh) {
  71. textureMesh.vertexCount = vertexCount;
  72. textureMesh.groupCount = groupCount;
  73. ValueCell.update(textureMesh.geoTextureDim, Vec2.set(textureMesh.geoTextureDim.ref.value, width, height));
  74. ValueCell.update(textureMesh.vertexTexture, vertexTexture);
  75. ValueCell.update(textureMesh.groupTexture, groupTexture);
  76. ValueCell.update(textureMesh.normalTexture, normalTexture);
  77. textureMesh.doubleBuffer.set(vertexTexture, groupTexture, normalTexture);
  78. Sphere3D.copy(textureMesh.boundingSphere, boundingSphere);
  79. return textureMesh;
  80. } else {
  81. return {
  82. kind: 'texture-mesh',
  83. vertexCount,
  84. groupCount,
  85. geoTextureDim: ValueCell.create(Vec2.create(width, height)),
  86. vertexTexture: ValueCell.create(vertexTexture),
  87. groupTexture: ValueCell.create(groupTexture),
  88. normalTexture: ValueCell.create(normalTexture),
  89. varyingGroup: ValueCell.create(false),
  90. doubleBuffer: new DoubleBuffer(),
  91. boundingSphere: Sphere3D.clone(boundingSphere),
  92. meta: {}
  93. };
  94. }
  95. }
  96. export function createEmpty(textureMesh?: TextureMesh): TextureMesh {
  97. const vt = textureMesh ? textureMesh.vertexTexture.ref.value : createNullTexture();
  98. const gt = textureMesh ? textureMesh.groupTexture.ref.value : createNullTexture();
  99. const nt = textureMesh ? textureMesh.normalTexture.ref.value : createNullTexture();
  100. const bs = textureMesh ? textureMesh.boundingSphere : Sphere3D();
  101. return create(0, 0, vt, gt, nt, bs, textureMesh);
  102. }
  103. export const Params = {
  104. ...BaseGeometry.Params,
  105. doubleSided: PD.Boolean(false, BaseGeometry.CustomQualityParamInfo),
  106. flipSided: PD.Boolean(false, BaseGeometry.ShadingCategory),
  107. flatShaded: PD.Boolean(false, BaseGeometry.ShadingCategory),
  108. ignoreLight: PD.Boolean(false, BaseGeometry.ShadingCategory),
  109. xrayShaded: PD.Select<boolean | 'inverted'>(false, [[false, 'Off'], [true, 'On'], ['inverted', 'Inverted']], BaseGeometry.ShadingCategory),
  110. transparentBackfaces: PD.Select('off', PD.arrayToOptions(['off', 'on', 'opaque'] as const), BaseGeometry.ShadingCategory),
  111. bumpFrequency: PD.Numeric(0, { min: 0, max: 10, step: 0.1 }, BaseGeometry.ShadingCategory),
  112. bumpAmplitude: PD.Numeric(1, { min: 0, max: 5, step: 0.1 }, BaseGeometry.ShadingCategory),
  113. };
  114. export type Params = typeof Params
  115. export const Utils: GeometryUtils<TextureMesh, Params> = {
  116. Params,
  117. createEmpty,
  118. createValues,
  119. createValuesSimple,
  120. updateValues,
  121. updateBoundingSphere,
  122. createRenderableState,
  123. updateRenderableState,
  124. createPositionIterator,
  125. };
  126. const TextureMeshName = 'texture-mesh';
  127. function createPositionIterator(textureMesh: TextureMesh, transform: TransformData): LocationIterator {
  128. const webgl = textureMesh.meta.webgl;
  129. if (!webgl) return LocationIterator(1, 1, 1, () => NullLocation);
  130. if (!webgl.namedFramebuffers[TextureMeshName]) {
  131. webgl.namedFramebuffers[TextureMeshName] = webgl.resources.framebuffer();
  132. }
  133. const framebuffer = webgl.namedFramebuffers[TextureMeshName];
  134. const [width, height] = textureMesh.geoTextureDim.ref.value;
  135. const vertices = new Float32Array(width * height * 4);
  136. framebuffer.bind();
  137. textureMesh.vertexTexture.ref.value.attachFramebuffer(framebuffer, 0);
  138. webgl.readPixels(0, 0, width, height, vertices);
  139. const groupCount = textureMesh.vertexCount;
  140. const instanceCount = transform.instanceCount.ref.value;
  141. const location = PositionLocation();
  142. const p = location.position;
  143. const v = vertices;
  144. const m = transform.aTransform.ref.value;
  145. const getLocation = (groupIndex: number, instanceIndex: number) => {
  146. if (instanceIndex < 0) {
  147. Vec3.fromArray(p, v, groupIndex * 4);
  148. } else {
  149. Vec3.transformMat4Offset(p, v, m, 0, groupIndex * 4, instanceIndex * 16);
  150. }
  151. return location;
  152. };
  153. return LocationIterator(groupCount, instanceCount, 1, getLocation);
  154. }
  155. function createValues(textureMesh: TextureMesh, transform: TransformData, locationIt: LocationIterator, theme: Theme, props: PD.Values<Params>): TextureMeshValues {
  156. const { instanceCount, groupCount } = locationIt;
  157. const positionIt = Utils.createPositionIterator(textureMesh, transform);
  158. const color = createColors(locationIt, positionIt, theme.color);
  159. const marker = props.instanceGranularity
  160. ? createMarkers(instanceCount, 'instance')
  161. : createMarkers(instanceCount * groupCount, 'groupInstance');
  162. const overpaint = createEmptyOverpaint();
  163. const transparency = createEmptyTransparency();
  164. const substance = createEmptySubstance();
  165. const clipping = createEmptyClipping();
  166. const counts = { drawCount: textureMesh.vertexCount, vertexCount: textureMesh.vertexCount, groupCount, instanceCount };
  167. const invariantBoundingSphere = Sphere3D.clone(textureMesh.boundingSphere);
  168. const boundingSphere = calculateTransformBoundingSphere(invariantBoundingSphere, transform.aTransform.ref.value, instanceCount, 0);
  169. return {
  170. dGeometryType: ValueCell.create('textureMesh'),
  171. uGeoTexDim: textureMesh.geoTextureDim,
  172. tPosition: textureMesh.vertexTexture,
  173. tGroup: textureMesh.groupTexture,
  174. tNormal: textureMesh.normalTexture,
  175. dVaryingGroup: textureMesh.varyingGroup,
  176. boundingSphere: ValueCell.create(boundingSphere),
  177. invariantBoundingSphere: ValueCell.create(invariantBoundingSphere),
  178. uInvariantBoundingSphere: ValueCell.create(Vec4.ofSphere(invariantBoundingSphere)),
  179. ...color,
  180. ...marker,
  181. ...overpaint,
  182. ...transparency,
  183. ...substance,
  184. ...clipping,
  185. ...transform,
  186. ...BaseGeometry.createValues(props, counts),
  187. uDoubleSided: ValueCell.create(props.doubleSided),
  188. dFlatShaded: ValueCell.create(props.flatShaded),
  189. dFlipSided: ValueCell.create(props.flipSided),
  190. dIgnoreLight: ValueCell.create(props.ignoreLight),
  191. dXrayShaded: ValueCell.create(props.xrayShaded === 'inverted' ? 'inverted' : props.xrayShaded === true ? 'on' : 'off'),
  192. dTransparentBackfaces: ValueCell.create(props.transparentBackfaces),
  193. uBumpFrequency: ValueCell.create(props.bumpFrequency),
  194. uBumpAmplitude: ValueCell.create(props.bumpAmplitude),
  195. meta: ValueCell.create(textureMesh.meta),
  196. };
  197. }
  198. function createValuesSimple(textureMesh: TextureMesh, props: Partial<PD.Values<Params>>, colorValue: Color, sizeValue: number, transform?: TransformData) {
  199. const s = BaseGeometry.createSimple(colorValue, sizeValue, transform);
  200. const p = { ...PD.getDefaultValues(Params), ...props };
  201. return createValues(textureMesh, s.transform, s.locationIterator, s.theme, p);
  202. }
  203. function updateValues(values: TextureMeshValues, props: PD.Values<Params>) {
  204. BaseGeometry.updateValues(values, props);
  205. ValueCell.updateIfChanged(values.uDoubleSided, props.doubleSided);
  206. ValueCell.updateIfChanged(values.dFlatShaded, props.flatShaded);
  207. ValueCell.updateIfChanged(values.dFlipSided, props.flipSided);
  208. ValueCell.updateIfChanged(values.dIgnoreLight, props.ignoreLight);
  209. ValueCell.updateIfChanged(values.dXrayShaded, props.xrayShaded === 'inverted' ? 'inverted' : props.xrayShaded === true ? 'on' : 'off');
  210. ValueCell.updateIfChanged(values.dTransparentBackfaces, props.transparentBackfaces);
  211. ValueCell.updateIfChanged(values.uBumpFrequency, props.bumpFrequency);
  212. ValueCell.updateIfChanged(values.uBumpAmplitude, props.bumpAmplitude);
  213. }
  214. function updateBoundingSphere(values: TextureMeshValues, textureMesh: TextureMesh) {
  215. const invariantBoundingSphere = Sphere3D.clone(textureMesh.boundingSphere);
  216. const boundingSphere = calculateTransformBoundingSphere(invariantBoundingSphere, values.aTransform.ref.value, values.instanceCount.ref.value, 0);
  217. if (!Sphere3D.equals(boundingSphere, values.boundingSphere.ref.value)) {
  218. ValueCell.update(values.boundingSphere, boundingSphere);
  219. }
  220. if (!Sphere3D.equals(invariantBoundingSphere, values.invariantBoundingSphere.ref.value)) {
  221. ValueCell.update(values.invariantBoundingSphere, invariantBoundingSphere);
  222. ValueCell.update(values.uInvariantBoundingSphere, Vec4.fromSphere(values.uInvariantBoundingSphere.ref.value, invariantBoundingSphere));
  223. }
  224. }
  225. function createRenderableState(props: PD.Values<Params>): RenderableState {
  226. const state = BaseGeometry.createRenderableState(props);
  227. updateRenderableState(state, props);
  228. return state;
  229. }
  230. function updateRenderableState(state: RenderableState, props: PD.Values<Params>) {
  231. BaseGeometry.updateRenderableState(state, props);
  232. state.opaque = state.opaque && !props.xrayShaded;
  233. state.writeDepth = state.opaque;
  234. }
  235. }