Browse Source

ModelIndex color theme

Alexander Rose 5 years ago
parent
commit
d713ea6a76
2 changed files with 71 additions and 0 deletions
  1. 2 0
      src/mol-theme/color.ts
  2. 69 0
      src/mol-theme/color/model-index.ts

+ 2 - 0
src/mol-theme/color.ts

@@ -30,6 +30,7 @@ import { UncertaintyColorThemeProvider } from './color/uncertainty';
 import { EntitySourceColorThemeProvider } from './color/entity-source';
 import { IllustrativeColorThemeProvider } from './color/illustrative';
 import { HydrophobicityColorThemeProvider } from './color/hydrophobicity';
+import { ModelIndexColorThemeProvider } from './color/model-index';
 
 export type LocationColor = (location: Location, isSecondary: boolean) => Color
 
@@ -79,6 +80,7 @@ export const BuiltInColorThemes = {
     'entity-source': EntitySourceColorThemeProvider,
     'hydrophobicity': HydrophobicityColorThemeProvider,
     'illustrative': IllustrativeColorThemeProvider,
+    'model-index': ModelIndexColorThemeProvider,
     'molecule-type': MoleculeTypeColorThemeProvider,
     'polymer-id': PolymerIdColorThemeProvider,
     'polymer-index': PolymerIndexColorThemeProvider,

+ 69 - 0
src/mol-theme/color/model-index.ts

@@ -0,0 +1,69 @@
+/**
+ * Copyright (c) 2019 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, Link } 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 { ScaleLegend } from '../../mol-util/color/scale';
+import { getPaletteParams, getPalette } from './util';
+import { TableLegend } from '../../mol-util/color/tables';
+
+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({ scaleList: 'RedYellowBlue' }),
+}
+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
+        const palette = getPalette(models.length, props)
+        legend = palette.legend
+        const modelColor = new Map<string, Color>()
+        for (let i = 0, il = models.length; i <il; ++i) {
+            modelColor.set(models[i].id, palette.color(i))
+        }
+
+        color = (location: Location): Color => {
+            if (StructureElement.isLocation(location)) {
+                return modelColor.get(location.unit.model.id)!
+            } else if (Link.isLocation(location)) {
+                return modelColor.get(location.aUnit.model.id)!
+            }
+            return DefaultColor
+        }
+    } else {
+        color = () => DefaultColor
+    }
+
+    return {
+        factory: ModelIndexColorTheme,
+        granularity: 'instance',
+        color,
+        props,
+        description: Description,
+        legend
+    }
+}
+
+export const ModelIndexColorThemeProvider: ColorTheme.Provider<ModelIndexColorThemeParams> = {
+    label: 'Model Index',
+    factory: ModelIndexColorTheme,
+    getParams: getModelIndexColorThemeParams,
+    defaultValues: PD.getDefaultValues(ModelIndexColorThemeParams),
+    isApplicable: (ctx: ThemeDataContext) => !!ctx.structure
+}