123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- /**
- * Copyright (c) 2019-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import { ValueCell } from '../../../mol-util';
- import { GeometryUtils } from '../geometry';
- import { ParamDefinition as PD } from '../../../mol-util/param-definition';
- import { TransformData } from '../transform-data';
- import { LocationIterator, PositionLocation } from '../../../mol-geo/util/location-iterator';
- import { Theme } from '../../../mol-theme/theme';
- import { SpheresValues } from '../../../mol-gl/renderable/spheres';
- import { createColors } from '../color-data';
- import { createMarkers } from '../marker-data';
- import { TextureImage, calculateInvariantBoundingSphere, calculateTransformBoundingSphere, createTextureImage } from '../../../mol-gl/renderable/util';
- import { Sphere3D } from '../../../mol-math/geometry';
- import { createSizes, getMaxSize } from '../size-data';
- import { Color } from '../../../mol-util/color';
- import { BaseGeometry } from '../base';
- import { createEmptyOverpaint } from '../overpaint-data';
- import { createEmptyTransparency } from '../transparency-data';
- import { hashFnv32a } from '../../../mol-data/util';
- import { GroupMapping, createGroupMapping } from '../../util';
- import { createEmptyClipping } from '../clipping-data';
- import { Vec2, Vec3, Vec4 } from '../../../mol-math/linear-algebra';
- import { RenderableState } from '../../../mol-gl/renderable';
- import { createEmptySubstance } from '../substance-data';
- export interface Spheres {
- readonly kind: 'spheres',
- /** Number of spheres */
- sphereCount: number,
- /** Center buffer as array of xyz values wrapped in a value cell */
- readonly centerBuffer: ValueCell<Float32Array>,
- /** Group buffer as array of group ids for each vertex wrapped in a value cell */
- readonly groupBuffer: ValueCell<Float32Array>,
- /** Bounding sphere of the spheres */
- readonly boundingSphere: Sphere3D
- /** Maps group ids to sphere indices */
- readonly groupMapping: GroupMapping
- setBoundingSphere(boundingSphere: Sphere3D): void
- shaderData: Spheres.ShaderData
- }
- export namespace Spheres {
- export interface ShaderData {
- readonly positionGroup: ValueCell<TextureImage<Float32Array>>
- readonly texDim: ValueCell<Vec2>
- update(): void
- }
- export function create(centers: Float32Array, groups: Float32Array, sphereCount: number, spheres?: Spheres): Spheres {
- return spheres ?
- update(centers, groups, sphereCount, spheres) :
- fromArrays(centers, groups, sphereCount);
- }
- export function createEmpty(spheres?: Spheres): Spheres {
- const cb = spheres ? spheres.centerBuffer.ref.value : new Float32Array(0);
- const gb = spheres ? spheres.groupBuffer.ref.value : new Float32Array(0);
- return create(cb, gb, 0, spheres);
- }
- function hashCode(spheres: Spheres) {
- return hashFnv32a([
- spheres.sphereCount,
- spheres.centerBuffer.ref.version,
- spheres.groupBuffer.ref.version
- ]);
- }
- function fromArrays(centers: Float32Array, groups: Float32Array, sphereCount: number): Spheres {
- const boundingSphere = Sphere3D();
- let groupMapping: GroupMapping;
- let currentHash = -1;
- let currentGroup = -1;
- const positionGroup = ValueCell.create(createTextureImage(1, 4, Float32Array));
- const texDim = ValueCell.create(Vec2.create(0, 0));
- const spheres = {
- kind: 'spheres' as const,
- sphereCount,
- centerBuffer: ValueCell.create(centers),
- groupBuffer: ValueCell.create(groups),
- get boundingSphere() {
- const newHash = hashCode(spheres);
- if (newHash !== currentHash) {
- const b = calculateInvariantBoundingSphere(spheres.centerBuffer.ref.value, spheres.sphereCount * 4, 4);
- Sphere3D.copy(boundingSphere, b);
- currentHash = newHash;
- }
- return boundingSphere;
- },
- get groupMapping() {
- if (spheres.groupBuffer.ref.version !== currentGroup) {
- groupMapping = createGroupMapping(spheres.groupBuffer.ref.value, spheres.sphereCount, 4);
- currentGroup = spheres.groupBuffer.ref.version;
- }
- return groupMapping;
- },
- setBoundingSphere(sphere: Sphere3D) {
- Sphere3D.copy(boundingSphere, sphere);
- currentHash = hashCode(spheres);
- },
- shaderData: {
- positionGroup,
- texDim,
- update() {
- const pgt = createTextureImage(spheres.sphereCount, 4, Float32Array, positionGroup.ref.value.array);
- setPositionGroup(pgt, spheres.centerBuffer.ref.value, spheres.groupBuffer.ref.value, spheres.sphereCount);
- ValueCell.update(positionGroup, pgt);
- ValueCell.update(texDim, Vec2.set(texDim.ref.value, pgt.width, pgt.height));
- }
- },
- };
- return spheres;
- }
- function update(centers: Float32Array, groups: Float32Array, sphereCount: number, spheres: Spheres) {
- spheres.sphereCount = sphereCount;
- ValueCell.update(spheres.centerBuffer, centers);
- ValueCell.update(spheres.groupBuffer, groups);
- spheres.shaderData.update();
- return spheres;
- }
- function setPositionGroup(out: TextureImage<Float32Array>, centers: Float32Array, groups: Float32Array, count: number) {
- const { array } = out;
- for (let i = 0; i < count; ++i) {
- array[i * 4 + 0] = centers[i * 3 + 0];
- array[i * 4 + 1] = centers[i * 3 + 1];
- array[i * 4 + 2] = centers[i * 3 + 2];
- array[i * 4 + 3] = groups[i];
- }
- }
- export const Params = {
- ...BaseGeometry.Params,
- sizeFactor: PD.Numeric(1, { min: 0, max: 10, step: 0.1 }),
- doubleSided: PD.Boolean(false, BaseGeometry.CustomQualityParamInfo),
- ignoreLight: PD.Boolean(false, BaseGeometry.ShadingCategory),
- xrayShaded: PD.Select<boolean | 'inverted'>(false, [[false, 'Off'], [true, 'On'], ['inverted', 'Inverted']], BaseGeometry.ShadingCategory),
- transparentBackfaces: PD.Select('off', PD.arrayToOptions(['off', 'on', 'opaque'] as const), BaseGeometry.ShadingCategory),
- solidInterior: PD.Boolean(true, BaseGeometry.ShadingCategory),
- clipPrimitive: PD.Boolean(false, { ...BaseGeometry.ShadingCategory, description: 'Clip whole sphere instead of cutting it.' }),
- approximate: PD.Boolean(false, { ...BaseGeometry.ShadingCategory, description: 'Faster rendering, but has artifacts.' }),
- alphaThickness: PD.Numeric(0, { min: 0, max: 20, step: 1 }, { ...BaseGeometry.ShadingCategory, description: 'If not zero, adjusts alpha for radius.' }),
- bumpFrequency: PD.Numeric(0, { min: 0, max: 10, step: 0.1 }, BaseGeometry.ShadingCategory),
- bumpAmplitude: PD.Numeric(1, { min: 0, max: 5, step: 0.1 }, BaseGeometry.ShadingCategory),
- };
- export type Params = typeof Params
- export const Utils: GeometryUtils<Spheres, Params> = {
- Params,
- createEmpty,
- createValues,
- createValuesSimple,
- updateValues,
- updateBoundingSphere,
- createRenderableState,
- updateRenderableState,
- createPositionIterator
- };
- function createPositionIterator(spheres: Spheres, transform: TransformData): LocationIterator {
- const groupCount = spheres.sphereCount;
- const instanceCount = transform.instanceCount.ref.value;
- const location = PositionLocation();
- const p = location.position;
- const v = spheres.centerBuffer.ref.value;
- const m = transform.aTransform.ref.value;
- const getLocation = (groupIndex: number, instanceIndex: number) => {
- if (instanceIndex < 0) {
- Vec3.fromArray(p, v, groupIndex * 3);
- } else {
- Vec3.transformMat4Offset(p, v, m, 0, groupIndex * 3, instanceIndex * 16);
- }
- return location;
- };
- return LocationIterator(groupCount, instanceCount, 1, getLocation);
- }
- function createValues(spheres: Spheres, transform: TransformData, locationIt: LocationIterator, theme: Theme, props: PD.Values<Params>): SpheresValues {
- const { instanceCount, groupCount } = locationIt;
- const positionIt = createPositionIterator(spheres, transform);
- const color = createColors(locationIt, positionIt, theme.color);
- const size = createSizes(locationIt, theme.size);
- const marker = props.instanceGranularity
- ? createMarkers(instanceCount, 'instance')
- : createMarkers(instanceCount * groupCount, 'groupInstance');
- const overpaint = createEmptyOverpaint();
- const transparency = createEmptyTransparency();
- const material = createEmptySubstance();
- const clipping = createEmptyClipping();
- const counts = { drawCount: spheres.sphereCount * 2 * 3, vertexCount: spheres.sphereCount * 6, groupCount, instanceCount };
- const padding = spheres.boundingSphere.radius ? getMaxSize(size) * props.sizeFactor : 0;
- const invariantBoundingSphere = Sphere3D.expand(Sphere3D(), spheres.boundingSphere, padding);
- const boundingSphere = calculateTransformBoundingSphere(invariantBoundingSphere, transform.aTransform.ref.value, instanceCount, 0);
- spheres.shaderData.update();
- return {
- dGeometryType: ValueCell.create('spheres'),
- uTexDim: spheres.shaderData.texDim,
- tPositionGroup: spheres.shaderData.positionGroup,
- boundingSphere: ValueCell.create(boundingSphere),
- invariantBoundingSphere: ValueCell.create(invariantBoundingSphere),
- uInvariantBoundingSphere: ValueCell.create(Vec4.ofSphere(invariantBoundingSphere)),
- ...color,
- ...size,
- ...marker,
- ...overpaint,
- ...transparency,
- ...material,
- ...clipping,
- ...transform,
- padding: ValueCell.create(padding),
- ...BaseGeometry.createValues(props, counts),
- uSizeFactor: ValueCell.create(props.sizeFactor),
- uDoubleSided: ValueCell.create(props.doubleSided),
- dIgnoreLight: ValueCell.create(props.ignoreLight),
- dXrayShaded: ValueCell.create(props.xrayShaded === 'inverted' ? 'inverted' : props.xrayShaded === true ? 'on' : 'off'),
- dTransparentBackfaces: ValueCell.create(props.transparentBackfaces),
- dSolidInterior: ValueCell.create(props.solidInterior),
- dClipPrimitive: ValueCell.create(props.clipPrimitive),
- dApproximate: ValueCell.create(props.approximate),
- uAlphaThickness: ValueCell.create(props.alphaThickness),
- uBumpFrequency: ValueCell.create(props.bumpFrequency),
- uBumpAmplitude: ValueCell.create(props.bumpAmplitude),
- centerBuffer: spheres.centerBuffer,
- groupBuffer: spheres.groupBuffer,
- };
- }
- function createValuesSimple(spheres: Spheres, props: Partial<PD.Values<Params>>, colorValue: Color, sizeValue: number, transform?: TransformData) {
- const s = BaseGeometry.createSimple(colorValue, sizeValue, transform);
- const p = { ...PD.getDefaultValues(Params), ...props };
- return createValues(spheres, s.transform, s.locationIterator, s.theme, p);
- }
- function updateValues(values: SpheresValues, props: PD.Values<Params>) {
- BaseGeometry.updateValues(values, props);
- ValueCell.updateIfChanged(values.uSizeFactor, props.sizeFactor);
- ValueCell.updateIfChanged(values.uDoubleSided, props.doubleSided);
- ValueCell.updateIfChanged(values.dIgnoreLight, props.ignoreLight);
- ValueCell.updateIfChanged(values.dXrayShaded, props.xrayShaded === 'inverted' ? 'inverted' : props.xrayShaded === true ? 'on' : 'off');
- ValueCell.updateIfChanged(values.dTransparentBackfaces, props.transparentBackfaces);
- ValueCell.updateIfChanged(values.dSolidInterior, props.solidInterior);
- ValueCell.updateIfChanged(values.dClipPrimitive, props.clipPrimitive);
- ValueCell.updateIfChanged(values.dApproximate, props.approximate);
- ValueCell.updateIfChanged(values.uAlphaThickness, props.alphaThickness);
- ValueCell.updateIfChanged(values.uBumpFrequency, props.bumpFrequency);
- ValueCell.updateIfChanged(values.uBumpAmplitude, props.bumpAmplitude);
- }
- function updateBoundingSphere(values: SpheresValues, spheres: Spheres) {
- const padding = spheres.boundingSphere.radius
- ? getMaxSize(values) * values.uSizeFactor.ref.value
- : 0;
- const invariantBoundingSphere = Sphere3D.expand(Sphere3D(), spheres.boundingSphere, padding);
- const boundingSphere = calculateTransformBoundingSphere(invariantBoundingSphere, values.aTransform.ref.value, values.instanceCount.ref.value, 0);
- if (!Sphere3D.equals(boundingSphere, values.boundingSphere.ref.value)) {
- ValueCell.update(values.boundingSphere, boundingSphere);
- }
- if (!Sphere3D.equals(invariantBoundingSphere, values.invariantBoundingSphere.ref.value)) {
- ValueCell.update(values.invariantBoundingSphere, invariantBoundingSphere);
- ValueCell.update(values.uInvariantBoundingSphere, Vec4.fromSphere(values.uInvariantBoundingSphere.ref.value, invariantBoundingSphere));
- }
- ValueCell.update(values.padding, padding);
- }
- function createRenderableState(props: PD.Values<Params>): RenderableState {
- const state = BaseGeometry.createRenderableState(props);
- updateRenderableState(state, props);
- return state;
- }
- function updateRenderableState(state: RenderableState, props: PD.Values<Params>) {
- BaseGeometry.updateRenderableState(state, props);
- state.opaque = state.opaque && !props.xrayShaded;
- state.writeDepth = state.opaque;
- }
- }
|