123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /**
- * Copyright (c) 2018-2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import { Color, ColorListEntry } from './color';
- import { getColorListFromName, ColorListName } from './lists';
- import { defaults } from '../../mol-util';
- import { NumberArray } from '../../mol-util/type-helpers';
- import { ScaleLegend } from '../legend';
- import { SortedArray } from '../../mol-data/int';
- import { clamp } from '../../mol-math/interpolate';
- export interface ColorScale {
- /** Returns hex color for given value */
- color: (value: number) => Color
- /** Copies color to rgb int8 array */
- colorToArray: (value: number, array: NumberArray, offset: number) => void
- /** Copies normalized (0 to 1) hex color to rgb array */
- normalizedColorToArray: (value: number, array: NumberArray, offset: number) => void
- /** */
- setDomain: (min: number, max: number) => void
- /** Legend */
- readonly legend: ScaleLegend
- }
- export const DefaultColorScaleProps = {
- domain: [0, 1] as [number, number],
- reverse: false,
- listOrName: 'red-yellow-blue' as ColorListEntry[] | ColorListName,
- minLabel: '' as string | undefined,
- maxLabel: '' as string | undefined,
- };
- export type ColorScaleProps = Partial<typeof DefaultColorScaleProps>
- export namespace ColorScale {
- export function create(props: ColorScaleProps): ColorScale {
- const { domain, reverse, listOrName } = { ...DefaultColorScaleProps, ...props };
- const list = typeof listOrName === 'string' ? getColorListFromName(listOrName).list : listOrName;
- const colors = reverse ? list.slice().reverse() : list;
- const count1 = colors.length - 1;
- let diff = 0, min = 0, max = 0;
- function setDomain(_min: number, _max: number) {
- min = _min;
- max = _max;
- diff = (max - min) || 1;
- }
- setDomain(domain[0], domain[1]);
- const minLabel = defaults(props.minLabel, min.toString());
- const maxLabel = defaults(props.maxLabel, max.toString());
- let color: (v: number) => Color;
- const hasOffsets = colors.every(c => Array.isArray(c));
- if (hasOffsets) {
- const sorted = [...colors] as [Color, number][];
- sorted.sort((a, b) => a[1] - b[1]);
- const src = sorted.map(c => c[0]);
- const off = SortedArray.ofSortedArray(sorted.map(c => c[1]));
- const max = src.length - 1;
- color = (v: number) => {
- const t = clamp((v - min) / diff, 0, 1);
- const i = SortedArray.findPredecessorIndex(off, t);
- if (i === 0) {
- return src[min];
- } else if (i > max) {
- return src[max];
- }
- const o1 = off[i - 1], o2 = off[i];
- const t1 = clamp((t - o1) / (o2 - o1), 0, 1); // TODO: cache the deltas?
- return Color.interpolate(src[i - 1], src[i], t1);
- };
- } else {
- color = (value: number) => {
- const t = Math.min(colors.length - 1, Math.max(0, ((value - min) / diff) * count1));
- const tf = Math.floor(t);
- const c1 = colors[tf] as Color;
- const c2 = colors[Math.ceil(t)] as Color;
- return Color.interpolate(c1, c2, t - tf);
- };
- }
- return {
- color,
- colorToArray: (value: number, array: NumberArray, offset: number) => {
- Color.toArray(color(value), array, offset);
- },
- normalizedColorToArray: (value: number, array: NumberArray, offset: number) => {
- Color.toArrayNormalized(color(value), array, offset);
- },
- setDomain,
- get legend() { return ScaleLegend(minLabel, maxLabel, colors); }
- };
- }
- }
|