123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /**
- * Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import { Color } from '../../mol-util/color';
- import { Location } from '../../mol-model/location';
- import { StructureElement, Bond } from '../../mol-model/structure';
- import { ColorTheme, LocationColor } from '../color';
- import { ParamDefinition as PD } from '../../mol-util/param-definition'
- import { ThemeDataContext } from '../../mol-theme/theme';
- import { getPaletteParams, getPalette } from '../../mol-util/color/palette';
- import { TableLegend, ScaleLegend } from '../../mol-util/legend';
- const DefaultColor = Color(0xCCCCCC)
- const Description = 'Gives every model a unique color based on the position (index) of the model in the list of models in the structure.'
- export const ModelIndexColorThemeParams = {
- ...getPaletteParams({ type: 'colors', colorList: 'purples' }),
- }
- export type ModelIndexColorThemeParams = typeof ModelIndexColorThemeParams
- export function getModelIndexColorThemeParams(ctx: ThemeDataContext) {
- return ModelIndexColorThemeParams // TODO return copy
- }
- export function ModelIndexColorTheme(ctx: ThemeDataContext, props: PD.Values<ModelIndexColorThemeParams>): ColorTheme<ModelIndexColorThemeParams> {
- let color: LocationColor
- let legend: ScaleLegend | TableLegend | undefined
- if (ctx.structure) {
- const { models } = ctx.structure.root
- let size = 0;
- for (const m of models) size = Math.max(size, m.trajectoryInfo.size);
- const palette = getPalette(size, props)
- legend = palette.legend
- const modelColor = new Map<number, Color>()
- for (let i = 0, il = models.length; i <il; ++i) {
- const idx = models[i].trajectoryInfo.index;
- modelColor.set(models[i].trajectoryInfo.index, palette.color(idx))
- }
- color = (location: Location): Color => {
- if (StructureElement.Location.is(location)) {
- return modelColor.get(location.unit.model.trajectoryInfo.index)!
- } else if (Bond.isLocation(location)) {
- return modelColor.get(location.aUnit.model.trajectoryInfo.index)!
- }
- return DefaultColor
- }
- } else {
- color = () => DefaultColor
- }
- return {
- factory: ModelIndexColorTheme,
- granularity: 'instance',
- color,
- props,
- description: Description,
- legend
- }
- }
- export const ModelIndexColorThemeProvider: ColorTheme.Provider<ModelIndexColorThemeParams, 'model-index'> = {
- name: 'model-index',
- label: 'Model Index',
- category: ColorTheme.Category.Chain,
- factory: ModelIndexColorTheme,
- getParams: getModelIndexColorThemeParams,
- defaultValues: PD.getDefaultValues(ModelIndexColorThemeParams),
- isApplicable: (ctx: ThemeDataContext) => !!ctx.structure && ctx.structure.elementCount > 0 && ctx.structure.models[0].trajectoryInfo.size > 1
- }
|