unit-index.ts 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**
  2. * Copyright (c) 2018-2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. */
  6. import { Color } from '../../mol-util/color';
  7. import { Location } from '../../mol-model/location';
  8. import { StructureElement, Bond } from '../../mol-model/structure';
  9. import { ColorTheme, LocationColor } from '../color';
  10. import { ParamDefinition as PD } from '../../mol-util/param-definition'
  11. import { ThemeDataContext } from '../../mol-theme/theme';
  12. import { getPaletteParams, getPalette } from '../../mol-util/color/palette';
  13. import { TableLegend, ScaleLegend } from '../../mol-util/legend';
  14. import { ColorLists, getColorListFromName } from '../../mol-util/color/lists';
  15. const DefaultList = 'dark-2'
  16. const DefaultColor = Color(0xCCCCCC)
  17. const Description = 'Gives every chain instance (single chain or collection of single elements) a unique color based on the position (index) of the chain in the list of chains in the structure.'
  18. export const UnitIndexColorThemeParams = {
  19. ...getPaletteParams({ type: 'colors', colorList: DefaultList }),
  20. }
  21. export type UnitIndexColorThemeParams = typeof UnitIndexColorThemeParams
  22. export function getUnitIndexColorThemeParams(ctx: ThemeDataContext) {
  23. const params = PD.clone(UnitIndexColorThemeParams)
  24. if (ctx.structure) {
  25. if (ctx.structure.root.units.length > ColorLists[DefaultList].list.length) {
  26. params.palette.defaultValue.name = 'colors'
  27. params.palette.defaultValue.params = {
  28. ...params.palette.defaultValue.params,
  29. list: { kind: 'interpolate', colors: getColorListFromName(DefaultList).list }
  30. }
  31. }
  32. }
  33. return params
  34. }
  35. export function UnitIndexColorTheme(ctx: ThemeDataContext, props: PD.Values<UnitIndexColorThemeParams>): ColorTheme<UnitIndexColorThemeParams> {
  36. let color: LocationColor
  37. let legend: ScaleLegend | TableLegend | undefined
  38. if (ctx.structure) {
  39. const { units } = ctx.structure.root
  40. const palette = getPalette(units.length, props)
  41. legend = palette.legend
  42. const unitIdColor = new Map<number, Color>()
  43. for (let i = 0, il = units.length; i < il; ++i) {
  44. unitIdColor.set(units[i].id, palette.color(i))
  45. }
  46. color = (location: Location): Color => {
  47. if (StructureElement.Location.is(location)) {
  48. return unitIdColor.get(location.unit.id)!
  49. } else if (Bond.isLocation(location)) {
  50. return unitIdColor.get(location.aUnit.id)!
  51. }
  52. return DefaultColor
  53. }
  54. } else {
  55. color = () => DefaultColor
  56. }
  57. return {
  58. factory: UnitIndexColorTheme,
  59. granularity: 'instance',
  60. color,
  61. props,
  62. description: Description,
  63. legend
  64. }
  65. }
  66. export const UnitIndexColorThemeProvider: ColorTheme.Provider<UnitIndexColorThemeParams, 'unit-index'> = {
  67. name: 'unit-index',
  68. label: 'Chain Instance',
  69. category: ColorTheme.Category.Chain,
  70. factory: UnitIndexColorTheme,
  71. getParams: getUnitIndexColorThemeParams,
  72. defaultValues: PD.getDefaultValues(UnitIndexColorThemeParams),
  73. isApplicable: (ctx: ThemeDataContext) => !!ctx.structure
  74. }