/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { getElementSphereVisual, ElementSphereParams } from '../visual/element-sphere'; import { UnitsRepresentation } from '../units-representation'; import { ParamDefinition as PD } from '../../../mol-util/param-definition'; import { StructureRepresentation, StructureRepresentationProvider, StructureRepresentationStateBuilder } from '../representation'; import { RepresentationParamsGetter, RepresentationContext, Representation } from '../../../mol-repr/representation'; import { ThemeRegistryContext } from '../../../mol-theme/theme'; import { Structure } from '../../../mol-model/structure'; const SpacefillVisuals = { 'element-sphere': (ctx: RepresentationContext, getParams: RepresentationParamsGetter) => UnitsRepresentation('Sphere mesh', ctx, getParams, getElementSphereVisual(ctx.webgl)), } export const SpacefillParams = { ...ElementSphereParams, } export type SpacefillParams = typeof SpacefillParams export function getSpacefillParams(ctx: ThemeRegistryContext, structure: Structure) { return PD.clone(SpacefillParams) } export type SpacefillRepresentation = StructureRepresentation export function SpacefillRepresentation(ctx: RepresentationContext, getParams: RepresentationParamsGetter): SpacefillRepresentation { return Representation.createMulti('Spacefill', ctx, getParams, StructureRepresentationStateBuilder, SpacefillVisuals as unknown as Representation.Def) } export const SpacefillRepresentationProvider = StructureRepresentationProvider({ name: 'spacefill', label: 'Spacefill', description: 'Displays atomic/coarse elements as spheres.', factory: SpacefillRepresentation, getParams: getSpacefillParams, defaultValues: PD.getDefaultValues(SpacefillParams), defaultColorTheme: { name: 'element-symbol' }, defaultSizeTheme: { name: 'physical' }, isApplicable: (structure: Structure) => structure.elementCount > 0 })