123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- /**
- * Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import { setAutoFreeze } from 'immer';
- import { List } from 'immutable';
- import { merge } from 'rxjs';
- import { Canvas3D, DefaultCanvas3DParams } from '../mol-canvas3d/canvas3d';
- import { CustomProperty } from '../mol-model-props/common/custom-property';
- import { Model, Structure } from '../mol-model/structure';
- import { DataBuilder } from '../mol-plugin-state/builder/data';
- import { StructureBuilder } from '../mol-plugin-state/builder/structure';
- import { DataFormatRegistry } from '../mol-plugin-state/formats/registry';
- import { StructureSelectionQueryRegistry } from '../mol-plugin-state/helpers/structure-selection-query';
- import { CameraManager } from '../mol-plugin-state/manager/camera';
- import { InteractivityManager } from '../mol-plugin-state/manager/interactivity';
- import { LociLabel, LociLabelManager } from '../mol-plugin-state/manager/loci-label';
- import { StructureComponentManager } from '../mol-plugin-state/manager/structure/component';
- import { StructureFocusManager } from '../mol-plugin-state/manager/structure/focus';
- import { StructureHierarchyManager } from '../mol-plugin-state/manager/structure/hierarchy';
- import { HierarchyRef } from '../mol-plugin-state/manager/structure/hierarchy-state';
- import { StructureMeasurementManager } from '../mol-plugin-state/manager/structure/measurement';
- import { StructureSelectionManager } from '../mol-plugin-state/manager/structure/selection';
- import { PluginUIComponent } from '../mol-plugin-ui/base';
- import { StateTransformParameters } from '../mol-plugin-ui/state/common';
- import { Representation } from '../mol-repr/representation';
- import { StructureRepresentationRegistry } from '../mol-repr/structure/registry';
- import { VolumeRepresentationRegistry } from '../mol-repr/volume/registry';
- import { StateTransform } from '../mol-state';
- import { Progress, Task } from '../mol-task';
- import { ColorTheme } from '../mol-theme/color';
- import { SizeTheme } from '../mol-theme/size';
- import { ThemeRegistryContext } from '../mol-theme/theme';
- import { Color } from '../mol-util/color';
- import { ajaxGet } from '../mol-util/data-source';
- import { isDebugMode, isProductionMode } from '../mol-util/debug';
- import { ModifiersKeys } from '../mol-util/input/input-observer';
- import { LogEntry } from '../mol-util/log-entry';
- import { RxEventHelper } from '../mol-util/rx-event-helper';
- import { BuiltInPluginBehaviors } from './behavior';
- import { PluginBehavior } from './behavior/behavior';
- import { PluginCommandManager } from './command';
- import { PluginCommands } from './commands';
- import { PluginConfig, PluginConfigManager } from './config';
- import { LeftPanelTabName, PluginLayout } from './layout';
- import { PluginSpec } from './spec';
- import { PluginState } from './state';
- import { SubstructureParentHelper } from './util/substructure-parent-helper';
- import { TaskManager } from './util/task-manager';
- import { PluginToastManager } from './util/toast';
- import { ViewportScreenshotHelper } from './util/viewport-screenshot';
- import { PLUGIN_VERSION, PLUGIN_VERSION_DATE } from './version';
- export class PluginContext {
- runTask = <T>(task: Task<T>) => this.tasks.run(task);
- private disposed = false;
- private ev = RxEventHelper.create();
- private tasks = new TaskManager();
- readonly state = new PluginState(this);
- readonly commands = new PluginCommandManager();
- readonly events = {
- state: {
- cell: {
- stateUpdated: merge(this.state.data.events.cell.stateUpdated, this.state.behaviors.events.cell.stateUpdated),
- created: merge(this.state.data.events.cell.created, this.state.behaviors.events.cell.created),
- removed: merge(this.state.data.events.cell.removed, this.state.behaviors.events.cell.removed),
- },
- object: {
- created: merge(this.state.data.events.object.created, this.state.behaviors.events.object.created),
- removed: merge(this.state.data.events.object.removed, this.state.behaviors.events.object.removed),
- updated: merge(this.state.data.events.object.updated, this.state.behaviors.events.object.updated)
- },
- cameraSnapshots: this.state.cameraSnapshots.events,
- snapshots: this.state.snapshots.events,
- },
- log: this.ev<LogEntry>(),
- task: this.tasks.events,
- canvas3d: {
- initialized: this.ev(),
- settingsUpdated: this.ev(),
- }
- } as const
- readonly config = new PluginConfigManager(this.spec.config);
- readonly behaviors = {
- state: {
- isAnimating: this.ev.behavior<boolean>(false),
- isUpdating: this.ev.behavior<boolean>(false),
- isBusy: this.ev.behavior<boolean>(false)
- },
- interaction: {
- hover: this.ev.behavior<InteractivityManager.HoverEvent>({ current: Representation.Loci.Empty, modifiers: ModifiersKeys.None, buttons: 0, button: 0 }),
- click: this.ev.behavior<InteractivityManager.ClickEvent>({ current: Representation.Loci.Empty, modifiers: ModifiersKeys.None, buttons: 0, button: 0 }),
- selectionMode: this.ev.behavior<boolean>(false)
- },
- labels: {
- highlight: this.ev.behavior<{ labels: ReadonlyArray<LociLabel> }>({ labels: [] })
- },
- layout: {
- leftPanelTabName: this.ev.behavior<LeftPanelTabName>('root')
- }
- } as const
- readonly canvas3d: Canvas3D | undefined;
- readonly layout = new PluginLayout(this);
- readonly representation = {
- structure: {
- registry: new StructureRepresentationRegistry(),
- themes: { colorThemeRegistry: ColorTheme.createRegistry(), sizeThemeRegistry: SizeTheme.createRegistry() } as ThemeRegistryContext,
- },
- volume: {
- registry: new VolumeRepresentationRegistry(),
- themes: { colorThemeRegistry: ColorTheme.createRegistry(), sizeThemeRegistry: SizeTheme.createRegistry() } as ThemeRegistryContext
- }
- } as const;
- readonly query = {
- structure: {
- registry: new StructureSelectionQueryRegistry()
- }
- } as const;
- readonly dataFormats = new DataFormatRegistry();
- readonly builders = {
- data: new DataBuilder(this),
- structure: void 0 as any as StructureBuilder
- };
- build() {
- return this.state.data.build();
- }
- readonly managers = {
- structure: {
- hierarchy: new StructureHierarchyManager(this),
- component: new StructureComponentManager(this),
- measurement: new StructureMeasurementManager(this),
- selection: new StructureSelectionManager(this),
- focus: new StructureFocusManager(this),
- },
- interactivity: void 0 as any as InteractivityManager,
- camera: new CameraManager(this),
- lociLabels: void 0 as any as LociLabelManager,
- toast: new PluginToastManager(this)
- } as const
- readonly customModelProperties = new CustomProperty.Registry<Model>();
- readonly customStructureProperties = new CustomProperty.Registry<Structure>();
- readonly customParamEditors = new Map<string, StateTransformParameters.Class>();
- readonly customStructureControls = new Map<string, { new(): PluginUIComponent<any, any, any> }>();
- readonly genericRepresentationControls = new Map<string, (selection: StructureHierarchyManager['selection']) => [HierarchyRef[], string]>();
- readonly helpers = {
- substructureParent: new SubstructureParentHelper(this),
- viewportScreenshot: void 0 as ViewportScreenshotHelper | undefined
- } as const;
- /**
- * Used to store application specific custom state which is then available
- * to State Actions and similar constructs via the PluginContext.
- */
- readonly customState: unknown = Object.create(null);
- initViewer(canvas: HTMLCanvasElement, container: HTMLDivElement) {
- try {
- this.layout.setRoot(container);
- if (this.spec.layout && this.spec.layout.initial) this.layout.setProps(this.spec.layout.initial);
- (this.canvas3d as Canvas3D) = Canvas3D.fromCanvas(canvas);
- this.events.canvas3d.initialized.next()
- this.events.canvas3d.initialized.isStopped = true // TODO is this a good way?
- const renderer = this.canvas3d!.props.renderer;
- PluginCommands.Canvas3D.SetSettings(this, { settings: { renderer: { ...renderer, backgroundColor: Color(0xFCFBF9) } } });
- this.canvas3d!.animate();
- (this.helpers.viewportScreenshot as ViewportScreenshotHelper) = new ViewportScreenshotHelper(this);
- return true;
- } catch (e) {
- this.log.error('' + e);
- console.error(e);
- return false;
- }
- }
- readonly log = {
- entries: List<LogEntry>(),
- entry: (e: LogEntry) => this.events.log.next(e),
- error: (msg: string) => this.events.log.next(LogEntry.error(msg)),
- message: (msg: string) => this.events.log.next(LogEntry.message(msg)),
- info: (msg: string) => this.events.log.next(LogEntry.info(msg)),
- warn: (msg: string) => this.events.log.next(LogEntry.warning(msg)),
- };
- /**
- * This should be used in all transform related request so that it could be "spoofed" to allow
- * "static" access to resources.
- */
- readonly fetch = ajaxGet
- /** return true is animating or updating */
- get isBusy() {
- return this.behaviors.state.isAnimating.value || this.behaviors.state.isUpdating.value;
- }
- get selectionMode() {
- return this.behaviors.interaction.selectionMode.value;
- }
- set selectionMode(mode: boolean) {
- this.behaviors.interaction.selectionMode.next(mode);
- }
- dataTransaction(f: () => Promise<void> | void, options?: { canUndo?: string | boolean }) {
- return this.runTask(this.state.data.transaction(f, options));
- }
- requestTaskAbort(progress: Progress, reason?: string) {
- this.tasks.requestAbort(progress, reason);
- }
- clear(resetViewportSettings = false) {
- if (resetViewportSettings) this.canvas3d?.setProps(DefaultCanvas3DParams);
- return PluginCommands.State.RemoveObject(this, { state: this.state.data, ref: StateTransform.RootRef });
- }
- dispose() {
- if (this.disposed) return;
- this.commands.dispose();
- this.canvas3d?.dispose();
- this.ev.dispose();
- this.state.dispose();
- this.tasks.dispose();
- this.layout.dispose();
- this.disposed = true;
- }
- private initBehaviorEvents() {
- merge(this.state.data.behaviors.isUpdating, this.state.behaviors.behaviors.isUpdating).subscribe(u => {
- if (this.behaviors.state.isUpdating.value !== u) this.behaviors.state.isUpdating.next(u);
- });
- const timeoutMs = this.config.get(PluginConfig.General.IsBusyTimeoutMs) || 750;
- const isBusy = this.behaviors.state.isBusy;
- let timeout: any = void 0;
- const setBusy = () => {
- isBusy.next(true);
- }
- merge(this.behaviors.state.isUpdating, this.behaviors.state.isAnimating).subscribe(v => {
- const isUpdating = this.behaviors.state.isUpdating.value;
- const isAnimating = this.behaviors.state.isAnimating.value;
- if ((isUpdating || isAnimating) && !isBusy.value) {
- if (timeout !== void 0) clearTimeout(timeout);
- timeout = setTimeout(setBusy, timeoutMs);
- // isBusy.next(true);
- } else {
- if (timeout !== void 0) clearTimeout(timeout);
- timeout = void 0;
- if (isBusy.value) {
- isBusy.next(false);
- }
- }
- });
- this.behaviors.interaction.selectionMode.subscribe(v => {
- if (!v) {
- this.managers.interactivity?.lociSelects.deselectAll();
- }
- })
- }
- private initBuiltInBehavior() {
- BuiltInPluginBehaviors.State.registerDefault(this);
- BuiltInPluginBehaviors.Representation.registerDefault(this);
- BuiltInPluginBehaviors.Camera.registerDefault(this);
- BuiltInPluginBehaviors.Misc.registerDefault(this);
- merge(this.state.data.events.log, this.state.behaviors.events.log).subscribe(e => this.events.log.next(e));
- }
- private async initBehaviors() {
- let tree = this.state.behaviors.build();
- for (const cat of Object.keys(PluginBehavior.Categories)) {
- tree.toRoot().apply(PluginBehavior.CreateCategory, { label: (PluginBehavior.Categories as any)[cat] }, { ref: cat, state: { isLocked: true } });
- }
- // Init custom properties 1st
- for (const b of this.spec.behaviors) {
- const cat = PluginBehavior.getCategoryId(b.transformer);
- if (cat !== 'custom-props') continue;
- tree.to(PluginBehavior.getCategoryId(b.transformer)).apply(b.transformer, b.defaultParams, { ref: b.transformer.id });
- }
- await this.runTask(this.state.behaviors.updateTree(tree, { doNotUpdateCurrent: true, doNotLogTiming: true }));
- tree = this.state.behaviors.build();
- for (const b of this.spec.behaviors) {
- const cat = PluginBehavior.getCategoryId(b.transformer);
- if (cat === 'custom-props') continue;
- tree.to(PluginBehavior.getCategoryId(b.transformer)).apply(b.transformer, b.defaultParams, { ref: b.transformer.id });
- }
- await this.runTask(this.state.behaviors.updateTree(tree, { doNotUpdateCurrent: true, doNotLogTiming: true }));
- }
- private initDataActions() {
- for (const a of this.spec.actions) {
- this.state.data.actions.add(a.action);
- }
- }
- private initAnimations() {
- if (!this.spec.animations) return;
- for (const anim of this.spec.animations) {
- this.state.animation.register(anim);
- }
- }
- private initCustomParamEditors() {
- if (!this.spec.customParamEditors) return;
- for (const [t, e] of this.spec.customParamEditors) {
- this.customParamEditors.set(t.id, e);
- }
- }
- constructor(public spec: PluginSpec) {
- // the reason for this is that sometimes, transform params get modified inline (i.e. palette.valueLabel)
- // and freezing the params object causes "read-only exception"
- // TODO: is this the best place to do it?
- setAutoFreeze(false);
- this.events.log.subscribe(e => this.log.entries = this.log.entries.push(e));
- this.initBehaviorEvents();
- this.initBuiltInBehavior();
- this.initBehaviors();
- this.initDataActions();
- this.initAnimations();
- this.initCustomParamEditors();
- (this.managers.interactivity as InteractivityManager) = new InteractivityManager(this);
- (this.managers.lociLabels as LociLabelManager) = new LociLabelManager(this);
- (this.builders.structure as StructureBuilder) = new StructureBuilder(this);
- this.log.message(`Mol* Plugin ${PLUGIN_VERSION} [${PLUGIN_VERSION_DATE.toLocaleString()}]`);
- if (!isProductionMode) this.log.message(`Development mode enabled`);
- if (isDebugMode) this.log.message(`Debug mode enabled`);
- }
- }
|