@inweb/viewer-core 27.6.0 → 27.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/viewer-core.js +80 -56
- package/dist/viewer-core.js.map +1 -1
- package/dist/viewer-core.module.js +80 -56
- package/dist/viewer-core.module.js.map +1 -1
- package/lib/options/IOptions.d.ts +5 -5
- package/lib/options/Options.d.ts +7 -2
- package/package.json +3 -3
- package/src/options/IOptions.ts +5 -5
- package/src/options/Options.ts +108 -64
package/dist/viewer-core.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"viewer-core.js","sources":["../src/commands/Commands.ts","../src/draggers/Dragger.ts","../src/draggers/Draggers.ts","../src/components/Component.ts","../src/components/Components.ts","../src/loaders/Loader.ts","../src/loaders/Loaders.ts","../src/options/IOptions.ts","../src/options/Options.ts","../src/viewer/CanvasEvents.ts","../src/viewer/Info.ts"],"sourcesContent":["///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport { IViewer } from \"../viewer/IViewer\";\nimport { ICommand, ICommandHandler, ICommandDescription, ICommandsRegistry } from \"./ICommands\";\n\nclass CommandsRegistry implements ICommandsRegistry {\n private readonly _commands = new Map<string, ICommand>();\n\n registerCommand(id: string, handler: ICommandHandler, description?: ICommandDescription, thisArg?: any): void {\n this._commands.set(id, { id, handler, thisArg, description });\n }\n\n registerCommandAlias(id: string, alias: string): void {\n this.registerCommand(alias, (viewer: IViewer, ...args) => this.executeCommand(id, viewer, ...args));\n }\n\n getCommand(id: string): ICommand | undefined {\n return this._commands.get(id);\n }\n\n getCommands(): Map<string, ICommand> {\n const map = new Map<string, ICommand>();\n this._commands.forEach((value, key) => map.set(key, value));\n return map;\n }\n\n executeCommand(id: string, viewer: IViewer, ...args: any[]): any {\n const command = this._commands.get(id);\n if (!command) {\n if (viewer) {\n const isDraggerCommand = viewer.draggers.includes(id);\n if (isDraggerCommand) return viewer.setActiveDragger(id);\n }\n\n console.warn(`Command '${id}' not found`);\n return undefined;\n }\n\n const { handler, thisArg } = command;\n const result = handler.apply(thisArg, [viewer, ...args]);\n\n viewer?.emit({ type: \"command\", data: id, args });\n\n return result;\n }\n}\n\nconst _commandsRegistry = new Map<string, CommandsRegistry>();\n\nfunction commandsRegistry(viewerType = \"\"): ICommandsRegistry {\n let result = _commandsRegistry.get(viewerType);\n if (!result) {\n result = new CommandsRegistry();\n _commandsRegistry.set(viewerType, result);\n }\n return result;\n}\n\nexport { commandsRegistry };\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport type { IDragger } from \"./IDraggers\";\n\nexport class Dragger implements IDragger {\n name = \"\";\n\n constructor(viewer: IViewer) {}\n\n dispose(): void {}\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport { IDragger, IDraggerProvider, IDraggersRegistry } from \"./IDraggers\";\n\nclass DraggersRegistry implements IDraggersRegistry {\n private readonly _providers = new Map<string, IDraggerProvider>();\n\n registerDragger(name: string, provider: IDraggerProvider): void {\n this._providers.set(name, provider);\n }\n\n registerDraggerAlias(name: string, alias: string): void {\n const provider = this._providers.get(name);\n if (provider) this.registerDragger(alias, (viewer: IViewer) => provider(viewer));\n }\n\n getDraggers(): Map<string, IDraggerProvider> {\n const map = new Map<string, IDraggerProvider>();\n this._providers.forEach((value, key) => map.set(key, value));\n return map;\n }\n\n createDragger(name: string, viewer: IViewer): IDragger | null {\n const provider = this._providers.get(name);\n if (!provider) return null;\n\n const dragger = provider(viewer);\n dragger.name = name;\n\n return dragger;\n }\n}\n\nconst _draggersRegistry = new Map<string, DraggersRegistry>();\n\nfunction draggersRegistry(viewerType = \"\"): IDraggersRegistry {\n let result = _draggersRegistry.get(viewerType);\n if (!result) {\n result = new DraggersRegistry();\n _draggersRegistry.set(viewerType, result);\n }\n return result;\n}\n\nexport { draggersRegistry };\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport type { IComponent } from \"./IComponents\";\n\nexport class Component implements IComponent {\n name = \"\";\n\n constructor(viewer: IViewer) {}\n\n dispose(): void {}\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport { IComponent, IComponentProvider, IComponentsRegistry } from \"./IComponents\";\n\nclass Components implements IComponentsRegistry {\n private readonly _providers = new Map<string, IComponentProvider>();\n\n registerComponent(name: string, provider: IComponentProvider): void {\n this._providers.set(name, provider);\n }\n\n registerComponentAlias(name: string, alias: string): void {\n const provider = this._providers.get(name);\n if (provider) this.registerComponent(alias, (viewer: IViewer) => provider(viewer));\n }\n\n getComponents(): Map<string, IComponentProvider> {\n const map = new Map<string, IComponentProvider>();\n this._providers.forEach((value, key) => map.set(key, value));\n return map;\n }\n\n createComponent(name: string, viewer: IViewer): IComponent | null {\n const provider = this._providers.get(name);\n if (!provider) return null;\n\n const component = provider(viewer);\n component.name = name;\n\n return component;\n }\n}\n\nconst _components = new Map<string, Components>();\n\nfunction componentsRegistry(viewerType = \"\"): IComponentsRegistry {\n let result = _components.get(viewerType);\n if (!result) {\n result = new Components();\n _components.set(viewerType, result);\n }\n return result;\n}\n\nexport { componentsRegistry };\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { FileSource, ILoader, LoadParams } from \"./ILoader\";\n\nexport class Loader implements ILoader {\n public name = \"\";\n public abortController: AbortController = new AbortController();\n\n dispose(): void {\n this.cancel();\n }\n\n isSupport(file: FileSource, format?: string): boolean {\n return false;\n }\n\n load(file: FileSource, format?: string, params?: LoadParams): Promise<this> {\n return Promise.resolve(this);\n }\n\n cancel(): void {\n this.abortController.abort();\n }\n\n yield(): Promise<void> {\n return new Promise((resolve) => {\n setTimeout(resolve, 0);\n });\n }\n\n extractFileName(file: FileSource): string {\n const regex = /[^/\\\\?#:]+(?=\\?|#|$)/;\n\n if (typeof file === \"string\") return (file.match(regex) || [])[0] || \"\";\n else if (file instanceof globalThis.File) return (file.name.match(regex) || [])[0] || \"\";\n\n return \"\";\n }\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport { FileSource, ILoader, ILoaderProvider, ILoadersRegistry } from \"./ILoader\";\n\nclass Loaders implements ILoadersRegistry {\n private readonly _providers = new Map<string, ILoaderProvider>();\n\n registerLoader(name: string, provider: ILoaderProvider): void {\n this._providers.set(name, provider);\n }\n\n getLoader(name: string): ILoaderProvider | undefined {\n return this._providers.get(name);\n }\n\n getLoaders(): Map<string, ILoaderProvider> {\n const map = new Map<string, ILoaderProvider>();\n this._providers.forEach((value, key) => map.set(key, value));\n return map;\n }\n\n createLoader(viewer: IViewer, file: FileSource, format?: string): ILoader | null {\n let result: ILoader | null = null;\n this._providers.forEach((provider, key) => {\n const loader = provider(viewer);\n if (loader.isSupport(file, format)) {\n result = loader;\n result.name = key;\n }\n });\n return result;\n }\n}\n\nconst _loaders = new Map<string, Loaders>();\n\nfunction loadersRegistry(viewerType = \"\"): ILoadersRegistry {\n let result = _loaders.get(viewerType);\n if (!result) {\n result = new Loaders();\n _loaders.set(viewerType, result);\n }\n return result;\n}\n\nexport { loadersRegistry };\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nexport type CameraMode = \"perspective\" | \"orthographic\";\n\nexport interface RGB {\n red: number;\n green: number;\n blue: number;\n}\n\n/**\n * Viewer options interface.\n */\nexport interface IOptions {\n /**\n * Show the world coordinate system axes in the bottom-left corner of the viewer.\n *\n * @defaultValue true\n */\n showWCS: boolean;\n\n /**\n * Enable camera animation.\n *\n * @defaultValue true\n */\n cameraAnimation: boolean;\n\n /**\n * Enable anti-aliasing. Can be one of:\n *\n * - `false` - Disable anti-aliasing.\n * - `true` - Enable anti-aliasing using MSAA.\n * - `fxaa` - Enable Fast Approximate anti-aliasing (FXAA).\n * - `smaa` - Enable Subpixel Morphological anti-aliasing (SMAA).\n * - `msaa` - Enable Multisample anti-aliasing (MSAA), if the underlying WebGL context supports it.\n *\n * @defaultValue true\n */\n antialiasing: boolean | string;\n\n /**\n * Show ground shadows below the model.\n *\n * @defaultValue false\n */\n groundShadow: boolean;\n\n /**\n * Enable ambient shadows.\n *\n * @defaultValue false\n */\n shadows: boolean;\n\n /**\n * Camera speed on X axis.\n *\n * @defaultValue 4\n */\n cameraAxisXSpeed: number;\n\n /**\n * Camera speed on Y axis.\n *\n * @defaultValue 1\n */\n cameraAxisYSpeed: number;\n\n /**\n * Enable ambient occlusion.\n *\n * @defaultValue false\n */\n ambientOcclusion: boolean;\n\n /**\n * Enable streaming of drawings from the Open Cloud Server.\n *\n * If streaming is disabled, the file/assembly will be loaded in one go. The viewer will only update\n * once the loading is complete, which may take a while.\n *\n * If streaming is enabled, {@link enablePartialMode | partial streaming} mode may be enabled as well.\n *\n * @defaultValue true\n */\n enableStreamingMode: boolean;\n\n /**\n * Enable partial streaming mode to be able open large drawing.\n *\n * In partial streaming mode, the viewer keeps only visible objects in memory and loads other objects\n * when the camera changes.\n *\n * Only used if {@link enableStreamingMode | streaming} is enabled. If partial streaming is enabled,\n * then {@link sceneGraph | scene graph} will be disabled.\n *\n * @defaultValue false\n */\n enablePartialMode: boolean;\n\n /**\n * The size of the memory buffer for graphics data, in bytes.\n *\n * @defaultValue 3294967296\n */\n memoryLimit: number;\n\n /**\n * Deprecated since `27.5`. Use {@link sectionFillColor} instead.\n *\n * @deprecated\n */\n cuttingPlaneFillColor: RGB;\n\n /**\n * Show solid fill on section caps.\n *\n * When disabled, neither the fill nor the hatch is drawn (the outline, if enabled, is still shown).\n *\n * @defaultValue true\n */\n enableSectionFill: boolean;\n\n /**\n * Section cap fill color.\n *\n * @defaultValue { red: 0xff, green: 0x98, blue: 0x00 }\n */\n sectionFillColor: { r: number; g: number; b: number };\n\n /**\n * Use the intersected object's color for the section cap fill.\n *\n * When enabled, each section cap is filled with a color derived from the intersected object and\n * `sectionFillColor` is ignored. The outline color is not affected.\n *\n * @defaultValue false\n */\n sectionUseObjectColor: boolean;\n\n /**\n * Overlay a hatch pattern on top of the section fill.\n *\n * @defaultValue true\n */\n enableSectionHatch: boolean;\n\n /**\n * Hatch line color used on top of the section fill.\n *\n * @defaultValue { red: 0x4b, green: 0x4c, blue: 0x35 }\n */\n sectionHatchColor: { r: number; g: number; b: number };\n\n /**\n * Distance between hatch lines, in screen-space pixels.\n *\n * Larger values produce sparser hatching.\n *\n * @defaultValue 8\n */\n sectionHatchScale: number;\n\n /**\n * Draw the outline contour along the section boundary.\n *\n * @defaultValue true\n */\n enableSectionOutline: boolean;\n\n /**\n * Color of the section outline contour.\n *\n * @defaultValue { red: 0, green: 0, blue: 0 }\n */\n sectionOutlineColor: { r: number; g: number; b: number };\n\n /**\n * Width of the section outline contour, in pixels.\n *\n * @defaultValue 2\n */\n sectionOutlineWidth: number;\n\n /**\n * Edges highlight color.\n */\n edgesColor: { r: number; g: number; b: number };\n\n /**\n * Faces highlight color.\n */\n facesColor: { r: number; g: number; b: number };\n\n /**\n * Show highlighted edges.\n */\n edgesVisibility: boolean;\n\n /**\n * Show highlighted edges over drawing.\n */\n edgesOverlap: boolean;\n\n /**\n * Show highlighted faces over drawing.\n */\n facesOverlap: boolean;\n\n /**\n * Highlighted faces transparency value, from 0 to 255.\n */\n facesTransparancy: number;\n\n /**\n * Enable custom highlight settings.\n */\n enableCustomHighlight: boolean;\n\n /**\n * Enable scene graph.\n *\n * Scene graph increases perfomance improvement, but consumes memory. If scene graph is enabled, then\n * {@link enablePartialMode | partial streaming} mode will be disabled.\n */\n sceneGraph: boolean;\n\n /**\n * Show the edges of the model:\n *\n * - `false` - No model edges are displayed. Usefull for less memory consumption.\n * - `true` - Display isolines.\n */\n edgeModel: boolean;\n\n /**\n * Reverse the mouse wheel direction for zooming:\n *\n * - `false` - Moving the wheel up zooms in, moving down zooms out.\n * - `true` - Moving the wheel up zooms out, moving down zooms in.\n */\n reverseZoomWheel: boolean;\n\n /**\n * Enable mouse wheel zooming.\n */\n enableZoomWheel: boolean;\n\n /**\n * Enable touch gestures.\n *\n * This option will be ignored when {@link enableZoomWheel | mouse wheel zooming} is disabled, since\n * gestures contains touch zoom.\n */\n enableGestures: boolean;\n\n /**\n * Preferred viewer for newely uploaded files. Can be one of:\n *\n * - `vsfx` - `VSFX` (default), for opening a file in `VisualizeJS` viewer.\n * - `gltf` - `glTF`, for opening a file in `Three.js` viewer.\n */\n geometryType: string;\n\n /**\n * Unit of measurement for the ruler tool (distance measurements).\n *\n * When set to `Default`, the ruler uses the file's native units. Otherwise, distances are\n * automatically converted to the specified unit.\n *\n * Available values:\n *\n * - `Default` - Use file's native units (recommended)\n * - `Millimeters`, `mm` - Metric: 0.001 m\n * - `Centimeters`, `cm` - Metric: 0.01 m\n * - `Meters`, `m` - Metric: 1 m (base unit)\n * - `Kilometers`, `km` - Metric: 1000 m\n * - `Micrometers`, `µm` - Metric: 0.000001 m\n * - `Inches`, `in` - Imperial: 0.0254 m\n * - `Feet`, `ft` - Imperial: 0.3048 m\n * - `Yards`, `yd` - Imperial: 0.9144 m\n * - `Miles`, `mi` - Imperial: 1609.344 m\n * - `Mils`, `mil` - Imperial: 0.0000254 m\n * - `MicroInches`, `µin` - Imperial: 0.0000000254 m\n *\n * @defaultValue \"Default\"\n */\n rulerUnit: string;\n\n /**\n * Number of decimal places to display in ruler measurements.\n *\n * Controls the precision of distance values shown by the ruler tool. Higher values provide more\n * precision but may clutter the display with unnecessary digits.\n *\n * Available values:\n *\n * - `Default` - Use file's native units precision, if supported, otherwise use 2 digits.\n * - `Auto` - Automatically choose precision based on distance value.\n * - `0`...`10` - Use specified number of decimal places (range 0-10, inclusive).\n *\n * @defaultValue 2\n */\n rulerPrecision: \"Default\" | \"Auto\" | number;\n\n /**\n * Camera projection mode:\n *\n * - `perspective` - Perspective camera with field of view.\n * - `orthographic` - Orthographic camera with parallel projection.\n *\n * @defaultValue \"perspective\"\n */\n cameraMode: CameraMode;\n\n /**\n * Default MIME type for snapshot images.\n *\n * Supported formats:\n *\n * - `image/png` - PNG format with lossless compression (recommended for quality)\n * - `image/jpeg` - JPEG format with lossy compression (smaller file size)\n * - `image/webp` - WebP format (modern browsers only)\n *\n * @defaultValue \"image/jpeg\"\n */\n snapshotMimeType: string;\n\n /**\n * Default quality level for snapshot images when using lossy formats (JPEG, WebP).\n *\n * A number between 0 and 1, where:\n *\n * - `0` - Lowest quality, smallest file size\n * - `1` - Highest quality, largest file size\n * - `0.25` - Good balance between quality and size (recommended)\n *\n * This parameter is ignored for lossless formats like PNG.\n *\n * @defaultValue 0.25\n */\n snapshotQuality: number;\n}\n\nexport function defaultOptions(): IOptions {\n return {\n showWCS: true,\n cameraAnimation: true,\n antialiasing: true,\n groundShadow: false,\n shadows: false,\n cameraAxisXSpeed: 4,\n cameraAxisYSpeed: 1,\n ambientOcclusion: false,\n enableStreamingMode: true,\n enablePartialMode: false,\n memoryLimit: 3294967296,\n cuttingPlaneFillColor: { red: 0xff, green: 0x98, blue: 0x00 },\n enableSectionFill: true,\n sectionFillColor: { r: 0xff, g: 0x98, b: 0x00 },\n sectionUseObjectColor: false,\n enableSectionHatch: true,\n sectionHatchColor: { r: 0, g: 0, b: 0 },\n sectionHatchScale: 8,\n enableSectionOutline: true,\n sectionOutlineColor: { r: 0, g: 0, b: 0 },\n sectionOutlineWidth: 2,\n edgesColor: { r: 0xff, g: 0x98, b: 0x00 },\n facesColor: { r: 0xff, g: 0x98, b: 0x00 },\n edgesVisibility: true,\n edgesOverlap: true,\n facesOverlap: false,\n facesTransparancy: 200,\n enableCustomHighlight: true,\n sceneGraph: false,\n edgeModel: true,\n reverseZoomWheel: false,\n enableZoomWheel: true,\n enableGestures: true,\n geometryType: \"vsfx\",\n rulerUnit: \"Default\",\n rulerPrecision: 2,\n cameraMode: \"perspective\",\n snapshotMimeType: \"image/jpeg\",\n snapshotQuality: 0.25,\n };\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport { IEventEmitter } from \"@inweb/eventemitter2\";\nimport { CameraMode, defaultOptions, IOptions, RGB } from \"./IOptions\";\n\nexport class Options implements IOptions {\n protected _emitter?: IEventEmitter;\n protected _data: IOptions;\n\n constructor(emitter?: IEventEmitter) {\n this._emitter = emitter;\n this._data = defaultOptions();\n this.loadFromStorage();\n }\n\n static defaults(): IOptions {\n return defaultOptions();\n }\n\n change(): void {\n if (this._emitter !== undefined) {\n this.saveToStorage();\n this._emitter.emit({ type: \"optionschange\", data: this });\n }\n }\n\n saveToStorage(): void {\n if (typeof window !== \"undefined\")\n try {\n localStorage.setItem(\"od-client-settings\", JSON.stringify(this.data));\n } catch (error) {\n console.error(\"Cannot save client settings.\", error);\n }\n }\n\n loadFromStorage(): void {\n if (typeof window !== \"undefined\")\n try {\n const item = localStorage.getItem(\"od-client-settings\");\n if (item) {\n const data = JSON.parse(item);\n this.data = { ...data };\n }\n } catch (error) {\n console.error(\"Cannot load client settings.\", error);\n }\n }\n\n /**\n * Resets options to default values.\n *\n * @param fields - Name of fields to be reset. Specify `undefined` to reset all.\n */\n resetToDefaults(fields?: string[]): void {\n const defaults = Options.defaults();\n if (fields !== undefined) {\n const resetData: Partial<IOptions> = {};\n for (const field of fields) {\n if (field in defaults) resetData[field] = defaults[field];\n }\n this.data = resetData;\n } else {\n this.data = defaults;\n }\n }\n\n setProperty<K extends keyof IOptions>(key: K, value = Options.defaults()[key]): void {\n // for object-valued fields any new literal counts as a change\n if (this._data[key] !== value) {\n this._data[key] = value;\n this.change();\n }\n }\n\n get data(): IOptions {\n return this._data;\n }\n\n set data(value: Partial<IOptions>) {\n const defaults = Options.defaults();\n const merged: IOptions = { ...defaults, ...this._data, ...value };\n // replace undefined to default value for known properties\n for (const key of Object.keys(defaults)) {\n if (merged[key] === undefined) merged[key] = defaults[key];\n }\n this._data = merged;\n // partial mode first\n if (this._data.enablePartialMode) {\n this._data.enableStreamingMode = true;\n this._data.sceneGraph = false;\n }\n // sectionFillColor since 27.5\n if (!value.sectionFillColor && value.cuttingPlaneFillColor)\n this._data.sectionFillColor = {\n r: value.cuttingPlaneFillColor.red,\n g: value.cuttingPlaneFillColor.green,\n b: value.cuttingPlaneFillColor.blue,\n };\n this.change();\n }\n\n get showWCS(): boolean {\n return this._data.showWCS;\n }\n\n set showWCS(value: boolean) {\n this.setProperty(\"showWCS\", value);\n }\n\n get cameraAnimation(): boolean {\n return this._data.cameraAnimation;\n }\n\n set cameraAnimation(value: boolean) {\n this.setProperty(\"cameraAnimation\", value);\n }\n\n get antialiasing(): boolean | string {\n return this._data.antialiasing;\n }\n\n set antialiasing(value: boolean | string) {\n this.setProperty(\"antialiasing\", value);\n }\n\n get groundShadow(): boolean {\n return this._data.groundShadow;\n }\n\n set groundShadow(value: boolean) {\n this.setProperty(\"groundShadow\", value);\n }\n\n get shadows(): boolean {\n return this._data.shadows;\n }\n\n set shadows(value: boolean) {\n this.setProperty(\"shadows\", value);\n }\n\n get cameraAxisXSpeed(): number {\n return this._data.cameraAxisXSpeed;\n }\n\n set cameraAxisXSpeed(value: number) {\n this.setProperty(\"cameraAxisXSpeed\", value);\n }\n\n get cameraAxisYSpeed(): number {\n return this._data.cameraAxisYSpeed;\n }\n\n set cameraAxisYSpeed(value: number) {\n this.setProperty(\"cameraAxisYSpeed\", value);\n }\n\n get ambientOcclusion(): boolean {\n return this._data.ambientOcclusion;\n }\n\n set ambientOcclusion(value: boolean) {\n this.setProperty(\"ambientOcclusion\", value);\n }\n\n get enableStreamingMode(): boolean {\n return this._data.enableStreamingMode;\n }\n\n set enableStreamingMode(value: boolean) {\n this.setProperty(\"enableStreamingMode\", value);\n if (!value) {\n this.setProperty(\"enablePartialMode\", false);\n }\n }\n\n get enablePartialMode(): boolean {\n return this._data.enablePartialMode;\n }\n\n set enablePartialMode(value: boolean) {\n this.setProperty(\"enablePartialMode\", value);\n if (value) {\n this.setProperty(\"enableStreamingMode\", true);\n this.setProperty(\"sceneGraph\", false);\n }\n }\n\n get memoryLimit(): number {\n return this._data.memoryLimit;\n }\n\n set memoryLimit(value: number) {\n this.setProperty(\"memoryLimit\", value);\n }\n\n get cuttingPlaneFillColor(): RGB {\n console.warn(\n \"Options.cuttingPlaneFillColor has been deprecated since 27.5 and will be removed in a future release, use sectionFillColor instead\"\n );\n return {\n red: this._data.sectionFillColor.r,\n green: this._data.sectionFillColor.g,\n blue: this._data.sectionFillColor.b,\n };\n }\n\n set cuttingPlaneFillColor(value: RGB) {\n console.warn(\n \"Options.cuttingPlaneFillColor has been deprecated since 27.5 and will be removed in a future release, use sectionFillColor instead\"\n );\n this.setProperty(\"sectionFillColor\", {\n r: value.red,\n g: value.green,\n b: value.blue,\n });\n }\n\n get enableSectionFill(): boolean {\n return this._data.enableSectionFill;\n }\n\n set enableSectionFill(value: boolean) {\n this.setProperty(\"enableSectionFill\", value);\n }\n\n get sectionFillColor(): { r: number; g: number; b: number } {\n return this._data.sectionFillColor;\n }\n\n set sectionFillColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"sectionFillColor\", value);\n }\n\n get sectionUseObjectColor(): boolean {\n return this._data.sectionUseObjectColor;\n }\n\n set sectionUseObjectColor(value: boolean) {\n this.setProperty(\"sectionUseObjectColor\", value);\n }\n\n get enableSectionHatch(): boolean {\n return this._data.enableSectionHatch;\n }\n\n set enableSectionHatch(value: boolean) {\n this.setProperty(\"enableSectionHatch\", value);\n }\n\n get sectionHatchColor(): { r: number; g: number; b: number } {\n return this._data.sectionHatchColor;\n }\n\n set sectionHatchColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"sectionHatchColor\", value);\n }\n\n get sectionHatchScale(): number {\n return this._data.sectionHatchScale;\n }\n\n set sectionHatchScale(value: number) {\n this.setProperty(\"sectionHatchScale\", value);\n }\n\n get enableSectionOutline(): boolean {\n return this._data.enableSectionOutline;\n }\n\n set enableSectionOutline(value: boolean) {\n this.setProperty(\"enableSectionOutline\", value);\n }\n\n get sectionOutlineColor(): { r: number; g: number; b: number } {\n return this._data.sectionOutlineColor;\n }\n\n set sectionOutlineColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"sectionOutlineColor\", value);\n }\n\n get sectionOutlineWidth(): number {\n return this._data.sectionOutlineWidth;\n }\n\n set sectionOutlineWidth(value: number) {\n this.setProperty(\"sectionOutlineWidth\", value);\n }\n\n get edgesColor(): { r: number; g: number; b: number } {\n return this._data.edgesColor;\n }\n\n set edgesColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"edgesColor\", value);\n }\n\n get facesColor(): { r: number; g: number; b: number } {\n return this._data.facesColor;\n }\n\n set facesColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"facesColor\", value);\n }\n\n get edgesVisibility(): boolean {\n return this._data.edgesVisibility;\n }\n\n set edgesVisibility(value: boolean) {\n this.setProperty(\"edgesVisibility\", value);\n }\n\n get edgesOverlap(): boolean {\n return this._data.edgesOverlap;\n }\n\n set edgesOverlap(value: boolean) {\n this.setProperty(\"edgesOverlap\", value);\n }\n\n get facesOverlap(): boolean {\n return this._data.facesOverlap;\n }\n\n set facesOverlap(value: boolean) {\n this.setProperty(\"facesOverlap\", value);\n }\n\n get facesTransparancy(): number {\n return this._data.facesTransparancy;\n }\n\n set facesTransparancy(value: number) {\n this.setProperty(\"facesTransparancy\", value);\n }\n\n get enableCustomHighlight(): boolean {\n return this._data.enableCustomHighlight;\n }\n\n set enableCustomHighlight(value: boolean) {\n this.setProperty(\"enableCustomHighlight\", value);\n }\n\n get sceneGraph(): boolean {\n return this._data.sceneGraph;\n }\n\n set sceneGraph(value: boolean) {\n this.setProperty(\"sceneGraph\", value);\n if (value) {\n this.setProperty(\"enablePartialMode\", false);\n }\n }\n\n get edgeModel(): boolean {\n return Boolean(this._data.edgeModel);\n }\n\n set edgeModel(value: boolean) {\n this.setProperty(\"edgeModel\", value);\n }\n\n get reverseZoomWheel(): boolean {\n return this._data.reverseZoomWheel;\n }\n\n set reverseZoomWheel(value: boolean) {\n this.setProperty(\"reverseZoomWheel\", value);\n }\n\n get enableZoomWheel(): boolean {\n return this._data.enableZoomWheel;\n }\n\n set enableZoomWheel(value: boolean) {\n this.setProperty(\"enableZoomWheel\", value);\n }\n\n get enableGestures(): boolean {\n return this._data.enableGestures;\n }\n\n set enableGestures(value: boolean) {\n this.setProperty(\"enableGestures\", value);\n }\n\n get geometryType(): string {\n return this._data.geometryType;\n }\n\n set geometryType(value: string) {\n this.setProperty(\"geometryType\", value);\n }\n\n get rulerUnit(): string {\n return this._data.rulerUnit;\n }\n\n set rulerUnit(value: string) {\n this.setProperty(\"rulerUnit\", value);\n }\n\n get rulerPrecision(): \"Default\" | \"Auto\" | number {\n return this._data.rulerPrecision;\n }\n\n set rulerPrecision(value: \"Default\" | \"Auto\" | number) {\n this.setProperty(\"rulerPrecision\", value);\n }\n\n get cameraMode(): CameraMode {\n return this._data.cameraMode || \"perspective\";\n }\n\n set cameraMode(value: CameraMode) {\n this.setProperty(\"cameraMode\", value);\n }\n\n get snapshotMimeType(): string {\n return this._data.snapshotMimeType;\n }\n\n set snapshotMimeType(value: string) {\n this.setProperty(\"snapshotMimeType\", value);\n }\n\n get snapshotQuality(): number {\n return this._data.snapshotQuality;\n }\n\n set snapshotQuality(value: number) {\n this.setProperty(\"snapshotQuality\", value);\n }\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nexport const CanvasEvents = [\n \"click\",\n \"contextmenu\",\n \"dblclick\",\n \"mousedown\",\n \"mouseleave\",\n \"mousemove\",\n \"mouseup\",\n \"pointercancel\",\n \"pointerdown\",\n \"pointerleave\",\n \"pointermove\",\n \"pointerup\",\n \"touchcancel\",\n \"touchend\",\n \"touchmove\",\n \"touchstart\",\n \"wheel\",\n];\n\nexport const CANVAS_EVENTS = CanvasEvents;\n\n/**\n * Canvas Events.\n *\n * @event\n */\nexport interface CanvasEventMap {\n /**\n * Event that fires on mouse click.\n */\n click: MouseEvent;\n\n /**\n * Event that fires when the user attempts to open a context menu.\n */\n contextmenu: PointerEvent;\n\n /**\n * Event that fires on mouse double click.\n */\n dblclick: MouseEvent;\n\n /**\n * Event that fires on mouse button is down.\n */\n mousedown: MouseEvent;\n\n /**\n * Event that fires on mouse leave.\n */\n mouseleave: MouseEvent;\n\n /**\n * Event that fires on mouse move.\n */\n mousemove: MouseEvent;\n\n /**\n * Event that fires on mouse button is up.\n */\n mouseup: MouseEvent;\n\n /**\n * Event is fired when the browser determines that there are unlikely to be any more pointer events.\n */\n pointercancel: PointerEvent;\n\n /**\n * Event that fires on mouse button is down.\n */\n pointerdown: PointerEvent;\n\n /**\n * Event that fires on mouse leave.\n */\n pointerleave: PointerEvent;\n\n /**\n * Event that fires on mouse move.\n */\n pointermove: PointerEvent;\n\n /**\n * Event that fires on mouse button is up.\n */\n pointerup: PointerEvent;\n\n /**\n * Event that fires touch is canceled.\n */\n touchcancel: TouchEvent;\n\n /**\n * Event that fires touch is ended.\n */\n touchend: TouchEvent;\n\n /**\n * Event that fires touch is moving.\n */\n touchmove: TouchEvent;\n\n /**\n * Event that fires when touch is started.\n */\n touchstart: TouchEvent;\n\n /**\n * Event that fires when mouse wheel is moving.\n */\n wheel: MouseEvent;\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport { IInfo, IMemoryInfo, IPerformanceInfo, IRenderInfo, ISceneInfo, ISystemInfo } from \"./IInfo\";\n\nexport class Info implements IInfo {\n public performance: IPerformanceInfo; // animate\n public render: IRenderInfo; // render\n public scene: ISceneInfo; // databasechunk\n public optimizedScene: ISceneInfo; // databasechunk\n public memory: IMemoryInfo; // databasechunk\n public system: ISystemInfo; // initialize, options, resize\n\n constructor() {\n this.performance = {\n fps: 0,\n frameTime: 0,\n timeToFirstRender: 0,\n loadTime: 0,\n };\n\n this.render = {\n viewport: { width: 0, height: 0 },\n antialiasing: \"\",\n drawCalls: 0,\n triangles: 0,\n points: 0,\n lines: 0,\n };\n\n this.scene = {\n objects: 0,\n triangles: 0,\n points: 0,\n lines: 0,\n edges: 0,\n };\n\n this.optimizedScene = {\n objects: 0,\n triangles: 0,\n points: 0,\n lines: 0,\n edges: 0,\n };\n\n this.memory = {\n geometries: 0,\n geometryBytes: 0,\n optimizedGeometryBytes: 0,\n textures: 0,\n textureBytes: 0,\n materials: 0,\n totalEstimatedGpuBytes: 0,\n usedJSHeapSize: 0,\n };\n\n this.system = {\n webglRenderer: \"\",\n webglVendor: \"\",\n };\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0BA,MAAM,gBAAgB,CAAA;IAAtB,IAAA,WAAA,GAAA;IACmB,QAAA,IAAA,CAAA,SAAS,GAAG,IAAI,GAAG,EAAoB;QAuC1D;IArCE,IAAA,eAAe,CAAC,EAAU,EAAE,OAAwB,EAAE,WAAiC,EAAE,OAAa,EAAA;IACpG,QAAA,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,CAAC;QAC/D;QAEA,oBAAoB,CAAC,EAAU,EAAE,KAAa,EAAA;YAC5C,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC,MAAe,EAAE,GAAG,IAAI,KAAK,IAAI,CAAC,cAAc,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC;QACrG;IAEA,IAAA,UAAU,CAAC,EAAU,EAAA;YACnB,OAAO,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;QAC/B;QAEA,WAAW,GAAA;IACT,QAAA,MAAM,GAAG,GAAG,IAAI,GAAG,EAAoB;YACvC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,GAAG,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;IAC3D,QAAA,OAAO,GAAG;QACZ;IAEA,IAAA,cAAc,CAAC,EAAU,EAAE,MAAe,EAAE,GAAG,IAAW,EAAA;YACxD,MAAM,OAAO,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;YACtC,IAAI,CAAC,OAAO,EAAE;gBACZ,IAAI,MAAM,EAAE;oBACV,MAAM,gBAAgB,GAAG,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;IACrD,gBAAA,IAAI,gBAAgB;IAAE,oBAAA,OAAO,MAAM,CAAC,gBAAgB,CAAC,EAAE,CAAC;gBAC1D;IAEA,YAAA,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,CAAA,WAAA,CAAa,CAAC;IACzC,YAAA,OAAO,SAAS;YAClB;IAEA,QAAA,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,OAAO;IACpC,QAAA,MAAM,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC;IAExD,QAAA,MAAM,aAAN,MAAM,KAAA,MAAA,GAAA,MAAA,GAAN,MAAM,CAAE,IAAI,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC;IAEjD,QAAA,OAAO,MAAM;QACf;IACD;IAED,MAAM,iBAAiB,GAAG,IAAI,GAAG,EAA4B;IAE7D,SAAS,gBAAgB,CAAC,UAAU,GAAG,EAAE,EAAA;QACvC,IAAI,MAAM,GAAG,iBAAiB,CAAC,GAAG,CAAC,UAAU,CAAC;QAC9C,IAAI,CAAC,MAAM,EAAE;IACX,QAAA,MAAM,GAAG,IAAI,gBAAgB,EAAE;IAC/B,QAAA,iBAAiB,CAAC,GAAG,CAAC,UAAU,EAAE,MAAM,CAAC;QAC3C;IACA,IAAA,OAAO,MAAM;IACf;;UCnDa,OAAO,CAAA;IAGlB,IAAA,WAAA,CAAY,MAAe,EAAA;YAF3B,IAAA,CAAA,IAAI,GAAG,EAAE;QAEqB;IAE9B,IAAA,OAAO,KAAU;IAClB;;ICND,MAAM,gBAAgB,CAAA;IAAtB,IAAA,WAAA,GAAA;IACmB,QAAA,IAAA,CAAA,UAAU,GAAG,IAAI,GAAG,EAA4B;QA0BnE;QAxBE,eAAe,CAAC,IAAY,EAAE,QAA0B,EAAA;YACtD,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,EAAE,QAAQ,CAAC;QACrC;QAEA,oBAAoB,CAAC,IAAY,EAAE,KAAa,EAAA;YAC9C,MAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC;IAC1C,QAAA,IAAI,QAAQ;IAAE,YAAA,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC,MAAe,KAAK,QAAQ,CAAC,MAAM,CAAC,CAAC;QAClF;QAEA,WAAW,GAAA;IACT,QAAA,MAAM,GAAG,GAAG,IAAI,GAAG,EAA4B;YAC/C,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,GAAG,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;IAC5D,QAAA,OAAO,GAAG;QACZ;QAEA,aAAa,CAAC,IAAY,EAAE,MAAe,EAAA;YACzC,MAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC;IAC1C,QAAA,IAAI,CAAC,QAAQ;IAAE,YAAA,OAAO,IAAI;IAE1B,QAAA,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,QAAA,OAAO,CAAC,IAAI,GAAG,IAAI;IAEnB,QAAA,OAAO,OAAO;QAChB;IACD;IAED,MAAM,iBAAiB,GAAG,IAAI,GAAG,EAA4B;IAE7D,SAAS,gBAAgB,CAAC,UAAU,GAAG,EAAE,EAAA;QACvC,IAAI,MAAM,GAAG,iBAAiB,CAAC,GAAG,CAAC,UAAU,CAAC;QAC9C,IAAI,CAAC,MAAM,EAAE;IACX,QAAA,MAAM,GAAG,IAAI,gBAAgB,EAAE;IAC/B,QAAA,iBAAiB,CAAC,GAAG,CAAC,UAAU,EAAE,MAAM,CAAC;QAC3C;IACA,IAAA,OAAO,MAAM;IACf;;UCtCa,SAAS,CAAA;IAGpB,IAAA,WAAA,CAAY,MAAe,EAAA;YAF3B,IAAA,CAAA,IAAI,GAAG,EAAE;QAEqB;IAE9B,IAAA,OAAO,KAAU;IAClB;;ICND,MAAM,UAAU,CAAA;IAAhB,IAAA,WAAA,GAAA;IACmB,QAAA,IAAA,CAAA,UAAU,GAAG,IAAI,GAAG,EAA8B;QA0BrE;QAxBE,iBAAiB,CAAC,IAAY,EAAE,QAA4B,EAAA;YAC1D,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,EAAE,QAAQ,CAAC;QACrC;QAEA,sBAAsB,CAAC,IAAY,EAAE,KAAa,EAAA;YAChD,MAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC;IAC1C,QAAA,IAAI,QAAQ;IAAE,YAAA,IAAI,CAAC,iBAAiB,CAAC,KAAK,EAAE,CAAC,MAAe,KAAK,QAAQ,CAAC,MAAM,CAAC,CAAC;QACpF;QAEA,aAAa,GAAA;IACX,QAAA,MAAM,GAAG,GAAG,IAAI,GAAG,EAA8B;YACjD,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,GAAG,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;IAC5D,QAAA,OAAO,GAAG;QACZ;QAEA,eAAe,CAAC,IAAY,EAAE,MAAe,EAAA;YAC3C,MAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC;IAC1C,QAAA,IAAI,CAAC,QAAQ;IAAE,YAAA,OAAO,IAAI;IAE1B,QAAA,MAAM,SAAS,GAAG,QAAQ,CAAC,MAAM,CAAC;IAClC,QAAA,SAAS,CAAC,IAAI,GAAG,IAAI;IAErB,QAAA,OAAO,SAAS;QAClB;IACD;IAED,MAAM,WAAW,GAAG,IAAI,GAAG,EAAsB;IAEjD,SAAS,kBAAkB,CAAC,UAAU,GAAG,EAAE,EAAA;QACzC,IAAI,MAAM,GAAG,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC;QACxC,IAAI,CAAC,MAAM,EAAE;IACX,QAAA,MAAM,GAAG,IAAI,UAAU,EAAE;IACzB,QAAA,WAAW,CAAC,GAAG,CAAC,UAAU,EAAE,MAAM,CAAC;QACrC;IACA,IAAA,OAAO,MAAM;IACf;;UCvCa,MAAM,CAAA;IAAnB,IAAA,WAAA,GAAA;YACS,IAAA,CAAA,IAAI,GAAG,EAAE;IACT,QAAA,IAAA,CAAA,eAAe,GAAoB,IAAI,eAAe,EAAE;QAgCjE;QA9BE,OAAO,GAAA;YACL,IAAI,CAAC,MAAM,EAAE;QACf;QAEA,SAAS,CAAC,IAAgB,EAAE,MAAe,EAAA;IACzC,QAAA,OAAO,KAAK;QACd;IAEA,IAAA,IAAI,CAAC,IAAgB,EAAE,MAAe,EAAE,MAAmB,EAAA;IACzD,QAAA,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC;QAC9B;QAEA,MAAM,GAAA;IACJ,QAAA,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE;QAC9B;QAEA,KAAK,GAAA;IACH,QAAA,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,KAAI;IAC7B,YAAA,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;IACxB,QAAA,CAAC,CAAC;QACJ;IAEA,IAAA,eAAe,CAAC,IAAgB,EAAA;YAC9B,MAAM,KAAK,GAAG,sBAAsB;YAEpC,IAAI,OAAO,IAAI,KAAK,QAAQ;IAAE,YAAA,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE;IAClE,aAAA,IAAI,IAAI,YAAY,UAAU,CAAC,IAAI;IAAE,YAAA,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE;IAExF,QAAA,OAAO,EAAE;QACX;IACD;;ICjCD,MAAM,OAAO,CAAA;IAAb,IAAA,WAAA,GAAA;IACmB,QAAA,IAAA,CAAA,UAAU,GAAG,IAAI,GAAG,EAA2B;QA2BlE;QAzBE,cAAc,CAAC,IAAY,EAAE,QAAyB,EAAA;YACpD,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,EAAE,QAAQ,CAAC;QACrC;IAEA,IAAA,SAAS,CAAC,IAAY,EAAA;YACpB,OAAO,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC;QAClC;QAEA,UAAU,GAAA;IACR,QAAA,MAAM,GAAG,GAAG,IAAI,GAAG,EAA2B;YAC9C,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,GAAG,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;IAC5D,QAAA,OAAO,GAAG;QACZ;IAEA,IAAA,YAAY,CAAC,MAAe,EAAE,IAAgB,EAAE,MAAe,EAAA;YAC7D,IAAI,MAAM,GAAmB,IAAI;YACjC,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,GAAG,KAAI;IACxC,YAAA,MAAM,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;gBAC/B,IAAI,MAAM,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,EAAE;oBAClC,MAAM,GAAG,MAAM;IACf,gBAAA,MAAM,CAAC,IAAI,GAAG,GAAG;gBACnB;IACF,QAAA,CAAC,CAAC;IACF,QAAA,OAAO,MAAM;QACf;IACD;IAED,MAAM,QAAQ,GAAG,IAAI,GAAG,EAAmB;IAE3C,SAAS,eAAe,CAAC,UAAU,GAAG,EAAE,EAAA;QACtC,IAAI,MAAM,GAAG,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC;QACrC,IAAI,CAAC,MAAM,EAAE;IACX,QAAA,MAAM,GAAG,IAAI,OAAO,EAAE;IACtB,QAAA,QAAQ,CAAC,GAAG,CAAC,UAAU,EAAE,MAAM,CAAC;QAClC;IACA,IAAA,OAAO,MAAM;IACf;;aC6SgB,cAAc,GAAA;QAC5B,OAAO;IACL,QAAA,OAAO,EAAE,IAAI;IACb,QAAA,eAAe,EAAE,IAAI;IACrB,QAAA,YAAY,EAAE,IAAI;IAClB,QAAA,YAAY,EAAE,KAAK;IACnB,QAAA,OAAO,EAAE,KAAK;IACd,QAAA,gBAAgB,EAAE,CAAC;IACnB,QAAA,gBAAgB,EAAE,CAAC;IACnB,QAAA,gBAAgB,EAAE,KAAK;IACvB,QAAA,mBAAmB,EAAE,IAAI;IACzB,QAAA,iBAAiB,EAAE,KAAK;IACxB,QAAA,WAAW,EAAE,UAAU;IACvB,QAAA,qBAAqB,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE;IAC7D,QAAA,iBAAiB,EAAE,IAAI;IACvB,QAAA,gBAAgB,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE;IAC/C,QAAA,qBAAqB,EAAE,KAAK;IAC5B,QAAA,kBAAkB,EAAE,IAAI;IACxB,QAAA,iBAAiB,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;IACvC,QAAA,iBAAiB,EAAE,CAAC;IACpB,QAAA,oBAAoB,EAAE,IAAI;IAC1B,QAAA,mBAAmB,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;IACzC,QAAA,mBAAmB,EAAE,CAAC;IACtB,QAAA,UAAU,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE;IACzC,QAAA,UAAU,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE;IACzC,QAAA,eAAe,EAAE,IAAI;IACrB,QAAA,YAAY,EAAE,IAAI;IAClB,QAAA,YAAY,EAAE,KAAK;IACnB,QAAA,iBAAiB,EAAE,GAAG;IACtB,QAAA,qBAAqB,EAAE,IAAI;IAC3B,QAAA,UAAU,EAAE,KAAK;IACjB,QAAA,SAAS,EAAE,IAAI;IACf,QAAA,gBAAgB,EAAE,KAAK;IACvB,QAAA,eAAe,EAAE,IAAI;IACrB,QAAA,cAAc,EAAE,IAAI;IACpB,QAAA,YAAY,EAAE,MAAM;IACpB,QAAA,SAAS,EAAE,SAAS;IACpB,QAAA,cAAc,EAAE,CAAC;IACjB,QAAA,UAAU,EAAE,aAAa;IACzB,QAAA,gBAAgB,EAAE,YAAY;IAC9B,QAAA,eAAe,EAAE,IAAI;SACtB;IACH;;UC9Xa,OAAO,CAAA;IAIlB,IAAA,WAAA,CAAY,OAAuB,EAAA;IACjC,QAAA,IAAI,CAAC,QAAQ,GAAG,OAAO;IACvB,QAAA,IAAI,CAAC,KAAK,GAAG,cAAc,EAAE;YAC7B,IAAI,CAAC,eAAe,EAAE;QACxB;IAEA,IAAA,OAAO,QAAQ,GAAA;YACb,OAAO,cAAc,EAAE;QACzB;QAEA,MAAM,GAAA;IACJ,QAAA,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,EAAE;gBAC/B,IAAI,CAAC,aAAa,EAAE;IACpB,YAAA,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;YAC3D;QACF;QAEA,aAAa,GAAA;YACX,IAAI,OAAO,MAAM,KAAK,WAAW;IAC/B,YAAA,IAAI;IACF,gBAAA,YAAY,CAAC,OAAO,CAAC,oBAAoB,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBACvE;gBAAE,OAAO,KAAK,EAAE;IACd,gBAAA,OAAO,CAAC,KAAK,CAAC,8BAA8B,EAAE,KAAK,CAAC;gBACtD;QACJ;QAEA,eAAe,GAAA;YACb,IAAI,OAAO,MAAM,KAAK,WAAW;IAC/B,YAAA,IAAI;oBACF,MAAM,IAAI,GAAG,YAAY,CAAC,OAAO,CAAC,oBAAoB,CAAC;oBACvD,IAAI,IAAI,EAAE;wBACR,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;IAC7B,oBAAA,IAAI,CAAC,IAAI,GAAG,EAAE,GAAG,IAAI,EAAE;oBACzB;gBACF;gBAAE,OAAO,KAAK,EAAE;IACd,gBAAA,OAAO,CAAC,KAAK,CAAC,8BAA8B,EAAE,KAAK,CAAC;gBACtD;QACJ;IAOA,IAAA,eAAe,CAAC,MAAiB,EAAA;IAC/B,QAAA,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,EAAE;IACnC,QAAA,IAAI,MAAM,KAAK,SAAS,EAAE;gBACxB,MAAM,SAAS,GAAsB,EAAE;IACvC,YAAA,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE;oBAC1B,IAAI,KAAK,IAAI,QAAQ;wBAAE,SAAS,CAAC,KAAK,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC;gBAC3D;IACA,YAAA,IAAI,CAAC,IAAI,GAAG,SAAS;YACvB;iBAAO;IACL,YAAA,IAAI,CAAC,IAAI,GAAG,QAAQ;YACtB;QACF;QAEA,WAAW,CAA2B,GAAM,EAAE,KAAK,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,GAAG,CAAC,EAAA;YAE3E,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,KAAK,EAAE;IAC7B,YAAA,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK;gBACvB,IAAI,CAAC,MAAM,EAAE;YACf;QACF;IAEA,IAAA,IAAI,IAAI,GAAA;YACN,OAAO,IAAI,CAAC,KAAK;QACnB;QAEA,IAAI,IAAI,CAAC,KAAwB,EAAA;IAC/B,QAAA,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,EAAE;IACnC,QAAA,MAAM,MAAM,GAAa,EAAE,GAAG,QAAQ,EAAE,GAAG,IAAI,CAAC,KAAK,EAAE,GAAG,KAAK,EAAE;YAEjE,KAAK,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE;IACvC,YAAA,IAAI,MAAM,CAAC,GAAG,CAAC,KAAK,SAAS;oBAAE,MAAM,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC,GAAG,CAAC;YAC5D;IACA,QAAA,IAAI,CAAC,KAAK,GAAG,MAAM;IAEnB,QAAA,IAAI,IAAI,CAAC,KAAK,CAAC,iBAAiB,EAAE;IAChC,YAAA,IAAI,CAAC,KAAK,CAAC,mBAAmB,GAAG,IAAI;IACrC,YAAA,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,KAAK;YAC/B;IAEA,QAAA,IAAI,CAAC,KAAK,CAAC,gBAAgB,IAAI,KAAK,CAAC,qBAAqB;IACxD,YAAA,IAAI,CAAC,KAAK,CAAC,gBAAgB,GAAG;IAC5B,gBAAA,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,GAAG;IAClC,gBAAA,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,KAAK;IACpC,gBAAA,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,IAAI;iBACpC;YACH,IAAI,CAAC,MAAM,EAAE;QACf;IAEA,IAAA,IAAI,OAAO,GAAA;IACT,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO;QAC3B;QAEA,IAAI,OAAO,CAAC,KAAc,EAAA;IACxB,QAAA,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,KAAK,CAAC;QACpC;IAEA,IAAA,IAAI,eAAe,GAAA;IACjB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,eAAe;QACnC;QAEA,IAAI,eAAe,CAAC,KAAc,EAAA;IAChC,QAAA,IAAI,CAAC,WAAW,CAAC,iBAAiB,EAAE,KAAK,CAAC;QAC5C;IAEA,IAAA,IAAI,YAAY,GAAA;IACd,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,YAAY;QAChC;QAEA,IAAI,YAAY,CAAC,KAAuB,EAAA;IACtC,QAAA,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,KAAK,CAAC;QACzC;IAEA,IAAA,IAAI,YAAY,GAAA;IACd,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,YAAY;QAChC;QAEA,IAAI,YAAY,CAAC,KAAc,EAAA;IAC7B,QAAA,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,KAAK,CAAC;QACzC;IAEA,IAAA,IAAI,OAAO,GAAA;IACT,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO;QAC3B;QAEA,IAAI,OAAO,CAAC,KAAc,EAAA;IACxB,QAAA,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,KAAK,CAAC;QACpC;IAEA,IAAA,IAAI,gBAAgB,GAAA;IAClB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,gBAAgB;QACpC;QAEA,IAAI,gBAAgB,CAAC,KAAa,EAAA;IAChC,QAAA,IAAI,CAAC,WAAW,CAAC,kBAAkB,EAAE,KAAK,CAAC;QAC7C;IAEA,IAAA,IAAI,gBAAgB,GAAA;IAClB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,gBAAgB;QACpC;QAEA,IAAI,gBAAgB,CAAC,KAAa,EAAA;IAChC,QAAA,IAAI,CAAC,WAAW,CAAC,kBAAkB,EAAE,KAAK,CAAC;QAC7C;IAEA,IAAA,IAAI,gBAAgB,GAAA;IAClB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,gBAAgB;QACpC;QAEA,IAAI,gBAAgB,CAAC,KAAc,EAAA;IACjC,QAAA,IAAI,CAAC,WAAW,CAAC,kBAAkB,EAAE,KAAK,CAAC;QAC7C;IAEA,IAAA,IAAI,mBAAmB,GAAA;IACrB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,mBAAmB;QACvC;QAEA,IAAI,mBAAmB,CAAC,KAAc,EAAA;IACpC,QAAA,IAAI,CAAC,WAAW,CAAC,qBAAqB,EAAE,KAAK,CAAC;YAC9C,IAAI,CAAC,KAAK,EAAE;IACV,YAAA,IAAI,CAAC,WAAW,CAAC,mBAAmB,EAAE,KAAK,CAAC;YAC9C;QACF;IAEA,IAAA,IAAI,iBAAiB,GAAA;IACnB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,iBAAiB;QACrC;QAEA,IAAI,iBAAiB,CAAC,KAAc,EAAA;IAClC,QAAA,IAAI,CAAC,WAAW,CAAC,mBAAmB,EAAE,KAAK,CAAC;YAC5C,IAAI,KAAK,EAAE;IACT,YAAA,IAAI,CAAC,WAAW,CAAC,qBAAqB,EAAE,IAAI,CAAC;IAC7C,YAAA,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE,KAAK,CAAC;YACvC;QACF;IAEA,IAAA,IAAI,WAAW,GAAA;IACb,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,WAAW;QAC/B;QAEA,IAAI,WAAW,CAAC,KAAa,EAAA;IAC3B,QAAA,IAAI,CAAC,WAAW,CAAC,aAAa,EAAE,KAAK,CAAC;QACxC;IAEA,IAAA,IAAI,qBAAqB,GAAA;IACvB,QAAA,OAAO,CAAC,IAAI,CACV,oIAAoI,CACrI;YACD,OAAO;IACL,YAAA,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAClC,YAAA,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;IACpC,YAAA,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;aACpC;QACH;QAEA,IAAI,qBAAqB,CAAC,KAAU,EAAA;IAClC,QAAA,OAAO,CAAC,IAAI,CACV,oIAAoI,CACrI;IACD,QAAA,IAAI,CAAC,WAAW,CAAC,kBAAkB,EAAE;gBACnC,CAAC,EAAE,KAAK,CAAC,GAAG;gBACZ,CAAC,EAAE,KAAK,CAAC,KAAK;gBACd,CAAC,EAAE,KAAK,CAAC,IAAI;IACd,SAAA,CAAC;QACJ;IAEA,IAAA,IAAI,iBAAiB,GAAA;IACnB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,iBAAiB;QACrC;QAEA,IAAI,iBAAiB,CAAC,KAAc,EAAA;IAClC,QAAA,IAAI,CAAC,WAAW,CAAC,mBAAmB,EAAE,KAAK,CAAC;QAC9C;IAEA,IAAA,IAAI,gBAAgB,GAAA;IAClB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,gBAAgB;QACpC;QAEA,IAAI,gBAAgB,CAAC,KAA0C,EAAA;IAC7D,QAAA,IAAI,CAAC,WAAW,CAAC,kBAAkB,EAAE,KAAK,CAAC;QAC7C;IAEA,IAAA,IAAI,qBAAqB,GAAA;IACvB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,qBAAqB;QACzC;QAEA,IAAI,qBAAqB,CAAC,KAAc,EAAA;IACtC,QAAA,IAAI,CAAC,WAAW,CAAC,uBAAuB,EAAE,KAAK,CAAC;QAClD;IAEA,IAAA,IAAI,kBAAkB,GAAA;IACpB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,kBAAkB;QACtC;QAEA,IAAI,kBAAkB,CAAC,KAAc,EAAA;IACnC,QAAA,IAAI,CAAC,WAAW,CAAC,oBAAoB,EAAE,KAAK,CAAC;QAC/C;IAEA,IAAA,IAAI,iBAAiB,GAAA;IACnB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,iBAAiB;QACrC;QAEA,IAAI,iBAAiB,CAAC,KAA0C,EAAA;IAC9D,QAAA,IAAI,CAAC,WAAW,CAAC,mBAAmB,EAAE,KAAK,CAAC;QAC9C;IAEA,IAAA,IAAI,iBAAiB,GAAA;IACnB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,iBAAiB;QACrC;QAEA,IAAI,iBAAiB,CAAC,KAAa,EAAA;IACjC,QAAA,IAAI,CAAC,WAAW,CAAC,mBAAmB,EAAE,KAAK,CAAC;QAC9C;IAEA,IAAA,IAAI,oBAAoB,GAAA;IACtB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,oBAAoB;QACxC;QAEA,IAAI,oBAAoB,CAAC,KAAc,EAAA;IACrC,QAAA,IAAI,CAAC,WAAW,CAAC,sBAAsB,EAAE,KAAK,CAAC;QACjD;IAEA,IAAA,IAAI,mBAAmB,GAAA;IACrB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,mBAAmB;QACvC;QAEA,IAAI,mBAAmB,CAAC,KAA0C,EAAA;IAChE,QAAA,IAAI,CAAC,WAAW,CAAC,qBAAqB,EAAE,KAAK,CAAC;QAChD;IAEA,IAAA,IAAI,mBAAmB,GAAA;IACrB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,mBAAmB;QACvC;QAEA,IAAI,mBAAmB,CAAC,KAAa,EAAA;IACnC,QAAA,IAAI,CAAC,WAAW,CAAC,qBAAqB,EAAE,KAAK,CAAC;QAChD;IAEA,IAAA,IAAI,UAAU,GAAA;IACZ,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,UAAU;QAC9B;QAEA,IAAI,UAAU,CAAC,KAA0C,EAAA;IACvD,QAAA,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE,KAAK,CAAC;QACvC;IAEA,IAAA,IAAI,UAAU,GAAA;IACZ,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,UAAU;QAC9B;QAEA,IAAI,UAAU,CAAC,KAA0C,EAAA;IACvD,QAAA,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE,KAAK,CAAC;QACvC;IAEA,IAAA,IAAI,eAAe,GAAA;IACjB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,eAAe;QACnC;QAEA,IAAI,eAAe,CAAC,KAAc,EAAA;IAChC,QAAA,IAAI,CAAC,WAAW,CAAC,iBAAiB,EAAE,KAAK,CAAC;QAC5C;IAEA,IAAA,IAAI,YAAY,GAAA;IACd,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,YAAY;QAChC;QAEA,IAAI,YAAY,CAAC,KAAc,EAAA;IAC7B,QAAA,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,KAAK,CAAC;QACzC;IAEA,IAAA,IAAI,YAAY,GAAA;IACd,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,YAAY;QAChC;QAEA,IAAI,YAAY,CAAC,KAAc,EAAA;IAC7B,QAAA,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,KAAK,CAAC;QACzC;IAEA,IAAA,IAAI,iBAAiB,GAAA;IACnB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,iBAAiB;QACrC;QAEA,IAAI,iBAAiB,CAAC,KAAa,EAAA;IACjC,QAAA,IAAI,CAAC,WAAW,CAAC,mBAAmB,EAAE,KAAK,CAAC;QAC9C;IAEA,IAAA,IAAI,qBAAqB,GAAA;IACvB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,qBAAqB;QACzC;QAEA,IAAI,qBAAqB,CAAC,KAAc,EAAA;IACtC,QAAA,IAAI,CAAC,WAAW,CAAC,uBAAuB,EAAE,KAAK,CAAC;QAClD;IAEA,IAAA,IAAI,UAAU,GAAA;IACZ,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,UAAU;QAC9B;QAEA,IAAI,UAAU,CAAC,KAAc,EAAA;IAC3B,QAAA,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE,KAAK,CAAC;YACrC,IAAI,KAAK,EAAE;IACT,YAAA,IAAI,CAAC,WAAW,CAAC,mBAAmB,EAAE,KAAK,CAAC;YAC9C;QACF;IAEA,IAAA,IAAI,SAAS,GAAA;YACX,OAAO,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC;QACtC;QAEA,IAAI,SAAS,CAAC,KAAc,EAAA;IAC1B,QAAA,IAAI,CAAC,WAAW,CAAC,WAAW,EAAE,KAAK,CAAC;QACtC;IAEA,IAAA,IAAI,gBAAgB,GAAA;IAClB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,gBAAgB;QACpC;QAEA,IAAI,gBAAgB,CAAC,KAAc,EAAA;IACjC,QAAA,IAAI,CAAC,WAAW,CAAC,kBAAkB,EAAE,KAAK,CAAC;QAC7C;IAEA,IAAA,IAAI,eAAe,GAAA;IACjB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,eAAe;QACnC;QAEA,IAAI,eAAe,CAAC,KAAc,EAAA;IAChC,QAAA,IAAI,CAAC,WAAW,CAAC,iBAAiB,EAAE,KAAK,CAAC;QAC5C;IAEA,IAAA,IAAI,cAAc,GAAA;IAChB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,cAAc;QAClC;QAEA,IAAI,cAAc,CAAC,KAAc,EAAA;IAC/B,QAAA,IAAI,CAAC,WAAW,CAAC,gBAAgB,EAAE,KAAK,CAAC;QAC3C;IAEA,IAAA,IAAI,YAAY,GAAA;IACd,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,YAAY;QAChC;QAEA,IAAI,YAAY,CAAC,KAAa,EAAA;IAC5B,QAAA,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,KAAK,CAAC;QACzC;IAEA,IAAA,IAAI,SAAS,GAAA;IACX,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS;QAC7B;QAEA,IAAI,SAAS,CAAC,KAAa,EAAA;IACzB,QAAA,IAAI,CAAC,WAAW,CAAC,WAAW,EAAE,KAAK,CAAC;QACtC;IAEA,IAAA,IAAI,cAAc,GAAA;IAChB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,cAAc;QAClC;QAEA,IAAI,cAAc,CAAC,KAAkC,EAAA;IACnD,QAAA,IAAI,CAAC,WAAW,CAAC,gBAAgB,EAAE,KAAK,CAAC;QAC3C;IAEA,IAAA,IAAI,UAAU,GAAA;IACZ,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,UAAU,IAAI,aAAa;QAC/C;QAEA,IAAI,UAAU,CAAC,KAAiB,EAAA;IAC9B,QAAA,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE,KAAK,CAAC;QACvC;IAEA,IAAA,IAAI,gBAAgB,GAAA;IAClB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,gBAAgB;QACpC;QAEA,IAAI,gBAAgB,CAAC,KAAa,EAAA;IAChC,QAAA,IAAI,CAAC,WAAW,CAAC,kBAAkB,EAAE,KAAK,CAAC;QAC7C;IAEA,IAAA,IAAI,eAAe,GAAA;IACjB,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,eAAe;QACnC;QAEA,IAAI,eAAe,CAAC,KAAa,EAAA;IAC/B,QAAA,IAAI,CAAC,WAAW,CAAC,iBAAiB,EAAE,KAAK,CAAC;QAC5C;IACD;;AClbM,UAAM,YAAY,GAAG;QAC1B,OAAO;QACP,aAAa;QACb,UAAU;QACV,WAAW;QACX,YAAY;QACZ,WAAW;QACX,SAAS;QACT,eAAe;QACf,aAAa;QACb,cAAc;QACd,aAAa;QACb,WAAW;QACX,aAAa;QACb,UAAU;QACV,WAAW;QACX,YAAY;QACZ,OAAO;;AAGF,UAAM,aAAa,GAAG;;UClBhB,IAAI,CAAA;IAQf,IAAA,WAAA,GAAA;YACE,IAAI,CAAC,WAAW,GAAG;IACjB,YAAA,GAAG,EAAE,CAAC;IACN,YAAA,SAAS,EAAE,CAAC;IACZ,YAAA,iBAAiB,EAAE,CAAC;IACpB,YAAA,QAAQ,EAAE,CAAC;aACZ;YAED,IAAI,CAAC,MAAM,GAAG;gBACZ,QAAQ,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE;IACjC,YAAA,YAAY,EAAE,EAAE;IAChB,YAAA,SAAS,EAAE,CAAC;IACZ,YAAA,SAAS,EAAE,CAAC;IACZ,YAAA,MAAM,EAAE,CAAC;IACT,YAAA,KAAK,EAAE,CAAC;aACT;YAED,IAAI,CAAC,KAAK,GAAG;IACX,YAAA,OAAO,EAAE,CAAC;IACV,YAAA,SAAS,EAAE,CAAC;IACZ,YAAA,MAAM,EAAE,CAAC;IACT,YAAA,KAAK,EAAE,CAAC;IACR,YAAA,KAAK,EAAE,CAAC;aACT;YAED,IAAI,CAAC,cAAc,GAAG;IACpB,YAAA,OAAO,EAAE,CAAC;IACV,YAAA,SAAS,EAAE,CAAC;IACZ,YAAA,MAAM,EAAE,CAAC;IACT,YAAA,KAAK,EAAE,CAAC;IACR,YAAA,KAAK,EAAE,CAAC;aACT;YAED,IAAI,CAAC,MAAM,GAAG;IACZ,YAAA,UAAU,EAAE,CAAC;IACb,YAAA,aAAa,EAAE,CAAC;IAChB,YAAA,sBAAsB,EAAE,CAAC;IACzB,YAAA,QAAQ,EAAE,CAAC;IACX,YAAA,YAAY,EAAE,CAAC;IACf,YAAA,SAAS,EAAE,CAAC;IACZ,YAAA,sBAAsB,EAAE,CAAC;IACzB,YAAA,cAAc,EAAE,CAAC;aAClB;YAED,IAAI,CAAC,MAAM,GAAG;IACZ,YAAA,aAAa,EAAE,EAAE;IACjB,YAAA,WAAW,EAAE,EAAE;aAChB;QACH;IACD;;;;;;;;;;;;;;;;;;;"}
|
|
1
|
+
{"version":3,"file":"viewer-core.js","sources":["../src/commands/Commands.ts","../src/draggers/Dragger.ts","../src/draggers/Draggers.ts","../src/components/Component.ts","../src/components/Components.ts","../src/loaders/Loader.ts","../src/loaders/Loaders.ts","../src/options/IOptions.ts","../src/options/Options.ts","../src/viewer/CanvasEvents.ts","../src/viewer/Info.ts"],"sourcesContent":["///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport { IViewer } from \"../viewer/IViewer\";\nimport { ICommand, ICommandHandler, ICommandDescription, ICommandsRegistry } from \"./ICommands\";\n\nclass CommandsRegistry implements ICommandsRegistry {\n private readonly _commands = new Map<string, ICommand>();\n\n registerCommand(id: string, handler: ICommandHandler, description?: ICommandDescription, thisArg?: any): void {\n this._commands.set(id, { id, handler, thisArg, description });\n }\n\n registerCommandAlias(id: string, alias: string): void {\n this.registerCommand(alias, (viewer: IViewer, ...args) => this.executeCommand(id, viewer, ...args));\n }\n\n getCommand(id: string): ICommand | undefined {\n return this._commands.get(id);\n }\n\n getCommands(): Map<string, ICommand> {\n const map = new Map<string, ICommand>();\n this._commands.forEach((value, key) => map.set(key, value));\n return map;\n }\n\n executeCommand(id: string, viewer: IViewer, ...args: any[]): any {\n const command = this._commands.get(id);\n if (!command) {\n if (viewer) {\n const isDraggerCommand = viewer.draggers.includes(id);\n if (isDraggerCommand) return viewer.setActiveDragger(id);\n }\n\n console.warn(`Command '${id}' not found`);\n return undefined;\n }\n\n const { handler, thisArg } = command;\n const result = handler.apply(thisArg, [viewer, ...args]);\n\n viewer?.emit({ type: \"command\", data: id, args });\n\n return result;\n }\n}\n\nconst _commandsRegistry = new Map<string, CommandsRegistry>();\n\nfunction commandsRegistry(viewerType = \"\"): ICommandsRegistry {\n let result = _commandsRegistry.get(viewerType);\n if (!result) {\n result = new CommandsRegistry();\n _commandsRegistry.set(viewerType, result);\n }\n return result;\n}\n\nexport { commandsRegistry };\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport type { IDragger } from \"./IDraggers\";\n\nexport class Dragger implements IDragger {\n name = \"\";\n\n constructor(viewer: IViewer) {}\n\n dispose(): void {}\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport { IDragger, IDraggerProvider, IDraggersRegistry } from \"./IDraggers\";\n\nclass DraggersRegistry implements IDraggersRegistry {\n private readonly _providers = new Map<string, IDraggerProvider>();\n\n registerDragger(name: string, provider: IDraggerProvider): void {\n this._providers.set(name, provider);\n }\n\n registerDraggerAlias(name: string, alias: string): void {\n const provider = this._providers.get(name);\n if (provider) this.registerDragger(alias, (viewer: IViewer) => provider(viewer));\n }\n\n getDraggers(): Map<string, IDraggerProvider> {\n const map = new Map<string, IDraggerProvider>();\n this._providers.forEach((value, key) => map.set(key, value));\n return map;\n }\n\n createDragger(name: string, viewer: IViewer): IDragger | null {\n const provider = this._providers.get(name);\n if (!provider) return null;\n\n const dragger = provider(viewer);\n dragger.name = name;\n\n return dragger;\n }\n}\n\nconst _draggersRegistry = new Map<string, DraggersRegistry>();\n\nfunction draggersRegistry(viewerType = \"\"): IDraggersRegistry {\n let result = _draggersRegistry.get(viewerType);\n if (!result) {\n result = new DraggersRegistry();\n _draggersRegistry.set(viewerType, result);\n }\n return result;\n}\n\nexport { draggersRegistry };\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport type { IComponent } from \"./IComponents\";\n\nexport class Component implements IComponent {\n name = \"\";\n\n constructor(viewer: IViewer) {}\n\n dispose(): void {}\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport { IComponent, IComponentProvider, IComponentsRegistry } from \"./IComponents\";\n\nclass Components implements IComponentsRegistry {\n private readonly _providers = new Map<string, IComponentProvider>();\n\n registerComponent(name: string, provider: IComponentProvider): void {\n this._providers.set(name, provider);\n }\n\n registerComponentAlias(name: string, alias: string): void {\n const provider = this._providers.get(name);\n if (provider) this.registerComponent(alias, (viewer: IViewer) => provider(viewer));\n }\n\n getComponents(): Map<string, IComponentProvider> {\n const map = new Map<string, IComponentProvider>();\n this._providers.forEach((value, key) => map.set(key, value));\n return map;\n }\n\n createComponent(name: string, viewer: IViewer): IComponent | null {\n const provider = this._providers.get(name);\n if (!provider) return null;\n\n const component = provider(viewer);\n component.name = name;\n\n return component;\n }\n}\n\nconst _components = new Map<string, Components>();\n\nfunction componentsRegistry(viewerType = \"\"): IComponentsRegistry {\n let result = _components.get(viewerType);\n if (!result) {\n result = new Components();\n _components.set(viewerType, result);\n }\n return result;\n}\n\nexport { componentsRegistry };\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { FileSource, ILoader, LoadParams } from \"./ILoader\";\n\nexport class Loader implements ILoader {\n public name = \"\";\n public abortController: AbortController = new AbortController();\n\n dispose(): void {\n this.cancel();\n }\n\n isSupport(file: FileSource, format?: string): boolean {\n return false;\n }\n\n load(file: FileSource, format?: string, params?: LoadParams): Promise<this> {\n return Promise.resolve(this);\n }\n\n cancel(): void {\n this.abortController.abort();\n }\n\n yield(): Promise<void> {\n return new Promise((resolve) => {\n setTimeout(resolve, 0);\n });\n }\n\n extractFileName(file: FileSource): string {\n const regex = /[^/\\\\?#:]+(?=\\?|#|$)/;\n\n if (typeof file === \"string\") return (file.match(regex) || [])[0] || \"\";\n else if (file instanceof globalThis.File) return (file.name.match(regex) || [])[0] || \"\";\n\n return \"\";\n }\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport type { IViewer } from \"../viewer/IViewer\";\nimport { FileSource, ILoader, ILoaderProvider, ILoadersRegistry } from \"./ILoader\";\n\nclass Loaders implements ILoadersRegistry {\n private readonly _providers = new Map<string, ILoaderProvider>();\n\n registerLoader(name: string, provider: ILoaderProvider): void {\n this._providers.set(name, provider);\n }\n\n getLoader(name: string): ILoaderProvider | undefined {\n return this._providers.get(name);\n }\n\n getLoaders(): Map<string, ILoaderProvider> {\n const map = new Map<string, ILoaderProvider>();\n this._providers.forEach((value, key) => map.set(key, value));\n return map;\n }\n\n createLoader(viewer: IViewer, file: FileSource, format?: string): ILoader | null {\n let result: ILoader | null = null;\n this._providers.forEach((provider, key) => {\n const loader = provider(viewer);\n if (loader.isSupport(file, format)) {\n result = loader;\n result.name = key;\n }\n });\n return result;\n }\n}\n\nconst _loaders = new Map<string, Loaders>();\n\nfunction loadersRegistry(viewerType = \"\"): ILoadersRegistry {\n let result = _loaders.get(viewerType);\n if (!result) {\n result = new Loaders();\n _loaders.set(viewerType, result);\n }\n return result;\n}\n\nexport { loadersRegistry };\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nexport type CameraMode = \"perspective\" | \"orthographic\";\n\nexport interface RGB {\n red: number;\n green: number;\n blue: number;\n}\n\n/**\n * Viewer options interface.\n */\nexport interface IOptions {\n /**\n * Show the world coordinate system axes in the bottom-left corner of the viewer.\n *\n * @defaultValue true\n */\n showWCS: boolean;\n\n /**\n * Enable camera animation.\n *\n * @defaultValue true\n */\n cameraAnimation: boolean;\n\n /**\n * Enable anti-aliasing. Can be one of:\n *\n * - `false` - Disable anti-aliasing.\n * - `true` - Enable anti-aliasing using MSAA.\n * - `fxaa` - Enable Fast Approximate anti-aliasing (FXAA).\n * - `smaa` - Enable Subpixel Morphological anti-aliasing (SMAA).\n * - `msaa` - Enable Multisample anti-aliasing (MSAA), if the underlying WebGL context supports it.\n *\n * @defaultValue true\n */\n antialiasing: boolean | string;\n\n /**\n * Show ground shadows below the model.\n *\n * @defaultValue false\n */\n groundShadow: boolean;\n\n /**\n * Enable ambient shadows.\n *\n * @defaultValue false\n */\n shadows: boolean;\n\n /**\n * Camera speed on X axis.\n *\n * @defaultValue 4\n */\n cameraAxisXSpeed: number;\n\n /**\n * Camera speed on Y axis.\n *\n * @defaultValue 1\n */\n cameraAxisYSpeed: number;\n\n /**\n * Enable ambient occlusion.\n *\n * @defaultValue false\n */\n ambientOcclusion: boolean;\n\n /**\n * Enable streaming of drawings from the Open Cloud Server.\n *\n * If streaming is disabled, the file/assembly will be loaded in one go. The viewer will only update\n * once the loading is complete, which may take a while.\n *\n * If streaming is enabled, {@link enablePartialMode | partial streaming} may be enabled as well.\n *\n * @defaultValue true\n */\n enableStreamingMode: boolean;\n\n /**\n * Enable partial streaming to be able open large drawing.\n *\n * In partial streaming, the viewer keeps only visible objects in memory and loads other objects when\n * the camera changes.\n *\n * Only used if {@link enableStreamingMode | streaming} is enabled. If partial streaming is enabled,\n * then {@link sceneGraph | scene graph} will be disabled.\n *\n * @defaultValue false\n */\n enablePartialMode: boolean;\n\n /**\n * The size of the memory buffer for graphics data, in bytes.\n *\n * @defaultValue 3294967296\n */\n memoryLimit: number;\n\n /**\n * Deprecated since `27.5`. Use {@link sectionFillColor} instead.\n *\n * @deprecated\n */\n cuttingPlaneFillColor: RGB;\n\n /**\n * Show solid fill on section caps.\n *\n * When disabled, neither the fill nor the hatch is drawn (the outline, if enabled, is still shown).\n *\n * @defaultValue true\n */\n enableSectionFill: boolean;\n\n /**\n * Section cap fill color.\n *\n * @defaultValue { red: 0xff, green: 0x98, blue: 0x00 }\n */\n sectionFillColor: { r: number; g: number; b: number };\n\n /**\n * Use the intersected object's color for the section cap fill.\n *\n * When enabled, each section cap is filled with a color derived from the intersected object and\n * `sectionFillColor` is ignored. The outline color is not affected.\n *\n * @defaultValue false\n */\n sectionUseObjectColor: boolean;\n\n /**\n * Overlay a hatch pattern on top of the section fill.\n *\n * @defaultValue true\n */\n enableSectionHatch: boolean;\n\n /**\n * Hatch line color used on top of the section fill.\n *\n * @defaultValue { red: 0x4b, green: 0x4c, blue: 0x35 }\n */\n sectionHatchColor: { r: number; g: number; b: number };\n\n /**\n * Distance between hatch lines, in screen-space pixels.\n *\n * Larger values produce sparser hatching.\n *\n * @defaultValue 8\n */\n sectionHatchScale: number;\n\n /**\n * Draw the outline contour along the section boundary.\n *\n * @defaultValue true\n */\n enableSectionOutline: boolean;\n\n /**\n * Color of the section outline contour.\n *\n * @defaultValue { red: 0, green: 0, blue: 0 }\n */\n sectionOutlineColor: { r: number; g: number; b: number };\n\n /**\n * Width of the section outline contour, in pixels.\n *\n * @defaultValue 2\n */\n sectionOutlineWidth: number;\n\n /**\n * Edges highlight color.\n */\n edgesColor: { r: number; g: number; b: number };\n\n /**\n * Faces highlight color.\n */\n facesColor: { r: number; g: number; b: number };\n\n /**\n * Show highlighted edges.\n */\n edgesVisibility: boolean;\n\n /**\n * Show highlighted edges over drawing.\n */\n edgesOverlap: boolean;\n\n /**\n * Show highlighted faces over drawing.\n */\n facesOverlap: boolean;\n\n /**\n * Highlighted faces transparency value, from 0 to 255.\n */\n facesTransparancy: number;\n\n /**\n * Enable custom highlight settings.\n */\n enableCustomHighlight: boolean;\n\n /**\n * Enable scene graph.\n *\n * Scene graph increases perfomance improvement, but consumes memory. If scene graph is enabled, then\n * {@link enablePartialMode | partial streaming} will be disabled.\n */\n sceneGraph: boolean;\n\n /**\n * Show the edges of the model:\n *\n * - `false` - No model edges are displayed. Usefull for less memory consumption.\n * - `true` - Display isolines.\n */\n edgeModel: boolean;\n\n /**\n * Reverse the mouse wheel direction for zooming:\n *\n * - `false` - Moving the wheel up zooms in, moving down zooms out.\n * - `true` - Moving the wheel up zooms out, moving down zooms in.\n */\n reverseZoomWheel: boolean;\n\n /**\n * Enable mouse wheel zooming.\n */\n enableZoomWheel: boolean;\n\n /**\n * Enable touch gestures.\n *\n * This option will be ignored when {@link enableZoomWheel | mouse wheel zooming} is disabled, since\n * gestures contains touch zoom.\n */\n enableGestures: boolean;\n\n /**\n * Preferred viewer for newely uploaded files. Can be one of:\n *\n * - `vsfx` - `VSFX` (default), for opening a file in `VisualizeJS` viewer.\n * - `gltf` - `glTF`, for opening a file in `Three.js` viewer.\n */\n geometryType: string;\n\n /**\n * Unit of measurement for the ruler tool (distance measurements).\n *\n * When set to `Default`, the ruler uses the file's native units. Otherwise, distances are\n * automatically converted to the specified unit.\n *\n * Available values:\n *\n * - `Default` - Use file's native units (recommended)\n * - `Millimeters`, `mm` - Metric: 0.001 m\n * - `Centimeters`, `cm` - Metric: 0.01 m\n * - `Meters`, `m` - Metric: 1 m (base unit)\n * - `Kilometers`, `km` - Metric: 1000 m\n * - `Micrometers`, `µm` - Metric: 0.000001 m\n * - `Inches`, `in` - Imperial: 0.0254 m\n * - `Feet`, `ft` - Imperial: 0.3048 m\n * - `Yards`, `yd` - Imperial: 0.9144 m\n * - `Miles`, `mi` - Imperial: 1609.344 m\n * - `Mils`, `mil` - Imperial: 0.0000254 m\n * - `MicroInches`, `µin` - Imperial: 0.0000000254 m\n *\n * @defaultValue \"Default\"\n */\n rulerUnit: string;\n\n /**\n * Number of decimal places to display in ruler measurements.\n *\n * Controls the precision of distance values shown by the ruler tool. Higher values provide more\n * precision but may clutter the display with unnecessary digits.\n *\n * Available values:\n *\n * - `Default` - Use file's native units precision, if supported, otherwise use 2 digits.\n * - `Auto` - Automatically choose precision based on distance value.\n * - `0`...`10` - Use specified number of decimal places (range 0-10, inclusive).\n *\n * @defaultValue 2\n */\n rulerPrecision: \"Default\" | \"Auto\" | number;\n\n /**\n * Camera projection mode:\n *\n * - `perspective` - Perspective camera with field of view.\n * - `orthographic` - Orthographic camera with parallel projection.\n *\n * @defaultValue \"perspective\"\n */\n cameraMode: CameraMode;\n\n /**\n * Default MIME type for snapshot images.\n *\n * Supported formats:\n *\n * - `image/png` - PNG format with lossless compression (recommended for quality)\n * - `image/jpeg` - JPEG format with lossy compression (smaller file size)\n * - `image/webp` - WebP format (modern browsers only)\n *\n * @defaultValue \"image/jpeg\"\n */\n snapshotMimeType: string;\n\n /**\n * Default quality level for snapshot images when using lossy formats (JPEG, WebP).\n *\n * A number between 0 and 1, where:\n *\n * - `0` - Lowest quality, smallest file size\n * - `1` - Highest quality, largest file size\n * - `0.25` - Good balance between quality and size (recommended)\n *\n * This parameter is ignored for lossless formats like PNG.\n *\n * @defaultValue 0.25\n */\n snapshotQuality: number;\n}\n\nexport function defaultOptions(): IOptions {\n return {\n showWCS: true,\n cameraAnimation: true,\n antialiasing: true,\n groundShadow: false,\n shadows: false,\n cameraAxisXSpeed: 4,\n cameraAxisYSpeed: 1,\n ambientOcclusion: false,\n enableStreamingMode: true,\n enablePartialMode: false,\n memoryLimit: 3294967296,\n cuttingPlaneFillColor: { red: 0xff, green: 0x98, blue: 0x00 },\n enableSectionFill: true,\n sectionFillColor: { r: 0xff, g: 0x98, b: 0x00 },\n sectionUseObjectColor: false,\n enableSectionHatch: true,\n sectionHatchColor: { r: 0, g: 0, b: 0 },\n sectionHatchScale: 8,\n enableSectionOutline: true,\n sectionOutlineColor: { r: 0, g: 0, b: 0 },\n sectionOutlineWidth: 2,\n edgesColor: { r: 0xff, g: 0x98, b: 0x00 },\n facesColor: { r: 0xff, g: 0x98, b: 0x00 },\n edgesVisibility: true,\n edgesOverlap: true,\n facesOverlap: false,\n facesTransparancy: 200,\n enableCustomHighlight: true,\n sceneGraph: false,\n edgeModel: true,\n reverseZoomWheel: false,\n enableZoomWheel: true,\n enableGestures: true,\n geometryType: \"vsfx\",\n rulerUnit: \"Default\",\n rulerPrecision: 2,\n cameraMode: \"perspective\",\n snapshotMimeType: \"image/jpeg\",\n snapshotQuality: 0.25,\n };\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport { IEventEmitter } from \"@inweb/eventemitter2\";\nimport { CameraMode, defaultOptions, IOptions, RGB } from \"./IOptions\";\n\nfunction isColorRGB(value: unknown): boolean {\n return (\n typeof value === \"object\" &&\n value !== null &&\n typeof (value as { r?: unknown }).r === \"number\" &&\n typeof (value as { g?: unknown }).g === \"number\" &&\n typeof (value as { b?: unknown }).b === \"number\"\n );\n}\n\nfunction isLegacyRGB(value: unknown): boolean {\n return (\n typeof value === \"object\" &&\n value !== null &&\n typeof (value as { red?: unknown }).red === \"number\" &&\n typeof (value as { green?: unknown }).green === \"number\" &&\n typeof (value as { blue?: unknown }).blue === \"number\"\n );\n}\n\nexport class Options implements IOptions {\n protected _emitter?: IEventEmitter;\n protected _data: IOptions;\n protected _defaults: IOptions;\n protected _updateCount = 0;\n\n constructor(emitter?: IEventEmitter) {\n this._emitter = emitter;\n this._data = Options.defaults();\n this._defaults = Options.defaults();\n this.loadFromStorage();\n }\n\n static defaults(): IOptions {\n return defaultOptions();\n }\n\n change(): void {\n if (this._emitter !== undefined && this._updateCount === 0) {\n this.saveToStorage();\n this._emitter.emit({ type: \"optionschange\", data: this });\n }\n }\n\n beginUpdate(): void {\n this._updateCount++;\n }\n\n endUpdate(): void {\n this._updateCount--;\n this.change();\n }\n\n saveToStorage(): void {\n if (typeof window !== \"undefined\")\n try {\n localStorage.setItem(\"od-client-settings\", JSON.stringify(this.data));\n } catch (error) {\n console.error(\"Cannot save client settings.\", error);\n }\n }\n\n loadFromStorage(): void {\n if (typeof window !== \"undefined\")\n try {\n const item = localStorage.getItem(\"od-client-settings\");\n if (item) this.data = JSON.parse(item);\n } catch (error) {\n console.error(\"Cannot load client settings.\", error);\n }\n }\n\n /**\n * Resets options to default values.\n *\n * @param fields - Name of fields to be reset. Specify `undefined` to reset all.\n */\n resetToDefaults(fields?: string[], defaults: IOptions = this._defaults): void {\n if (Array.isArray(fields)) {\n const resetData: Partial<IOptions> = {};\n for (const field of fields) {\n if (field in defaults) resetData[field] = defaults[field];\n }\n this.data = resetData;\n } else {\n this.data = defaults;\n }\n }\n\n setProperty<K extends keyof IOptions>(\n key: K,\n value: IOptions[K] = this._defaults[key],\n accept: boolean = this.isValidValue(key, value)\n ): void {\n if (!accept) {\n console.warn(`Options.${key}: Invalid value`, value);\n return;\n }\n if (this._data[key] !== value) {\n this._data[key] = value;\n this.change();\n }\n }\n\n isValidValue(key: keyof IOptions, value: unknown): boolean {\n return typeof value === typeof this._defaults[key];\n }\n\n get data(): IOptions {\n return this._data;\n }\n\n set data(value: Partial<IOptions>) {\n this.beginUpdate();\n try {\n for (const key of Object.keys(value)) {\n if (key in this._defaults) this[key] = value[key];\n else this._data[key] = value[key];\n }\n // partial streaming first\n if (\"enablePartialMode\" in value) {\n this.enablePartialMode = (value as IOptions).enablePartialMode;\n }\n // sectionFillColor since 27.5\n if (\"sectionFillColor\" in value) {\n this.sectionFillColor = (value as IOptions).sectionFillColor;\n }\n } finally {\n this.endUpdate();\n }\n }\n\n get showWCS(): boolean {\n return this._data.showWCS;\n }\n\n set showWCS(value: boolean) {\n this.setProperty(\"showWCS\", value);\n }\n\n get cameraAnimation(): boolean {\n return this._data.cameraAnimation;\n }\n\n set cameraAnimation(value: boolean) {\n this.setProperty(\"cameraAnimation\", value);\n }\n\n get antialiasing(): boolean | string {\n return this._data.antialiasing;\n }\n\n set antialiasing(value: boolean | string) {\n this.setProperty(\"antialiasing\", value, typeof value === \"boolean\" || typeof value === \"string\");\n }\n\n get groundShadow(): boolean {\n return this._data.groundShadow;\n }\n\n set groundShadow(value: boolean) {\n this.setProperty(\"groundShadow\", value);\n }\n\n get shadows(): boolean {\n return this._data.shadows;\n }\n\n set shadows(value: boolean) {\n this.setProperty(\"shadows\", value);\n }\n\n get cameraAxisXSpeed(): number {\n return this._data.cameraAxisXSpeed;\n }\n\n set cameraAxisXSpeed(value: number) {\n this.setProperty(\"cameraAxisXSpeed\", value);\n }\n\n get cameraAxisYSpeed(): number {\n return this._data.cameraAxisYSpeed;\n }\n\n set cameraAxisYSpeed(value: number) {\n this.setProperty(\"cameraAxisYSpeed\", value);\n }\n\n get ambientOcclusion(): boolean {\n return this._data.ambientOcclusion;\n }\n\n set ambientOcclusion(value: boolean) {\n this.setProperty(\"ambientOcclusion\", value);\n }\n\n get enableStreamingMode(): boolean {\n return this._data.enableStreamingMode;\n }\n\n set enableStreamingMode(value: boolean) {\n this.setProperty(\"enableStreamingMode\", value);\n // partial streaming is only used if streaming is enabled\n this.setProperty(\"enablePartialMode\", this.enablePartialMode && this.enableStreamingMode);\n }\n\n get enablePartialMode(): boolean {\n return this._data.enablePartialMode;\n }\n\n set enablePartialMode(value: boolean) {\n this.setProperty(\"enablePartialMode\", value);\n // partial streaming requires streaming enabled and disables scene graph\n this.setProperty(\"enableStreamingMode\", this.enableStreamingMode || this.enablePartialMode);\n this.setProperty(\"sceneGraph\", this.sceneGraph && !this.enablePartialMode);\n }\n\n get memoryLimit(): number {\n return this._data.memoryLimit;\n }\n\n set memoryLimit(value: number) {\n this.setProperty(\"memoryLimit\", value);\n }\n\n get cuttingPlaneFillColor(): RGB {\n return this._data.cuttingPlaneFillColor;\n }\n\n set cuttingPlaneFillColor(value: RGB) {\n if (this._updateCount === 0) {\n console.warn(\n \"Options.cuttingPlaneFillColor has been deprecated since 27.5 and will be removed in a future release, use sectionFillColor instead\"\n );\n }\n this.setProperty(\"cuttingPlaneFillColor\", value, isLegacyRGB(value));\n // kept in sync with sectionFillColor (deprecated since 27.5)\n this.setProperty(\n \"sectionFillColor\",\n {\n r: this._data.cuttingPlaneFillColor.red,\n g: this._data.cuttingPlaneFillColor.green,\n b: this._data.cuttingPlaneFillColor.blue,\n },\n true\n );\n }\n\n get enableSectionFill(): boolean {\n return this._data.enableSectionFill;\n }\n\n set enableSectionFill(value: boolean) {\n this.setProperty(\"enableSectionFill\", value);\n }\n\n get sectionFillColor(): { r: number; g: number; b: number } {\n return this._data.sectionFillColor;\n }\n\n set sectionFillColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"sectionFillColor\", value, isColorRGB(value));\n // kept in sync with cuttingPlaneFillColor (deprecated since 27.5)\n this.setProperty(\n \"cuttingPlaneFillColor\",\n {\n red: this._data.sectionFillColor.r,\n green: this._data.sectionFillColor.g,\n blue: this._data.sectionFillColor.b,\n },\n true\n );\n }\n\n get sectionUseObjectColor(): boolean {\n return this._data.sectionUseObjectColor;\n }\n\n set sectionUseObjectColor(value: boolean) {\n this.setProperty(\"sectionUseObjectColor\", value);\n }\n\n get enableSectionHatch(): boolean {\n return this._data.enableSectionHatch;\n }\n\n set enableSectionHatch(value: boolean) {\n this.setProperty(\"enableSectionHatch\", value);\n }\n\n get sectionHatchColor(): { r: number; g: number; b: number } {\n return this._data.sectionHatchColor;\n }\n\n set sectionHatchColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"sectionHatchColor\", value, isColorRGB(value));\n }\n\n get sectionHatchScale(): number {\n return this._data.sectionHatchScale;\n }\n\n set sectionHatchScale(value: number) {\n this.setProperty(\"sectionHatchScale\", value);\n }\n\n get enableSectionOutline(): boolean {\n return this._data.enableSectionOutline;\n }\n\n set enableSectionOutline(value: boolean) {\n this.setProperty(\"enableSectionOutline\", value);\n }\n\n get sectionOutlineColor(): { r: number; g: number; b: number } {\n return this._data.sectionOutlineColor;\n }\n\n set sectionOutlineColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"sectionOutlineColor\", value, isColorRGB(value));\n }\n\n get sectionOutlineWidth(): number {\n return this._data.sectionOutlineWidth;\n }\n\n set sectionOutlineWidth(value: number) {\n this.setProperty(\"sectionOutlineWidth\", value);\n }\n\n get edgesColor(): { r: number; g: number; b: number } {\n return this._data.edgesColor;\n }\n\n set edgesColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"edgesColor\", value, isColorRGB(value));\n }\n\n get facesColor(): { r: number; g: number; b: number } {\n return this._data.facesColor;\n }\n\n set facesColor(value: { r: number; g: number; b: number }) {\n this.setProperty(\"facesColor\", value, isColorRGB(value));\n }\n\n get edgesVisibility(): boolean {\n return this._data.edgesVisibility;\n }\n\n set edgesVisibility(value: boolean) {\n this.setProperty(\"edgesVisibility\", value);\n }\n\n get edgesOverlap(): boolean {\n return this._data.edgesOverlap;\n }\n\n set edgesOverlap(value: boolean) {\n this.setProperty(\"edgesOverlap\", value);\n }\n\n get facesOverlap(): boolean {\n return this._data.facesOverlap;\n }\n\n set facesOverlap(value: boolean) {\n this.setProperty(\"facesOverlap\", value);\n }\n\n get facesTransparancy(): number {\n return this._data.facesTransparancy;\n }\n\n set facesTransparancy(value: number) {\n this.setProperty(\"facesTransparancy\", value);\n }\n\n get enableCustomHighlight(): boolean {\n return this._data.enableCustomHighlight;\n }\n\n set enableCustomHighlight(value: boolean) {\n this.setProperty(\"enableCustomHighlight\", value);\n }\n\n get sceneGraph(): boolean {\n return this._data.sceneGraph;\n }\n\n set sceneGraph(value: boolean) {\n this.setProperty(\"sceneGraph\", value);\n // scene graph and partial streaming are mutually exclusive\n this.setProperty(\"enablePartialMode\", this.enablePartialMode && !this.sceneGraph);\n }\n\n get edgeModel(): boolean {\n return Boolean(this._data.edgeModel);\n }\n\n set edgeModel(value: boolean) {\n this.setProperty(\"edgeModel\", value);\n }\n\n get reverseZoomWheel(): boolean {\n return this._data.reverseZoomWheel;\n }\n\n set reverseZoomWheel(value: boolean) {\n this.setProperty(\"reverseZoomWheel\", value);\n }\n\n get enableZoomWheel(): boolean {\n return this._data.enableZoomWheel;\n }\n\n set enableZoomWheel(value: boolean) {\n this.setProperty(\"enableZoomWheel\", value);\n }\n\n get enableGestures(): boolean {\n return this._data.enableGestures;\n }\n\n set enableGestures(value: boolean) {\n this.setProperty(\"enableGestures\", value);\n }\n\n get geometryType(): string {\n return this._data.geometryType;\n }\n\n set geometryType(value: string) {\n this.setProperty(\"geometryType\", value);\n }\n\n get rulerUnit(): string {\n return this._data.rulerUnit;\n }\n\n set rulerUnit(value: string) {\n this.setProperty(\"rulerUnit\", value);\n }\n\n get rulerPrecision(): \"Default\" | \"Auto\" | number {\n return this._data.rulerPrecision;\n }\n\n set rulerPrecision(value: \"Default\" | \"Auto\" | number) {\n this.setProperty(\"rulerPrecision\", value, typeof value === \"number\" || value === \"Default\" || value === \"Auto\");\n }\n\n get cameraMode(): CameraMode {\n return this._data.cameraMode;\n }\n\n set cameraMode(value: CameraMode) {\n this.setProperty(\"cameraMode\", value, value === \"perspective\" || value === \"orthographic\");\n }\n\n get snapshotMimeType(): string {\n return this._data.snapshotMimeType;\n }\n\n set snapshotMimeType(value: string) {\n this.setProperty(\"snapshotMimeType\", value);\n }\n\n get snapshotQuality(): number {\n return this._data.snapshotQuality;\n }\n\n set snapshotQuality(value: number) {\n this.setProperty(\"snapshotQuality\", value);\n }\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nexport const CanvasEvents = [\n \"click\",\n \"contextmenu\",\n \"dblclick\",\n \"mousedown\",\n \"mouseleave\",\n \"mousemove\",\n \"mouseup\",\n \"pointercancel\",\n \"pointerdown\",\n \"pointerleave\",\n \"pointermove\",\n \"pointerup\",\n \"touchcancel\",\n \"touchend\",\n \"touchmove\",\n \"touchstart\",\n \"wheel\",\n];\n\nexport const CANVAS_EVENTS = CanvasEvents;\n\n/**\n * Canvas Events.\n *\n * @event\n */\nexport interface CanvasEventMap {\n /**\n * Event that fires on mouse click.\n */\n click: MouseEvent;\n\n /**\n * Event that fires when the user attempts to open a context menu.\n */\n contextmenu: PointerEvent;\n\n /**\n * Event that fires on mouse double click.\n */\n dblclick: MouseEvent;\n\n /**\n * Event that fires on mouse button is down.\n */\n mousedown: MouseEvent;\n\n /**\n * Event that fires on mouse leave.\n */\n mouseleave: MouseEvent;\n\n /**\n * Event that fires on mouse move.\n */\n mousemove: MouseEvent;\n\n /**\n * Event that fires on mouse button is up.\n */\n mouseup: MouseEvent;\n\n /**\n * Event is fired when the browser determines that there are unlikely to be any more pointer events.\n */\n pointercancel: PointerEvent;\n\n /**\n * Event that fires on mouse button is down.\n */\n pointerdown: PointerEvent;\n\n /**\n * Event that fires on mouse leave.\n */\n pointerleave: PointerEvent;\n\n /**\n * Event that fires on mouse move.\n */\n pointermove: PointerEvent;\n\n /**\n * Event that fires on mouse button is up.\n */\n pointerup: PointerEvent;\n\n /**\n * Event that fires touch is canceled.\n */\n touchcancel: TouchEvent;\n\n /**\n * Event that fires touch is ended.\n */\n touchend: TouchEvent;\n\n /**\n * Event that fires touch is moving.\n */\n touchmove: TouchEvent;\n\n /**\n * Event that fires when touch is started.\n */\n touchstart: TouchEvent;\n\n /**\n * Event that fires when mouse wheel is moving.\n */\n wheel: MouseEvent;\n}\n","///////////////////////////////////////////////////////////////////////////////\n// Copyright (C) 2002-2026, Open Design Alliance (the \"Alliance\").\n// All rights reserved.\n//\n// This software and its documentation and related materials are owned by\n// the Alliance. The software may only be incorporated into application\n// programs owned by members of the Alliance, subject to a signed\n// Membership Agreement and Supplemental Software License Agreement with the\n// Alliance. The structure and organization of this software are the valuable\n// trade secrets of the Alliance and its suppliers. The software is also\n// protected by copyright law and international treaty provisions. Application\n// programs incorporating this software must include the following statement\n// with their copyright notices:\n//\n// This application incorporates Open Design Alliance software pursuant to a\n// license agreement with Open Design Alliance.\n// Open Design Alliance Copyright (C) 2002-2026 by Open Design Alliance.\n// All rights reserved.\n//\n// By use of this software, its documentation or related materials, you\n// acknowledge and accept the above terms.\n///////////////////////////////////////////////////////////////////////////////\n\nimport { IInfo, IMemoryInfo, IPerformanceInfo, IRenderInfo, ISceneInfo, ISystemInfo } from \"./IInfo\";\n\nexport class Info implements IInfo {\n public performance: IPerformanceInfo; // animate\n public render: IRenderInfo; // render\n public scene: ISceneInfo; // databasechunk\n public optimizedScene: ISceneInfo; // databasechunk\n public memory: IMemoryInfo; // databasechunk\n public system: ISystemInfo; // initialize, options, resize\n\n constructor() {\n this.performance = {\n fps: 0,\n frameTime: 0,\n timeToFirstRender: 0,\n loadTime: 0,\n };\n\n this.render = {\n viewport: { width: 0, height: 0 },\n antialiasing: \"\",\n drawCalls: 0,\n triangles: 0,\n points: 0,\n lines: 0,\n };\n\n this.scene = {\n objects: 0,\n triangles: 0,\n points: 0,\n lines: 0,\n edges: 0,\n };\n\n this.optimizedScene = {\n objects: 0,\n triangles: 0,\n points: 0,\n lines: 0,\n edges: 0,\n };\n\n this.memory = {\n geometries: 0,\n geometryBytes: 0,\n optimizedGeometryBytes: 0,\n textures: 0,\n textureBytes: 0,\n materials: 0,\n totalEstimatedGpuBytes: 0,\n usedJSHeapSize: 0,\n };\n\n this.system = {\n webglRenderer: \"\",\n webglVendor: \"\",\n };\n }\n}\n"],"names":[],"mappings":"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"}
|
|
@@ -265,21 +265,44 @@ function defaultOptions() {
|
|
|
265
265
|
};
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
+
function isColorRGB(value) {
|
|
269
|
+
return (typeof value === "object" &&
|
|
270
|
+
value !== null &&
|
|
271
|
+
typeof value.r === "number" &&
|
|
272
|
+
typeof value.g === "number" &&
|
|
273
|
+
typeof value.b === "number");
|
|
274
|
+
}
|
|
275
|
+
function isLegacyRGB(value) {
|
|
276
|
+
return (typeof value === "object" &&
|
|
277
|
+
value !== null &&
|
|
278
|
+
typeof value.red === "number" &&
|
|
279
|
+
typeof value.green === "number" &&
|
|
280
|
+
typeof value.blue === "number");
|
|
281
|
+
}
|
|
268
282
|
class Options {
|
|
269
283
|
constructor(emitter) {
|
|
284
|
+
this._updateCount = 0;
|
|
270
285
|
this._emitter = emitter;
|
|
271
|
-
this._data =
|
|
286
|
+
this._data = Options.defaults();
|
|
287
|
+
this._defaults = Options.defaults();
|
|
272
288
|
this.loadFromStorage();
|
|
273
289
|
}
|
|
274
290
|
static defaults() {
|
|
275
291
|
return defaultOptions();
|
|
276
292
|
}
|
|
277
293
|
change() {
|
|
278
|
-
if (this._emitter !== undefined) {
|
|
294
|
+
if (this._emitter !== undefined && this._updateCount === 0) {
|
|
279
295
|
this.saveToStorage();
|
|
280
296
|
this._emitter.emit({ type: "optionschange", data: this });
|
|
281
297
|
}
|
|
282
298
|
}
|
|
299
|
+
beginUpdate() {
|
|
300
|
+
this._updateCount++;
|
|
301
|
+
}
|
|
302
|
+
endUpdate() {
|
|
303
|
+
this._updateCount--;
|
|
304
|
+
this.change();
|
|
305
|
+
}
|
|
283
306
|
saveToStorage() {
|
|
284
307
|
if (typeof window !== "undefined")
|
|
285
308
|
try {
|
|
@@ -293,18 +316,15 @@ class Options {
|
|
|
293
316
|
if (typeof window !== "undefined")
|
|
294
317
|
try {
|
|
295
318
|
const item = localStorage.getItem("od-client-settings");
|
|
296
|
-
if (item)
|
|
297
|
-
|
|
298
|
-
this.data = { ...data };
|
|
299
|
-
}
|
|
319
|
+
if (item)
|
|
320
|
+
this.data = JSON.parse(item);
|
|
300
321
|
}
|
|
301
322
|
catch (error) {
|
|
302
323
|
console.error("Cannot load client settings.", error);
|
|
303
324
|
}
|
|
304
325
|
}
|
|
305
|
-
resetToDefaults(fields) {
|
|
306
|
-
|
|
307
|
-
if (fields !== undefined) {
|
|
326
|
+
resetToDefaults(fields, defaults = this._defaults) {
|
|
327
|
+
if (Array.isArray(fields)) {
|
|
308
328
|
const resetData = {};
|
|
309
329
|
for (const field of fields) {
|
|
310
330
|
if (field in defaults)
|
|
@@ -316,34 +336,41 @@ class Options {
|
|
|
316
336
|
this.data = defaults;
|
|
317
337
|
}
|
|
318
338
|
}
|
|
319
|
-
setProperty(key, value =
|
|
339
|
+
setProperty(key, value = this._defaults[key], accept = this.isValidValue(key, value)) {
|
|
340
|
+
if (!accept) {
|
|
341
|
+
console.warn(`Options.${key}: Invalid value`, value);
|
|
342
|
+
return;
|
|
343
|
+
}
|
|
320
344
|
if (this._data[key] !== value) {
|
|
321
345
|
this._data[key] = value;
|
|
322
346
|
this.change();
|
|
323
347
|
}
|
|
324
348
|
}
|
|
349
|
+
isValidValue(key, value) {
|
|
350
|
+
return typeof value === typeof this._defaults[key];
|
|
351
|
+
}
|
|
325
352
|
get data() {
|
|
326
353
|
return this._data;
|
|
327
354
|
}
|
|
328
355
|
set data(value) {
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
356
|
+
this.beginUpdate();
|
|
357
|
+
try {
|
|
358
|
+
for (const key of Object.keys(value)) {
|
|
359
|
+
if (key in this._defaults)
|
|
360
|
+
this[key] = value[key];
|
|
361
|
+
else
|
|
362
|
+
this._data[key] = value[key];
|
|
363
|
+
}
|
|
364
|
+
if ("enablePartialMode" in value) {
|
|
365
|
+
this.enablePartialMode = value.enablePartialMode;
|
|
366
|
+
}
|
|
367
|
+
if ("sectionFillColor" in value) {
|
|
368
|
+
this.sectionFillColor = value.sectionFillColor;
|
|
369
|
+
}
|
|
334
370
|
}
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
this._data.enableStreamingMode = true;
|
|
338
|
-
this._data.sceneGraph = false;
|
|
371
|
+
finally {
|
|
372
|
+
this.endUpdate();
|
|
339
373
|
}
|
|
340
|
-
if (!value.sectionFillColor && value.cuttingPlaneFillColor)
|
|
341
|
-
this._data.sectionFillColor = {
|
|
342
|
-
r: value.cuttingPlaneFillColor.red,
|
|
343
|
-
g: value.cuttingPlaneFillColor.green,
|
|
344
|
-
b: value.cuttingPlaneFillColor.blue,
|
|
345
|
-
};
|
|
346
|
-
this.change();
|
|
347
374
|
}
|
|
348
375
|
get showWCS() {
|
|
349
376
|
return this._data.showWCS;
|
|
@@ -361,7 +388,7 @@ class Options {
|
|
|
361
388
|
return this._data.antialiasing;
|
|
362
389
|
}
|
|
363
390
|
set antialiasing(value) {
|
|
364
|
-
this.setProperty("antialiasing", value);
|
|
391
|
+
this.setProperty("antialiasing", value, typeof value === "boolean" || typeof value === "string");
|
|
365
392
|
}
|
|
366
393
|
get groundShadow() {
|
|
367
394
|
return this._data.groundShadow;
|
|
@@ -398,19 +425,15 @@ class Options {
|
|
|
398
425
|
}
|
|
399
426
|
set enableStreamingMode(value) {
|
|
400
427
|
this.setProperty("enableStreamingMode", value);
|
|
401
|
-
|
|
402
|
-
this.setProperty("enablePartialMode", false);
|
|
403
|
-
}
|
|
428
|
+
this.setProperty("enablePartialMode", this.enablePartialMode && this.enableStreamingMode);
|
|
404
429
|
}
|
|
405
430
|
get enablePartialMode() {
|
|
406
431
|
return this._data.enablePartialMode;
|
|
407
432
|
}
|
|
408
433
|
set enablePartialMode(value) {
|
|
409
434
|
this.setProperty("enablePartialMode", value);
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
this.setProperty("sceneGraph", false);
|
|
413
|
-
}
|
|
435
|
+
this.setProperty("enableStreamingMode", this.enableStreamingMode || this.enablePartialMode);
|
|
436
|
+
this.setProperty("sceneGraph", this.sceneGraph && !this.enablePartialMode);
|
|
414
437
|
}
|
|
415
438
|
get memoryLimit() {
|
|
416
439
|
return this._data.memoryLimit;
|
|
@@ -419,20 +442,18 @@ class Options {
|
|
|
419
442
|
this.setProperty("memoryLimit", value);
|
|
420
443
|
}
|
|
421
444
|
get cuttingPlaneFillColor() {
|
|
422
|
-
|
|
423
|
-
return {
|
|
424
|
-
red: this._data.sectionFillColor.r,
|
|
425
|
-
green: this._data.sectionFillColor.g,
|
|
426
|
-
blue: this._data.sectionFillColor.b,
|
|
427
|
-
};
|
|
445
|
+
return this._data.cuttingPlaneFillColor;
|
|
428
446
|
}
|
|
429
447
|
set cuttingPlaneFillColor(value) {
|
|
430
|
-
|
|
448
|
+
if (this._updateCount === 0) {
|
|
449
|
+
console.warn("Options.cuttingPlaneFillColor has been deprecated since 27.5 and will be removed in a future release, use sectionFillColor instead");
|
|
450
|
+
}
|
|
451
|
+
this.setProperty("cuttingPlaneFillColor", value, isLegacyRGB(value));
|
|
431
452
|
this.setProperty("sectionFillColor", {
|
|
432
|
-
r:
|
|
433
|
-
g:
|
|
434
|
-
b:
|
|
435
|
-
});
|
|
453
|
+
r: this._data.cuttingPlaneFillColor.red,
|
|
454
|
+
g: this._data.cuttingPlaneFillColor.green,
|
|
455
|
+
b: this._data.cuttingPlaneFillColor.blue,
|
|
456
|
+
}, true);
|
|
436
457
|
}
|
|
437
458
|
get enableSectionFill() {
|
|
438
459
|
return this._data.enableSectionFill;
|
|
@@ -444,7 +465,12 @@ class Options {
|
|
|
444
465
|
return this._data.sectionFillColor;
|
|
445
466
|
}
|
|
446
467
|
set sectionFillColor(value) {
|
|
447
|
-
this.setProperty("sectionFillColor", value);
|
|
468
|
+
this.setProperty("sectionFillColor", value, isColorRGB(value));
|
|
469
|
+
this.setProperty("cuttingPlaneFillColor", {
|
|
470
|
+
red: this._data.sectionFillColor.r,
|
|
471
|
+
green: this._data.sectionFillColor.g,
|
|
472
|
+
blue: this._data.sectionFillColor.b,
|
|
473
|
+
}, true);
|
|
448
474
|
}
|
|
449
475
|
get sectionUseObjectColor() {
|
|
450
476
|
return this._data.sectionUseObjectColor;
|
|
@@ -462,7 +488,7 @@ class Options {
|
|
|
462
488
|
return this._data.sectionHatchColor;
|
|
463
489
|
}
|
|
464
490
|
set sectionHatchColor(value) {
|
|
465
|
-
this.setProperty("sectionHatchColor", value);
|
|
491
|
+
this.setProperty("sectionHatchColor", value, isColorRGB(value));
|
|
466
492
|
}
|
|
467
493
|
get sectionHatchScale() {
|
|
468
494
|
return this._data.sectionHatchScale;
|
|
@@ -480,7 +506,7 @@ class Options {
|
|
|
480
506
|
return this._data.sectionOutlineColor;
|
|
481
507
|
}
|
|
482
508
|
set sectionOutlineColor(value) {
|
|
483
|
-
this.setProperty("sectionOutlineColor", value);
|
|
509
|
+
this.setProperty("sectionOutlineColor", value, isColorRGB(value));
|
|
484
510
|
}
|
|
485
511
|
get sectionOutlineWidth() {
|
|
486
512
|
return this._data.sectionOutlineWidth;
|
|
@@ -492,13 +518,13 @@ class Options {
|
|
|
492
518
|
return this._data.edgesColor;
|
|
493
519
|
}
|
|
494
520
|
set edgesColor(value) {
|
|
495
|
-
this.setProperty("edgesColor", value);
|
|
521
|
+
this.setProperty("edgesColor", value, isColorRGB(value));
|
|
496
522
|
}
|
|
497
523
|
get facesColor() {
|
|
498
524
|
return this._data.facesColor;
|
|
499
525
|
}
|
|
500
526
|
set facesColor(value) {
|
|
501
|
-
this.setProperty("facesColor", value);
|
|
527
|
+
this.setProperty("facesColor", value, isColorRGB(value));
|
|
502
528
|
}
|
|
503
529
|
get edgesVisibility() {
|
|
504
530
|
return this._data.edgesVisibility;
|
|
@@ -535,9 +561,7 @@ class Options {
|
|
|
535
561
|
}
|
|
536
562
|
set sceneGraph(value) {
|
|
537
563
|
this.setProperty("sceneGraph", value);
|
|
538
|
-
|
|
539
|
-
this.setProperty("enablePartialMode", false);
|
|
540
|
-
}
|
|
564
|
+
this.setProperty("enablePartialMode", this.enablePartialMode && !this.sceneGraph);
|
|
541
565
|
}
|
|
542
566
|
get edgeModel() {
|
|
543
567
|
return Boolean(this._data.edgeModel);
|
|
@@ -579,13 +603,13 @@ class Options {
|
|
|
579
603
|
return this._data.rulerPrecision;
|
|
580
604
|
}
|
|
581
605
|
set rulerPrecision(value) {
|
|
582
|
-
this.setProperty("rulerPrecision", value);
|
|
606
|
+
this.setProperty("rulerPrecision", value, typeof value === "number" || value === "Default" || value === "Auto");
|
|
583
607
|
}
|
|
584
608
|
get cameraMode() {
|
|
585
|
-
return this._data.cameraMode
|
|
609
|
+
return this._data.cameraMode;
|
|
586
610
|
}
|
|
587
611
|
set cameraMode(value) {
|
|
588
|
-
this.setProperty("cameraMode", value);
|
|
612
|
+
this.setProperty("cameraMode", value, value === "perspective" || value === "orthographic");
|
|
589
613
|
}
|
|
590
614
|
get snapshotMimeType() {
|
|
591
615
|
return this._data.snapshotMimeType;
|