@league-of-foundry-developers/foundry-vtt-types 12.331.3-beta → 12.331.5
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/README.md +17 -18
- package/package.json +91 -32
- package/src/configuration/configuration.d.mts +316 -0
- package/src/configuration/documents.d.mts +295 -0
- package/src/configuration/globals.d.mts +357 -0
- package/src/configuration/index.d.mts +5 -0
- package/src/foundry/client/apps/app.d.mts +129 -122
- package/src/foundry/client/apps/av/av-config.d.mts +12 -7
- package/src/foundry/client/apps/av/cameras.d.mts +12 -7
- package/src/foundry/client/apps/dice/dice-config.d.mts +59 -0
- package/src/foundry/client/apps/dice/index.d.mts +1 -0
- package/src/foundry/client/apps/form.d.mts +114 -86
- package/src/foundry/client/apps/forms/actor.d.mts +21 -11
- package/src/foundry/client/apps/forms/adventure-exporter.d.mts +12 -7
- package/src/foundry/client/apps/forms/adventure-importer.d.mts +14 -6
- package/src/foundry/client/apps/forms/base-sheet.d.mts +16 -8
- package/src/foundry/client/apps/forms/card-config.d.mts +16 -8
- package/src/foundry/client/apps/forms/cards-config.d.mts +15 -14
- package/src/foundry/client/apps/forms/combat-config.d.mts +7 -7
- package/src/foundry/client/apps/forms/combatant-config.d.mts +3 -3
- package/src/foundry/client/apps/forms/default-sheets-config.d.mts +1 -1
- package/src/foundry/client/apps/forms/effect-config.d.mts +7 -7
- package/src/foundry/client/apps/forms/folder-config.d.mts +10 -5
- package/src/foundry/client/apps/forms/fonts.d.mts +42 -35
- package/src/foundry/client/apps/forms/grid-config.d.mts +12 -13
- package/src/foundry/client/apps/forms/image-popout.d.mts +29 -23
- package/src/foundry/client/apps/forms/item.d.mts +9 -9
- package/src/foundry/client/apps/forms/journal-page-sheet.d.mts +16 -14
- package/src/foundry/client/apps/forms/journal-sheet.d.mts +48 -38
- package/src/foundry/client/apps/forms/macro-config.d.mts +7 -7
- package/src/foundry/client/apps/forms/measure-template.d.mts +10 -12
- package/src/foundry/client/apps/forms/ownership.d.mts +5 -5
- package/src/foundry/client/apps/forms/playlist-config.d.mts +8 -10
- package/src/foundry/client/apps/forms/playlist-sound-config.d.mts +7 -7
- package/src/foundry/client/apps/forms/roll-table-config.d.mts +11 -10
- package/src/foundry/client/apps/forms/scene-config.d.mts +40 -41
- package/src/foundry/client/apps/forms/sheet-config.d.mts +9 -21
- package/src/foundry/client/apps/forms/user-config.d.mts +13 -12
- package/src/foundry/client/apps/hud/chatbubble.d.mts +18 -6
- package/src/foundry/client/apps/hud/container.d.mts +4 -4
- package/src/foundry/client/apps/hud/controls.d.mts +126 -81
- package/src/foundry/client/apps/hud/hotbar.d.mts +17 -12
- package/src/foundry/client/apps/hud/hud.d.mts +5 -5
- package/src/foundry/client/apps/hud/menu.d.mts +10 -3
- package/src/foundry/client/apps/hud/navigation.d.mts +14 -9
- package/src/foundry/client/apps/hud/pause.d.mts +9 -4
- package/src/foundry/client/apps/hud/players.d.mts +14 -9
- package/src/foundry/client/apps/i18n.d.mts +31 -27
- package/src/foundry/client/apps/index.d.mts +1 -0
- package/src/foundry/client/apps/placeables/drawing-config.d.mts +41 -33
- package/src/foundry/client/apps/placeables/drawing-hud.d.mts +5 -5
- package/src/foundry/client/apps/placeables/index.d.mts +0 -2
- package/src/foundry/client/apps/placeables/note-config.d.mts +28 -18
- package/src/foundry/client/apps/placeables/tile-config.d.mts +23 -10
- package/src/foundry/client/apps/placeables/tile-hud.d.mts +10 -5
- package/src/foundry/client/apps/placeables/token-config.d.mts +91 -58
- package/src/foundry/client/apps/placeables/token-hud.d.mts +12 -7
- package/src/foundry/client/apps/placeables/wall-config.d.mts +21 -17
- package/src/foundry/client/apps/sidebar/apps/chat-popout.d.mts +5 -5
- package/src/foundry/client/apps/sidebar/apps/client-settings.d.mts +3 -3
- package/src/foundry/client/apps/sidebar/apps/compendium.d.mts +15 -13
- package/src/foundry/client/apps/sidebar/apps/invitation-links.d.mts +3 -3
- package/src/foundry/client/apps/sidebar/apps/keybindings-config.d.mts +3 -2
- package/src/foundry/client/apps/sidebar/apps/module-management.d.mts +6 -6
- package/src/foundry/client/apps/sidebar/apps/permission-config.d.mts +6 -6
- package/src/foundry/client/apps/sidebar/apps/support-details.d.mts +34 -29
- package/src/foundry/client/apps/sidebar/apps/tours-management.d.mts +2 -2
- package/src/foundry/client/apps/sidebar/apps/world-config.d.mts +13 -10
- package/src/foundry/client/apps/sidebar/directory-tab-mixin.d.mts +50 -35
- package/src/foundry/client/apps/sidebar/document-directory.d.mts +52 -38
- package/src/foundry/client/apps/sidebar/package-configuration.d.mts +4 -4
- package/src/foundry/client/apps/sidebar/sidebar-tab.d.mts +3 -3
- package/src/foundry/client/apps/sidebar/sidebar.d.mts +9 -4
- package/src/foundry/client/apps/sidebar/tabs/actors-directory.d.mts +11 -2
- package/src/foundry/client/apps/sidebar/tabs/cards-directory.d.mts +11 -2
- package/src/foundry/client/apps/sidebar/tabs/chat-log.d.mts +39 -27
- package/src/foundry/client/apps/sidebar/tabs/combat-tracker.d.mts +21 -12
- package/src/foundry/client/apps/sidebar/tabs/compendium-directory.d.mts +30 -15
- package/src/foundry/client/apps/sidebar/tabs/items-directory.d.mts +11 -2
- package/src/foundry/client/apps/sidebar/tabs/journal-directory.d.mts +11 -2
- package/src/foundry/client/apps/sidebar/tabs/macros-directory.d.mts +14 -5
- package/src/foundry/client/apps/sidebar/tabs/playlists-directory.d.mts +30 -22
- package/src/foundry/client/apps/sidebar/tabs/roll-table-directory.d.mts +11 -2
- package/src/foundry/client/apps/sidebar/tabs/scenes-directory.d.mts +14 -5
- package/src/foundry/client/apps/sidebar/tabs/settings.d.mts +23 -5
- package/src/foundry/client/apps/templates.d.mts +1 -1
- package/src/foundry/client/av/client.d.mts +1 -1
- package/src/foundry/client/av/clients/simplepeer.d.mts +11 -1
- package/src/foundry/client/av/master.d.mts +2 -2
- package/src/foundry/client/av/settings.d.mts +17 -15
- package/src/foundry/client/config.d.mts +444 -312
- package/src/foundry/client/core/document-index.d.mts +11 -3
- package/src/foundry/client/core/hooks.d.mts +2 -4
- package/src/foundry/client/core/image.d.mts +14 -13
- package/src/foundry/client/core/issues.d.mts +9 -4
- package/src/foundry/client/core/keybindings.d.mts +5 -5
- package/src/foundry/client/core/nue.d.mts +1 -1
- package/src/foundry/client/core/packages.d.mts +400 -62
- package/src/foundry/client/core/settings.d.mts +62 -38
- package/src/foundry/client/core/socket.d.mts +2 -2
- package/src/foundry/client/core/sorting.d.mts +6 -6
- package/src/foundry/client/core/time.d.mts +6 -3
- package/src/foundry/client/core/tooltip.d.mts +2 -2
- package/src/foundry/client/core/tour.d.mts +59 -50
- package/src/foundry/client/core/tours.d.mts +1 -1
- package/src/foundry/client/core/utils.d.mts +33 -10
- package/src/foundry/client/core/video.d.mts +1 -1
- package/src/foundry/client/core/workers.d.mts +24 -17
- package/src/foundry/client/data/abstract/canvas-document.d.mts +22 -28
- package/src/foundry/client/data/abstract/client-document.d.mts +238 -206
- package/src/foundry/client/data/abstract/directory-collection-mixin.d.mts +24 -40
- package/src/foundry/client/data/abstract/document-collection.d.mts +96 -68
- package/src/foundry/client/data/abstract/world-collection.d.mts +53 -54
- package/src/foundry/client/data/collections/actors.d.mts +30 -28
- package/src/foundry/client/data/collections/cards.d.mts +16 -3
- package/src/foundry/client/data/collections/combats.d.mts +18 -5
- package/src/foundry/client/data/collections/compendium-collection.d.mts +84 -101
- package/src/foundry/client/data/collections/compendium-folders.d.mts +6 -6
- package/src/foundry/client/data/collections/compendium-packs.d.mts +5 -5
- package/src/foundry/client/data/collections/fog.d.mts +16 -3
- package/src/foundry/client/data/collections/folder.d.mts +20 -6
- package/src/foundry/client/data/collections/items.d.mts +17 -4
- package/src/foundry/client/data/collections/journal.d.mts +22 -7
- package/src/foundry/client/data/collections/macros.d.mts +21 -19
- package/src/foundry/client/data/collections/messages.d.mts +19 -6
- package/src/foundry/client/data/collections/playlists.d.mts +17 -5
- package/src/foundry/client/data/collections/scenes.d.mts +24 -27
- package/src/foundry/client/data/collections/settings.d.mts +16 -3
- package/src/foundry/client/data/collections/tables.d.mts +18 -5
- package/src/foundry/client/data/collections/users.d.mts +22 -10
- package/src/foundry/client/data/documents/active-effect.d.mts +780 -112
- package/src/foundry/client/data/documents/actor-delta.d.mts +705 -31
- package/src/foundry/client/data/documents/actor.d.mts +806 -98
- package/src/foundry/client/data/documents/adventure.d.mts +522 -59
- package/src/foundry/client/data/documents/ambient-light.d.mts +427 -20
- package/src/foundry/client/data/documents/ambient-sound.d.mts +478 -14
- package/src/foundry/client/data/documents/card.d.mts +598 -44
- package/src/foundry/client/data/documents/cards.d.mts +862 -169
- package/src/foundry/client/data/documents/chat-message.d.mts +668 -77
- package/src/foundry/client/data/documents/combat.d.mts +757 -107
- package/src/foundry/client/data/documents/combatant.d.mts +545 -32
- package/src/foundry/client/data/documents/drawing.d.mts +545 -14
- package/src/foundry/client/data/documents/fog-exploration.d.mts +465 -30
- package/src/foundry/client/data/documents/folder.d.mts +567 -51
- package/src/foundry/client/data/documents/index.d.mts +2 -0
- package/src/foundry/client/data/documents/item.d.mts +691 -24
- package/src/foundry/client/data/documents/journal-entry-page.d.mts +654 -55
- package/src/foundry/client/data/documents/journal-entry.d.mts +631 -35
- package/src/foundry/client/data/documents/macro.d.mts +560 -31
- package/src/foundry/client/data/documents/measured-template.d.mts +484 -15
- package/src/foundry/client/data/documents/note.d.mts +498 -15
- package/src/foundry/client/data/documents/playlist-sound.d.mts +443 -45
- package/src/foundry/client/data/documents/playlist.d.mts +710 -99
- package/src/foundry/client/data/documents/region-behavior.d.mts +516 -0
- package/src/foundry/client/data/documents/region.d.mts +789 -0
- package/src/foundry/client/data/documents/scene.d.mts +1216 -159
- package/src/foundry/client/data/documents/setting.d.mts +406 -23
- package/src/foundry/client/data/documents/table-result.d.mts +488 -14
- package/src/foundry/client/data/documents/table.d.mts +667 -78
- package/src/foundry/client/data/documents/tile.d.mts +505 -14
- package/src/foundry/client/data/documents/token.d.mts +1191 -143
- package/src/foundry/client/data/documents/user.d.mts +613 -57
- package/src/foundry/client/data/documents/wall.d.mts +555 -14
- package/src/foundry/client/game.d.mts +60 -92
- package/src/foundry/client/head.d.mts +9 -9
- package/src/foundry/client/hooks.d.mts +259 -248
- package/src/foundry/client/pixi/board.d.mts +107 -94
- package/src/foundry/client/pixi/core/containers/base-canvas-group.d.mts +97 -25
- package/src/foundry/client/pixi/core/containers/cached-container.d.mts +37 -19
- package/src/foundry/client/pixi/core/containers/full-canvas-container.d.mts +7 -10
- package/src/foundry/client/pixi/core/containers/point-source-mesh.d.mts +25 -15
- package/src/foundry/client/pixi/core/containers/quad-mesh.d.mts +16 -6
- package/src/foundry/client/pixi/core/containers/quadtree.d.mts +113 -54
- package/src/foundry/client/pixi/core/containers/sprite-mesh.d.mts +69 -26
- package/src/foundry/client/pixi/core/containers/unbound-container.d.mts +20 -2
- package/src/foundry/client/pixi/core/interaction/canvas-animation.d.mts +164 -99
- package/src/foundry/client/pixi/core/interaction/control-icon.d.mts +61 -22
- package/src/foundry/client/pixi/core/interaction/mouse-handler.d.mts +120 -53
- package/src/foundry/client/pixi/core/interaction/ping.d.mts +62 -31
- package/src/foundry/client/pixi/core/interaction/pings/chevron.d.mts +23 -10
- package/src/foundry/client/pixi/core/interaction/pings/pulse.d.mts +91 -34
- package/src/foundry/client/pixi/core/interaction/render-flags.d.mts +69 -30
- package/src/foundry/client/pixi/core/interaction/resize-handle.d.mts +35 -5
- package/src/foundry/client/pixi/core/interaction/targets.d.mts +21 -18
- package/src/foundry/client/pixi/core/loader.d.mts +86 -76
- package/src/foundry/client/pixi/core/shapes/limited-angle-polygon.d.mts +42 -17
- package/src/foundry/client/pixi/core/shapes/polygon-mesher.d.mts +92 -64
- package/src/foundry/client/pixi/core/shapes/precise-text.d.mts +28 -10
- package/src/foundry/client/pixi/core/shapes/ray.d.mts +47 -23
- package/src/foundry/client/pixi/core/shapes/source-polygon.d.mts +170 -75
- package/src/foundry/client/pixi/extensions/circle.d.mts +128 -125
- package/src/foundry/client/pixi/extensions/graphics.d.mts +3 -1
- package/src/foundry/client/pixi/extensions/observable-transform.d.mts +5 -4
- package/src/foundry/client/pixi/extensions/polygon.d.mts +154 -134
- package/src/foundry/client/pixi/extensions/rectangle.d.mts +242 -259
- package/src/foundry/client/pixi/groups/effects.d.mts +75 -24
- package/src/foundry/client/pixi/groups/environment.d.mts +68 -19
- package/src/foundry/client/pixi/groups/hidden.d.mts +27 -11
- package/src/foundry/client/pixi/groups/interface.d.mts +62 -38
- package/src/foundry/client/pixi/groups/overlay.d.mts +19 -7
- package/src/foundry/client/pixi/groups/primary.d.mts +66 -44
- package/src/foundry/client/pixi/groups/rendered.d.mts +19 -7
- package/src/foundry/client/pixi/layers/base/canvas-layer.d.mts +11 -15
- package/src/foundry/client/pixi/layers/base/interaction-layer.d.mts +29 -28
- package/src/foundry/client/pixi/layers/base/placeables-layer.d.mts +306 -272
- package/src/foundry/client/pixi/layers/controls/cursor.d.mts +18 -9
- package/src/foundry/client/pixi/layers/controls/door.d.mts +32 -11
- package/src/foundry/client/pixi/layers/controls/layer.d.mts +89 -77
- package/src/foundry/client/pixi/layers/controls/ruler.d.mts +121 -96
- package/src/foundry/client/pixi/layers/effects/background-effects.d.mts +9 -12
- package/src/foundry/client/pixi/layers/effects/coloration-effects.d.mts +9 -10
- package/src/foundry/client/pixi/layers/effects/darkness-effects.d.mts +8 -8
- package/src/foundry/client/pixi/layers/effects/illumination-effects.d.mts +22 -22
- package/src/foundry/client/pixi/layers/effects/visibility.d.mts +106 -86
- package/src/foundry/client/pixi/layers/effects/weather/particles/effect.d.mts +14 -5
- package/src/foundry/client/pixi/layers/effects/weather/particles/leaves.d.mts +31 -2
- package/src/foundry/client/pixi/layers/effects/weather-effects.d.mts +137 -65
- package/src/foundry/client/pixi/layers/grid/highlight.d.mts +14 -4
- package/src/foundry/client/pixi/layers/grid/layer.d.mts +92 -92
- package/src/foundry/client/pixi/layers/grid/mesh.d.mts +37 -16
- package/src/foundry/client/pixi/layers/masks/depth.d.mts +12 -7
- package/src/foundry/client/pixi/layers/masks/occlusion.d.mts +19 -12
- package/src/foundry/client/pixi/layers/masks/vision.d.mts +104 -18
- package/src/foundry/client/pixi/layers/placeables/drawings.d.mts +16 -15
- package/src/foundry/client/pixi/layers/placeables/index.d.mts +1 -0
- package/src/foundry/client/pixi/layers/placeables/lighting.d.mts +12 -14
- package/src/foundry/client/pixi/layers/placeables/notes.d.mts +49 -32
- package/src/foundry/client/pixi/layers/placeables/regions.d.mts +113 -0
- package/src/foundry/client/pixi/layers/placeables/sounds.d.mts +81 -67
- package/src/foundry/client/pixi/layers/placeables/templates.d.mts +11 -15
- package/src/foundry/client/pixi/layers/placeables/tiles.d.mts +30 -21
- package/src/foundry/client/pixi/layers/placeables/tokens.d.mts +66 -52
- package/src/foundry/client/pixi/layers/placeables/walls.d.mts +54 -57
- package/src/foundry/client/pixi/perception/clockwise-sweep.d.mts +62 -27
- package/src/foundry/client/pixi/perception/detection-mode.d.mts +121 -47
- package/src/foundry/client/pixi/perception/fog.d.mts +38 -15
- package/src/foundry/client/pixi/perception/perception-manager.d.mts +136 -136
- package/src/foundry/client/pixi/perception/vision-mode.d.mts +91 -64
- package/src/foundry/client/pixi/perception/weiler-atherton-clipping.d.mts +44 -16
- package/src/foundry/client/pixi/placeable.d.mts +239 -137
- package/src/foundry/client/pixi/placeables/drawing.d.mts +255 -133
- package/src/foundry/client/pixi/placeables/index.d.mts +1 -0
- package/src/foundry/client/pixi/placeables/light.d.mts +193 -64
- package/src/foundry/client/pixi/placeables/note.d.mts +145 -54
- package/src/foundry/client/pixi/placeables/primary-canvas-objects/primary-canvas-object.d.mts +30 -8
- package/src/foundry/client/pixi/placeables/primary-canvas-objects/primary-graphics.d.mts +41 -11
- package/src/foundry/client/pixi/placeables/primary-canvas-objects/primary-occludable-object.d.mts +59 -18
- package/src/foundry/client/pixi/placeables/primary-canvas-objects/primary-sprite-mesh.d.mts +120 -37
- package/src/foundry/client/pixi/placeables/region.d.mts +280 -0
- package/src/foundry/client/pixi/placeables/sound.d.mts +205 -66
- package/src/foundry/client/pixi/placeables/template.d.mts +181 -100
- package/src/foundry/client/pixi/placeables/tile.d.mts +206 -140
- package/src/foundry/client/pixi/placeables/token.d.mts +916 -449
- package/src/foundry/client/pixi/placeables/wall.d.mts +249 -129
- package/src/foundry/client/pixi/webgl/extensions/batch-renderer.d.mts +72 -33
- package/src/foundry/client/pixi/webgl/extensions/batch-shader-generator.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/helpers/{framebugger-snapshot.d.mts → framebuffer-snapshot.d.mts} +10 -9
- package/src/foundry/client/pixi/webgl/helpers/index.d.mts +1 -1
- package/src/foundry/client/pixi/webgl/helpers/smooth-noise.d.mts +38 -23
- package/src/foundry/client/pixi/webgl/helpers/texture-extractor.d.mts +82 -53
- package/src/foundry/client/pixi/webgl/shaders/base-shader-mixin.d.mts +12 -12
- package/src/foundry/client/pixi/webgl/shaders/base-shader.d.mts +45 -28
- package/src/foundry/client/pixi/webgl/shaders/filters/base-filter.d.mts +12 -11
- package/src/foundry/client/pixi/webgl/shaders/filters/base-mask-filter.d.mts +12 -10
- package/src/foundry/client/pixi/webgl/shaders/filters/blur.d.mts +22 -20
- package/src/foundry/client/pixi/webgl/shaders/filters/effects-masking.d.mts +36 -32
- package/src/foundry/client/pixi/webgl/shaders/filters/environment.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/filters/glow-overlay.d.mts +12 -11
- package/src/foundry/client/pixi/webgl/shaders/filters/invisibility.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/filters/outline-overlay.d.mts +12 -11
- package/src/foundry/client/pixi/webgl/shaders/filters/transition.d.mts +67 -60
- package/src/foundry/client/pixi/webgl/shaders/filters/visibility.d.mts +24 -17
- package/src/foundry/client/pixi/webgl/shaders/filters/vision-mask-filter.d.mts +13 -10
- package/src/foundry/client/pixi/webgl/shaders/filters/void.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/filters/weather-occlusion-masks.d.mts +11 -10
- package/src/foundry/client/pixi/webgl/shaders/fragment-channel-mixin.d.mts +20 -14
- package/src/foundry/client/pixi/webgl/shaders/grid/grid.d.mts +12 -11
- package/src/foundry/client/pixi/webgl/shaders/lighting/background-lighting.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/base-lighting.d.mts +33 -33
- package/src/foundry/client/pixi/webgl/shaders/lighting/coloration-lighting.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/darkness-lighting.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/bewitching-wave.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/black-hole.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/chroma.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/emanation.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/energy-field.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/fairy-light.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/flame.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/fog.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/force-grid.d.mts +10 -8
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/ghost-light.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/hexa-dome.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/light-dome.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/magical-gloom.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/pulse.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/radial-rainbow.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/revolving-light.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/roiling-mass.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/siren-light.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/smoke-patch.d.mts +20 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/star-light.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/sunburst.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/swirling-rainbow.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/torch.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/vortex.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/effects/wave.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/lighting/illumination-lighting.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/region/adjust-darkness-level.d.mts +71 -29
- package/src/foundry/client/pixi/webgl/shaders/region/base.d.mts +54 -10
- package/src/foundry/client/pixi/webgl/shaders/region/highlight.d.mts +69 -9
- package/src/foundry/client/pixi/webgl/shaders/samplers/base-sampler.d.mts +24 -25
- package/src/foundry/client/pixi/webgl/shaders/samplers/baseline-illumination.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/samplers/color-adjustment.d.mts +38 -29
- package/src/foundry/client/pixi/webgl/shaders/samplers/depth.d.mts +21 -17
- package/src/foundry/client/pixi/webgl/shaders/samplers/fog-of-war.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/samplers/occlusion.d.mts +20 -18
- package/src/foundry/client/pixi/webgl/shaders/samplers/primary.d.mts +11 -2
- package/src/foundry/client/pixi/webgl/shaders/samplers/token-ring.d.mts +28 -2
- package/src/foundry/client/pixi/webgl/shaders/vision/background-vision.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/vision/base-vision.d.mts +11 -9
- package/src/foundry/client/pixi/webgl/shaders/vision/coloration-vision.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/vision/effects/amplification.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/vision/effects/wave.d.mts +19 -17
- package/src/foundry/client/pixi/webgl/shaders/vision/illumination-vision.d.mts +10 -9
- package/src/foundry/client/pixi/webgl/shaders/weather/base-weather.d.mts +40 -36
- package/src/foundry/client/pixi/webgl/shaders/weather/effect.d.mts +27 -33
- package/src/foundry/client/pixi/webgl/shaders/weather/fog.d.mts +17 -16
- package/src/foundry/client/pixi/webgl/shaders/weather/rain.d.mts +19 -18
- package/src/foundry/client/pixi/webgl/shaders/weather/snow.d.mts +15 -14
- package/src/foundry/client/pixi/workers/texture-worker.d.mts +33 -53
- package/src/foundry/client/tours/setup-tour.d.mts +15 -10
- package/src/foundry/client/ui/context.d.mts +48 -40
- package/src/foundry/client/ui/dialog.d.mts +137 -126
- package/src/foundry/client/ui/drag.d.mts +1 -1
- package/src/foundry/client/ui/dragdrop.d.mts +34 -28
- package/src/foundry/client/ui/editor.d.mts +29 -21
- package/src/foundry/client/ui/filepicker.d.mts +43 -38
- package/src/foundry/client/ui/filter.d.mts +62 -50
- package/src/foundry/client/ui/forms.d.mts +22 -22
- package/src/foundry/client/ui/notifications.d.mts +10 -3
- package/src/foundry/client/ui/prosemirror.d.mts +15 -7
- package/src/foundry/client/ui/secrets.d.mts +42 -27
- package/src/foundry/client/ui/tabs.d.mts +40 -33
- package/src/foundry/client-esm/applications/_module.d.mts +3 -3
- package/src/foundry/client-esm/applications/_types.d.mts +0 -2
- package/src/foundry/client-esm/applications/api/_module.d.mts +2 -2
- package/src/foundry/client-esm/applications/api/application.d.mts +28 -19
- package/src/foundry/client-esm/applications/api/dialog.d.mts +20 -22
- package/src/foundry/client-esm/applications/api/document-sheet.d.mts +26 -12
- package/src/foundry/client-esm/applications/api/handlebars-application.d.mts +142 -126
- package/src/foundry/client-esm/applications/apps/_module.d.mts +2 -2
- package/src/foundry/client-esm/applications/apps/compendium-art-config.d.mts +10 -10
- package/src/foundry/client-esm/applications/apps/permission-config.d.mts +3 -3
- package/src/foundry/client-esm/applications/dice/_module.d.mts +2 -2
- package/src/foundry/client-esm/applications/dice/roll-resolver.d.mts +14 -2
- package/src/foundry/client-esm/applications/elements/_module.d.mts +2 -2
- package/src/foundry/client-esm/applications/elements/document-tags.d.mts +2 -0
- package/src/foundry/client-esm/applications/elements/file-picker.d.mts +1 -1
- package/src/foundry/client-esm/applications/elements/multi-select.d.mts +15 -5
- package/src/foundry/client-esm/applications/elements/string-tags.d.mts +1 -1
- package/src/foundry/client-esm/applications/forms/fields.d.mts +1 -1
- package/src/foundry/client-esm/applications/sheets/_module.d.mts +2 -2
- package/src/foundry/client-esm/applications/sheets/actor-sheet.d.mts +3 -3
- package/src/foundry/client-esm/applications/sheets/ambient-light-config.d.mts +10 -8
- package/src/foundry/client-esm/applications/sheets/ambient-sound-config.d.mts +9 -7
- package/src/foundry/client-esm/applications/sheets/item-sheet.d.mts +3 -3
- package/src/foundry/client-esm/applications/sheets/region-behavior-config.d.mts +30 -5
- package/src/foundry/client-esm/applications/sheets/region-config.d.mts +36 -5
- package/src/foundry/client-esm/applications/sheets/user-config.d.mts +8 -7
- package/src/foundry/client-esm/applications/ui/_module.d.mts +2 -2
- package/src/foundry/client-esm/applications/ui/region-legend.d.mts +45 -3
- package/src/foundry/client-esm/audio/_module.d.mts +2 -3
- package/src/foundry/client-esm/audio/_types.d.mts +2 -0
- package/src/foundry/client-esm/audio/biquad.d.mts +76 -26
- package/src/foundry/client-esm/audio/cache.d.mts +31 -20
- package/src/foundry/client-esm/audio/convolver.d.mts +47 -25
- package/src/foundry/client-esm/audio/helper.d.mts +124 -80
- package/src/foundry/client-esm/audio/sound.d.mts +230 -126
- package/src/foundry/client-esm/audio/timeout.d.mts +28 -12
- package/src/foundry/client-esm/canvas/_module.d.mts +2 -2
- package/src/foundry/client-esm/canvas/edges/_module.d.mts +2 -2
- package/src/foundry/client-esm/canvas/edges/collision.d.mts +69 -18
- package/src/foundry/client-esm/canvas/edges/edge.d.mts +110 -41
- package/src/foundry/client-esm/canvas/edges/edges.d.mts +10 -0
- package/src/foundry/client-esm/canvas/edges/vertex.d.mts +56 -26
- package/src/foundry/client-esm/canvas/regions/_module.d.mts +6 -11
- package/src/foundry/client-esm/canvas/regions/geometry.d.mts +38 -0
- package/src/foundry/client-esm/canvas/regions/mesh.d.mts +72 -0
- package/src/foundry/client-esm/canvas/regions/polygon-tree.d.mts +130 -0
- package/src/foundry/client-esm/canvas/regions/shape.d.mts +129 -0
- package/src/foundry/client-esm/canvas/scene-manager.d.mts +13 -3
- package/src/foundry/client-esm/canvas/smaa/blend.d.mts +14 -3
- package/src/foundry/client-esm/canvas/smaa/edges.d.mts +25 -3
- package/src/foundry/client-esm/canvas/smaa/smaa.d.mts +121 -23
- package/src/foundry/client-esm/canvas/smaa/weights.d.mts +26 -3
- package/src/foundry/client-esm/canvas/sources/_module.d.mts +2 -2
- package/src/foundry/client-esm/canvas/sources/base-effect-source.d.mts +84 -40
- package/src/foundry/client-esm/canvas/sources/base-light-source.d.mts +103 -39
- package/src/foundry/client-esm/canvas/sources/global-light-source.d.mts +89 -15
- package/src/foundry/client-esm/canvas/sources/point-darkness-source.d.mts +71 -27
- package/src/foundry/client-esm/canvas/sources/point-effect-source.d.mts +49 -20
- package/src/foundry/client-esm/canvas/sources/point-light-source.d.mts +57 -16
- package/src/foundry/client-esm/canvas/sources/point-movement-source.d.mts +31 -4
- package/src/foundry/client-esm/canvas/sources/point-sound-source.d.mts +45 -12
- package/src/foundry/client-esm/canvas/sources/point-vision-source.d.mts +98 -52
- package/src/foundry/client-esm/canvas/sources/rendered-effect-source.d.mts +180 -69
- package/src/foundry/client-esm/canvas/tokens/_module.d.mts +2 -3
- package/src/foundry/client-esm/canvas/tokens/ring-config.d.mts +175 -2
- package/src/foundry/client-esm/canvas/tokens/ring-data.d.mts +142 -2
- package/src/foundry/client-esm/canvas/tokens/ring.d.mts +284 -2
- package/src/foundry/client-esm/client.d.mts +47 -54
- package/src/foundry/client-esm/data/_module.d.mts +2 -2
- package/src/foundry/client-esm/data/client-backend.d.mts +22 -23
- package/src/foundry/client-esm/data/region-behaviors/_module.d.mts +11 -14
- package/src/foundry/client-esm/data/region-behaviors/adjust-darkness-level.d.mts +56 -0
- package/src/foundry/client-esm/data/region-behaviors/base.d.mts +59 -0
- package/src/foundry/client-esm/data/region-behaviors/display-scrolling-text.d.mts +64 -0
- package/src/foundry/client-esm/data/region-behaviors/execute-macro.d.mts +27 -0
- package/src/foundry/client-esm/data/region-behaviors/execute-script.d.mts +23 -0
- package/src/foundry/client-esm/data/region-behaviors/pause-game.d.mts +23 -0
- package/src/foundry/client-esm/data/region-behaviors/suppress-weather.d.mts +17 -0
- package/src/foundry/client-esm/data/region-behaviors/teleport-token.d.mts +32 -0
- package/src/foundry/client-esm/data/region-behaviors/toggle-behavior.d.mts +31 -0
- package/src/foundry/client-esm/dice/_module.d.mts +2 -3
- package/src/foundry/client-esm/dice/parser.d.mts +11 -25
- package/src/foundry/client-esm/dice/roll.d.mts +112 -89
- package/src/foundry/client-esm/dice/terms/_module.d.mts +2 -3
- package/src/foundry/client-esm/dice/terms/coin.d.mts +8 -5
- package/src/foundry/client-esm/dice/terms/dice.d.mts +93 -63
- package/src/foundry/client-esm/dice/terms/die.d.mts +11 -4
- package/src/foundry/client-esm/dice/terms/fate.d.mts +9 -2
- package/src/foundry/client-esm/dice/terms/function.d.mts +18 -18
- package/src/foundry/client-esm/dice/terms/numeric.d.mts +3 -5
- package/src/foundry/client-esm/dice/terms/operator.d.mts +2 -2
- package/src/foundry/client-esm/dice/terms/parenthetical.d.mts +9 -10
- package/src/foundry/client-esm/dice/terms/pool.d.mts +25 -31
- package/src/foundry/client-esm/dice/terms/string.d.mts +4 -4
- package/src/foundry/client-esm/dice/terms/term.d.mts +18 -4
- package/src/foundry/client-esm/dice/twister.d.mts +3 -3
- package/src/foundry/client-esm/helpers/_module.d.mts +2 -2
- package/src/foundry/client-esm/helpers/_types.d.mts +12 -46
- package/src/foundry/client-esm/helpers/compendium-art.d.mts +56 -4
- package/src/foundry/common/abstract/_types.d.mts +60 -54
- package/src/foundry/common/abstract/backend.d.mts +51 -45
- package/src/foundry/common/abstract/data.d.mts +265 -236
- package/src/foundry/common/abstract/document.d.mts +1449 -464
- package/src/foundry/common/abstract/embedded-collection-delta.d.mts +1 -1
- package/src/foundry/common/abstract/embedded-collection.d.mts +37 -7
- package/src/foundry/common/abstract/module.d.mts +3 -2
- package/src/foundry/common/abstract/singleton-collection.d.mts +1 -1
- package/src/foundry/common/abstract/socket.d.mts +1 -1
- package/src/foundry/common/abstract/type-data.d.mts +61 -55
- package/src/foundry/common/config.d.mts +11 -3
- package/src/foundry/common/constants.d.mts +261 -231
- package/src/foundry/common/data/data.d.mts +238 -102
- package/src/foundry/common/data/fields.d.mts +1334 -874
- package/src/foundry/common/data/module.d.mts +2 -2
- package/src/foundry/common/data/validation-failure.d.mts +12 -9
- package/src/foundry/common/documents/_module.d.mts +4 -2
- package/src/foundry/common/documents/_types.d.mts +22 -56
- package/src/foundry/common/documents/active-effect.d.mts +358 -194
- package/src/foundry/common/documents/actor-delta.d.mts +403 -73
- package/src/foundry/common/documents/actor.d.mts +359 -117
- package/src/foundry/common/documents/adventure.d.mts +312 -142
- package/src/foundry/common/documents/ambient-light.d.mts +296 -75
- package/src/foundry/common/documents/ambient-sound.d.mts +296 -109
- package/src/foundry/common/documents/card.d.mts +321 -187
- package/src/foundry/common/documents/cards.d.mts +353 -125
- package/src/foundry/common/documents/chat-message.d.mts +338 -167
- package/src/foundry/common/documents/combat.d.mts +358 -94
- package/src/foundry/common/documents/combatant.d.mts +323 -92
- package/src/foundry/common/documents/drawing.d.mts +327 -206
- package/src/foundry/common/documents/fog-exploration.d.mts +303 -69
- package/src/foundry/common/documents/folder.d.mts +307 -82
- package/src/foundry/common/documents/item.d.mts +377 -100
- package/src/foundry/common/documents/journal-entry-page.d.mts +327 -187
- package/src/foundry/common/documents/journal-entry.d.mts +345 -68
- package/src/foundry/common/documents/macro.d.mts +325 -139
- package/src/foundry/common/documents/measured-template.d.mts +328 -138
- package/src/foundry/common/documents/note.d.mts +312 -151
- package/src/foundry/common/documents/playlist-sound.d.mts +309 -102
- package/src/foundry/common/documents/playlist.d.mts +341 -131
- package/src/foundry/common/documents/region-behavior.d.mts +360 -0
- package/src/foundry/common/documents/region.d.mts +355 -0
- package/src/foundry/common/documents/roll-table.d.mts +320 -102
- package/src/foundry/common/documents/scene.d.mts +437 -350
- package/src/foundry/common/documents/setting.d.mts +285 -54
- package/src/foundry/common/documents/table-result.d.mts +326 -103
- package/src/foundry/common/documents/tile.d.mts +337 -172
- package/src/foundry/common/documents/token.d.mts +396 -447
- package/src/foundry/common/documents/user.d.mts +296 -173
- package/src/foundry/common/documents/wall.d.mts +303 -156
- package/src/foundry/common/grid/_module.d.mts +3 -3
- package/src/foundry/common/grid/base.d.mts +66 -49
- package/src/foundry/common/grid/gridless.d.mts +2 -2
- package/src/foundry/common/grid/hexagonal.d.mts +35 -28
- package/src/foundry/common/grid/square.d.mts +3 -3
- package/src/foundry/common/packages/base-module.d.mts +6 -24
- package/src/foundry/common/packages/base-package.d.mts +56 -31
- package/src/foundry/common/packages/base-system.d.mts +45 -63
- package/src/foundry/common/packages/base-world.d.mts +15 -61
- package/src/foundry/common/packages/module.d.mts +7 -7
- package/src/foundry/common/packages/sub-types.d.mts +4 -6
- package/src/foundry/common/primitives/array.d.mts +4 -4
- package/src/foundry/common/primitives/math.d.mts +7 -1
- package/src/foundry/common/primitives/number.d.mts +2 -2
- package/src/foundry/common/primitives/set.d.mts +17 -14
- package/src/foundry/common/primitives/string.d.mts +1 -1
- package/src/foundry/common/prosemirror/_module.d.mts +15 -15
- package/src/foundry/common/prosemirror/dirty-plugin.d.mts +1 -1
- package/src/foundry/common/prosemirror/dom-parser.d.mts +2 -1
- package/src/foundry/common/prosemirror/dropdown.d.mts +1 -1
- package/src/foundry/common/prosemirror/highlight-matches-plugin.d.mts +2 -2
- package/src/foundry/common/prosemirror/image-plugin.d.mts +1 -1
- package/src/foundry/common/prosemirror/menu.d.mts +3 -3
- package/src/foundry/common/prosemirror/paste-transformer.d.mts +1 -1
- package/src/foundry/common/prosemirror/plugin.d.mts +2 -2
- package/src/foundry/common/prosemirror/schema/index.d.mts +0 -1
- package/src/foundry/common/prosemirror/schema/lists.d.mts +2 -0
- package/src/foundry/common/prosemirror/util.d.mts +1 -1
- package/src/foundry/common/types.d.mts +3 -3
- package/src/foundry/common/utils/bitmask.d.mts +23 -11
- package/src/foundry/common/utils/collection.d.mts +61 -38
- package/src/foundry/common/utils/color.d.mts +20 -2
- package/src/foundry/common/utils/event-emitter.d.mts +32 -17
- package/src/foundry/common/utils/helpers.d.mts +36 -26
- package/src/foundry/common/utils/http.d.mts +2 -2
- package/src/foundry/common/utils/module.d.mts +2 -2
- package/src/foundry/common/utils/string-tree.d.mts +45 -39
- package/src/foundry/common/utils/word-tree.d.mts +10 -23
- package/src/foundry/index.d.mts +0 -1
- package/src/foundry/{clipper → public/scripts/clipper}/clipper.d.mts +58 -16
- package/src/foundry/public/scripts/index.d.mts +1 -0
- package/src/foundry/public/scripts/workers/image-compressor.d.mts +23 -0
- package/src/foundry/public/scripts/workers/index.d.mts +1 -0
- package/{index-lenient.d.mts → src/index-lenient.d.mts} +2 -0
- package/src/index.d.mts +6 -0
- package/src/tsconfig.json +15 -0
- package/src/types/augments/particles.d.mts +29 -0
- package/src/types/augments/pixi.d.mts +1024 -21
- package/src/types/augments/smooth.d.mts +31 -0
- package/src/types/augments/tinyMCE.d.mts +1 -1
- package/src/types/config.d.mts +18 -313
- package/src/types/documentConfiguration.d.mts +286 -542
- package/src/types/index.d.mts +1 -1
- package/src/types/lib.d.mts +12 -0
- package/src/types/workers/image-compressor.d.mts +176 -0
- package/src/utils/index.d.mts +1279 -0
- package/tsconfig.json +29 -0
- package/tsconfig.main.json +8 -0
- package/tsconfig.miscellaneous.json +16 -0
- package/index.d.mts +0 -5
- package/src/foundry/client/apps/placeables/light-config.d.mts +0 -100
- package/src/foundry/client/apps/placeables/sound-config.d.mts +0 -43
- package/src/foundry/common/documents/module.d.mts +0 -35
- package/src/foundry/common/primitives/regex.d.mts +0 -12
- package/src/types/helperTypes.d.mts +0 -583
- package/src/types/utils.d.mts +0 -539
- /package/src/foundry/{clipper → public/scripts/clipper}/index.d.mts +0 -0
@@ -1,341 +1,172 @@
|
|
1
|
-
import type {
|
1
|
+
import type {
|
2
|
+
Coalesce,
|
3
|
+
DeepPartial,
|
4
|
+
FixedInstanceType,
|
5
|
+
HandleEmptyObject,
|
6
|
+
InexactPartial,
|
7
|
+
IntentionalPartial,
|
8
|
+
NullishProps,
|
9
|
+
RequiredProps,
|
10
|
+
} from "#utils";
|
2
11
|
import type { ConfiguredObjectClassOrDefault } from "../../config.d.mts";
|
12
|
+
import BaseToken = foundry.documents.BaseToken;
|
13
|
+
import sources = foundry.canvas.sources;
|
3
14
|
|
4
15
|
declare global {
|
5
|
-
namespace Token {
|
6
|
-
type ConfiguredClass = ConfiguredObjectClassOrDefault<typeof Token>;
|
7
|
-
type ConfiguredInstance = InstanceType<ConfiguredClass>;
|
8
|
-
|
9
|
-
interface RenderFlags extends PlaceableObject.RenderFlags {
|
10
|
-
redrawEffects: boolean;
|
11
|
-
|
12
|
-
refreshSize: boolean;
|
13
|
-
|
14
|
-
refreshPosition: boolean;
|
15
|
-
|
16
|
-
refreshElevation: boolean;
|
17
|
-
|
18
|
-
refreshVisibility: boolean;
|
19
|
-
|
20
|
-
refreshEffects: boolean;
|
21
|
-
|
22
|
-
refreshMesh: boolean;
|
23
|
-
|
24
|
-
refreshShader: boolean;
|
25
|
-
|
26
|
-
refreshBars: boolean;
|
27
|
-
|
28
|
-
refreshNameplate: boolean;
|
29
|
-
|
30
|
-
refreshBorder: boolean;
|
31
|
-
|
32
|
-
refreshTarget: boolean;
|
33
|
-
}
|
34
|
-
|
35
|
-
interface ReticuleOptions {
|
36
|
-
/**
|
37
|
-
* The amount of margin between the targeting arrows and the token's bounding box, expressed as a fraction of an arrow's size.
|
38
|
-
* @defaultValue `0`
|
39
|
-
*/
|
40
|
-
margin?: number;
|
41
|
-
|
42
|
-
/**
|
43
|
-
* The alpha value of the arrows.
|
44
|
-
* @defaultValue `1`
|
45
|
-
*/
|
46
|
-
alpha?: number;
|
47
|
-
|
48
|
-
/**
|
49
|
-
* The size of the arrows as a proportion of grid size.
|
50
|
-
* @defaultValue `0.15`
|
51
|
-
*/
|
52
|
-
size?: number;
|
53
|
-
|
54
|
-
/**
|
55
|
-
* The color of the arrows.
|
56
|
-
* @defaultValue `0xFF6400`
|
57
|
-
*/
|
58
|
-
color?: number;
|
59
|
-
|
60
|
-
/** The arrows' border style configuration. */
|
61
|
-
border?: {
|
62
|
-
/**
|
63
|
-
* The border color.
|
64
|
-
* @defaultValue `0`
|
65
|
-
*/
|
66
|
-
color?: number;
|
67
|
-
|
68
|
-
/**
|
69
|
-
* The border width.
|
70
|
-
* @defaultValue `2`
|
71
|
-
*/
|
72
|
-
width?: number;
|
73
|
-
};
|
74
|
-
}
|
75
|
-
|
76
|
-
type SourceType = "move" | "sight" | "light" | "sound";
|
77
|
-
|
78
|
-
interface Bar {
|
79
|
-
attribute: string;
|
80
|
-
}
|
81
|
-
|
82
|
-
interface Velocity {
|
83
|
-
dx: number;
|
84
|
-
sx: number;
|
85
|
-
dy: number;
|
86
|
-
sy: number;
|
87
|
-
}
|
88
|
-
|
89
|
-
/** The UI frame container which depicts Token metadata and status, displayed in the ControlsLayer. */
|
90
|
-
// TODO: Fix globalThis.ObjectHUD #2962
|
91
|
-
interface ObjectHUD {
|
92
|
-
/** Token health bars */
|
93
|
-
bars?: PIXI.Container;
|
94
|
-
|
95
|
-
/** Token nameplate */
|
96
|
-
nameplate?: PreciseText;
|
97
|
-
|
98
|
-
/** Token elevation tooltip */
|
99
|
-
tooltip?: PreciseText;
|
100
|
-
|
101
|
-
/** Token status effects */
|
102
|
-
effects?: PIXI.Container;
|
103
|
-
|
104
|
-
/** Token target marker */
|
105
|
-
target?: PIXI.Graphics;
|
106
|
-
}
|
107
|
-
|
108
|
-
type InitializedObjectHUD = RequiredProps<ObjectHUD, "bars" | "nameplate" | "tooltip" | "effects" | "target">;
|
109
|
-
|
110
|
-
interface UpdateLightSourceOptions {
|
111
|
-
/**
|
112
|
-
* Defer updating perception to manually update it later.
|
113
|
-
* @defaultValue `false`
|
114
|
-
*/
|
115
|
-
defer?: boolean | undefined;
|
116
|
-
|
117
|
-
/**
|
118
|
-
* Indicate that this light source has been deleted.
|
119
|
-
* @defaultValue `false`
|
120
|
-
*/
|
121
|
-
deleted?: boolean | undefined;
|
122
|
-
}
|
123
|
-
|
124
|
-
interface UpdateVisionSourceOptions {
|
125
|
-
/**
|
126
|
-
* Defer updating perception to manually update it later.
|
127
|
-
* @defaultValue `false`
|
128
|
-
*/
|
129
|
-
defer?: boolean | undefined;
|
130
|
-
|
131
|
-
/**
|
132
|
-
* Indicate that this vision source has been deleted.
|
133
|
-
* @defaultValue `false`
|
134
|
-
*/
|
135
|
-
deleted?: boolean | undefined;
|
136
|
-
}
|
137
|
-
|
138
|
-
type UpdateSourceOptions = UpdateLightSourceOptions & UpdateVisionSourceOptions;
|
139
|
-
|
140
|
-
interface PlayOptions {
|
141
|
-
/**
|
142
|
-
* Should the video loop?
|
143
|
-
* @defaultValue `true`
|
144
|
-
*/
|
145
|
-
loop?: boolean | undefined;
|
146
|
-
|
147
|
-
/**
|
148
|
-
* A specific timestamp between 0 and the video duration to begin playback
|
149
|
-
* @defaultValue `0`
|
150
|
-
*/
|
151
|
-
offset?: number | undefined;
|
152
|
-
|
153
|
-
/**
|
154
|
-
* Desired volume level of the video's audio channel (if any)
|
155
|
-
* @defaultValue `0`
|
156
|
-
*/
|
157
|
-
volume?: number | undefined;
|
158
|
-
}
|
159
|
-
|
160
|
-
interface DrawOverlayOptions {
|
161
|
-
src?: string | undefined;
|
162
|
-
tint?: number | undefined;
|
163
|
-
}
|
164
|
-
|
165
|
-
interface PositionOptions {
|
166
|
-
/**
|
167
|
-
* Animate the movement path
|
168
|
-
* @defaultValue `true`
|
169
|
-
*/
|
170
|
-
animate?: boolean;
|
171
|
-
|
172
|
-
/**
|
173
|
-
* Automatically re-center the view if token movement goes off-screen
|
174
|
-
* @defaultValue `true`
|
175
|
-
*/
|
176
|
-
recenter?: boolean | undefined;
|
177
|
-
}
|
178
|
-
|
179
|
-
interface EffectToggleOptions {
|
180
|
-
/**
|
181
|
-
* Force a certain active state for the effect
|
182
|
-
* @defaultValue `false`
|
183
|
-
*/
|
184
|
-
active?: boolean | undefined;
|
185
|
-
|
186
|
-
/**
|
187
|
-
* Whether to set the effect as the overlay effect?
|
188
|
-
* @defaultValue `false`
|
189
|
-
*/
|
190
|
-
overlay?: boolean | undefined;
|
191
|
-
}
|
192
|
-
|
193
|
-
interface SetTargetContext {
|
194
|
-
/**
|
195
|
-
* Assign the token as a target for a specific User
|
196
|
-
* @defaultValue `null`
|
197
|
-
*/
|
198
|
-
user?: User.ConfiguredInstance | null | undefined;
|
199
|
-
|
200
|
-
/**
|
201
|
-
* Release other active targets for the same player?
|
202
|
-
* @defaultValue `true`
|
203
|
-
*/
|
204
|
-
releaseOthers?: boolean | undefined;
|
205
|
-
|
206
|
-
/**
|
207
|
-
* Is this target being set as part of a group selection workflow?
|
208
|
-
* @defaultValue `Is this target being set as part of a group selection workflow?`
|
209
|
-
*/
|
210
|
-
groupSelection?: boolean | undefined;
|
211
|
-
}
|
212
|
-
|
213
|
-
interface ControlOptions extends PlaceableObject.ControlOptions {
|
214
|
-
/** @defaultValue `false` */
|
215
|
-
pan?: boolean;
|
216
|
-
}
|
217
|
-
}
|
218
|
-
|
219
16
|
/**
|
220
17
|
* A Token is an implementation of PlaceableObject which represents an Actor within a viewed Scene on the game canvas.
|
221
|
-
* @see TokenDocument
|
222
|
-
* @see TokenLayer
|
18
|
+
* @see {@link TokenDocument | `TokenDocument`}
|
19
|
+
* @see {@link TokenLayer | `TokenLayer`}
|
223
20
|
*/
|
224
|
-
class Token extends PlaceableObject<TokenDocument.
|
21
|
+
class Token extends PlaceableObject<TokenDocument.Implementation> {
|
225
22
|
static override embeddedName: "Token";
|
226
23
|
|
227
|
-
static override RENDER_FLAGS:
|
228
|
-
/** @defaultValue `{ propagate: ["refresh"] }` */
|
229
|
-
redraw: RenderFlag<Partial<Token.RenderFlags>>;
|
230
|
-
|
231
|
-
/** @defaultValue `{}` */
|
232
|
-
redrawEffects: RenderFlag<Partial<Token.RenderFlags>>;
|
233
|
-
|
234
|
-
/** @defaultValue `{ propagate: ["refreshState", "refreshSize", "refreshPosition", "refreshElevation", "refreshBars", "refreshNameplate", "refreshBorder", "refreshShader"], alias: true }` */
|
235
|
-
refresh: RenderFlag<Partial<Token.RenderFlags>>;
|
24
|
+
static override RENDER_FLAGS: Token.RENDER_FLAGS;
|
236
25
|
|
237
|
-
|
238
|
-
|
26
|
+
// Note: This isn't a "real" override but `renderFlags` is set corresponding to the
|
27
|
+
// `RENDER_FLAGS` and so it has to be adjusted here.
|
28
|
+
renderFlags: RenderFlags<Token.RENDER_FLAGS>;
|
239
29
|
|
240
|
-
|
241
|
-
|
30
|
+
// fake override; super has to type as if this could be a ControlIcon, but Tokens don't use one
|
31
|
+
override controlIcon: null;
|
242
32
|
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
refreshVisibility: RenderFlag<Partial<Token.RenderFlags>>;
|
33
|
+
/**
|
34
|
+
* The shape of this token.
|
35
|
+
* @defaultValue `undefined`
|
36
|
+
* @remarks Only `undefined` prior to {@link Token._refreshShape | `Token#_refreshShape`} being called. *
|
37
|
+
* @privateRemarks Foundry types this as possibly being `PIXI.Circle` but {@link Token.getShape | `Token#getShape`} only returns `Rectangle` or `Polygon` in v12
|
38
|
+
*/
|
39
|
+
shape: PIXI.Rectangle | PIXI.Polygon | undefined;
|
251
40
|
|
252
|
-
|
253
|
-
|
41
|
+
/**
|
42
|
+
* Defines the filter to use for detection.
|
43
|
+
* @defaultValue `null`
|
44
|
+
* @remarks Only set to other-than-`null` externally, in {@link CanvasVisibility.testVisibility | `CanvasVisibility#testVisibility`}
|
45
|
+
*
|
46
|
+
* Set `null` unconditionally when {@link Token.isVisible | `Token#isVisible`} is accessed
|
47
|
+
*/
|
48
|
+
detectionFilter: PIXI.Filter | null;
|
254
49
|
|
255
|
-
|
256
|
-
|
50
|
+
/**
|
51
|
+
* A Graphics instance which renders the border frame for this Token inside the GridLayer.
|
52
|
+
* @defaultValue `undefined`
|
53
|
+
* @remarks Only `undefined` prior to first draw
|
54
|
+
* */
|
55
|
+
border: PIXI.Graphics | undefined;
|
257
56
|
|
258
|
-
|
259
|
-
|
57
|
+
/**
|
58
|
+
* The attribute bars of this Token.
|
59
|
+
* @defaultValue `undefined`
|
60
|
+
* @remarks Only `undefined` prior to first draw
|
61
|
+
*/
|
62
|
+
bars: Token.Bars | undefined;
|
260
63
|
|
261
|
-
|
262
|
-
|
64
|
+
/**
|
65
|
+
* The tooltip text of this Token, which contains its elevation.
|
66
|
+
* @defaultValue `undefined`
|
67
|
+
* @remarks Only `undefined` prior to first draw
|
68
|
+
*/
|
69
|
+
tooltip: PreciseText | undefined;
|
263
70
|
|
264
|
-
|
265
|
-
|
71
|
+
/**
|
72
|
+
* The target marker, which indicates that this Token is targeted by this User or others.
|
73
|
+
* @defaultValue `undefined`
|
74
|
+
* @remarks Only `undefined` prior to first draw
|
75
|
+
*/
|
76
|
+
target: PIXI.Graphics | undefined;
|
266
77
|
|
267
|
-
|
268
|
-
|
78
|
+
/**
|
79
|
+
* The nameplate of this Token, which displays its name.
|
80
|
+
* @defaultValue `undefined`
|
81
|
+
* @remarks Only `undefined` prior to first draw
|
82
|
+
*/
|
83
|
+
nameplate: PreciseText | undefined;
|
269
84
|
|
270
|
-
|
271
|
-
|
272
|
-
|
85
|
+
/**
|
86
|
+
* Track the set of User documents which are currently targeting this Token
|
87
|
+
*/
|
88
|
+
targeted: Set<User.Stored>;
|
273
89
|
|
274
90
|
/**
|
275
|
-
*
|
91
|
+
* A reference to the SpriteMesh which displays this Token in the PrimaryCanvasGroup.
|
92
|
+
* @defaultValue `undefined`
|
93
|
+
* @remarks Only `undefined` prior to first draw
|
276
94
|
*/
|
277
|
-
|
95
|
+
mesh: PrimarySpriteMesh | undefined;
|
278
96
|
|
279
97
|
/**
|
280
|
-
*
|
98
|
+
* Renders the mesh of this Token with ERASE blending in the Token.
|
281
99
|
* @defaultValue `undefined`
|
282
|
-
*
|
283
|
-
|
100
|
+
* @remarks Only `undefined` prior to first draw
|
101
|
+
* @privateRemarks Foundry types as `PIXI.DisplayObject`, but its only ever set to `PIXI.Container` in v12
|
102
|
+
*/
|
103
|
+
voidMesh: PIXI.Container | undefined;
|
284
104
|
|
285
105
|
/**
|
286
|
-
*
|
106
|
+
* Renders the mesh of with the detection filter.
|
107
|
+
* @defaultValue `undefined`
|
108
|
+
* @remarks Only `undefined` prior to first draw
|
109
|
+
* @privateRemarks Foundry types as `PIXI.DisplayObject`, but its only ever set to `PIXI.Container` in v12
|
287
110
|
*/
|
288
|
-
|
111
|
+
detectionFilterMesh: PIXI.Container | undefined;
|
289
112
|
|
290
113
|
/**
|
291
|
-
*
|
114
|
+
* The texture of this Token, which is used by its mesh.
|
115
|
+
* @defaultValue `undefined`
|
116
|
+
* @remarks `undefined` prior to first draw or after {@link Token._destroy | `Token#_destroy`} is called
|
292
117
|
*/
|
293
|
-
|
118
|
+
texture: PIXI.Texture | undefined;
|
294
119
|
|
295
120
|
/**
|
296
121
|
* A reference to the VisionSource object which defines this vision source area of effect
|
122
|
+
* @defaultValue `undefined`
|
123
|
+
* @remarks `undefined` prior to first draw or after {@link Token._destroy | `Token#_destroy`} is called, or
|
124
|
+
* {@link Token.initializeVisionSource | `Token#initializeVisionSource`} is called with `{deleted: true}`
|
297
125
|
*/
|
298
|
-
vision:
|
126
|
+
vision: sources.PointVisionSource.ConfiguredInstance | undefined;
|
299
127
|
|
300
128
|
/**
|
301
129
|
* A reference to the LightSource object which defines this light source area of effect
|
130
|
+
* @defaultValue `undefined`
|
131
|
+
* @remarks `undefined` prior to first draw or after {@link Token._destroy | `Token#_destroy`} is called, or
|
132
|
+
* {@link Token.initializeLightSource | `Token#initializeLightSource`} is called with `{deleted: true}`
|
133
|
+
*
|
134
|
+
* Whether this is a LightSource or a DarknessSource depends on `this.document.light.negative`
|
302
135
|
*/
|
303
|
-
light:
|
136
|
+
light: sources.PointLightSource.ConfiguredInstance | sources.PointDarknessSource.ConfiguredInstance | undefined;
|
304
137
|
|
305
138
|
/**
|
306
|
-
*
|
307
|
-
* @internal
|
139
|
+
* The current animations of this Token.
|
308
140
|
*/
|
309
|
-
|
141
|
+
get animationContexts(): Map<string, Token.AnimationContext>;
|
310
142
|
|
311
143
|
/**
|
312
|
-
* A
|
144
|
+
* A TokenRing instance which is used if this Token applies a dynamic ring.
|
145
|
+
* This property is null if the Token does not use a dynamic ring.
|
146
|
+
* @defaultValue `undefined`
|
147
|
+
* @remarks Only `undefined` prior to first draw. Set `null` if `token.document.ring.enabled` is `false`.
|
313
148
|
*/
|
314
|
-
get
|
149
|
+
get ring(): foundry.canvas.tokens.TokenRing.ConfiguredInstance | null | undefined;
|
315
150
|
|
316
151
|
/**
|
317
|
-
* A
|
152
|
+
* A convenience boolean to test whether the Token is using a dynamic ring.
|
318
153
|
*/
|
319
|
-
get
|
320
|
-
|
321
|
-
get isOwner(): boolean;
|
154
|
+
get hasDynamicRing(): boolean;
|
322
155
|
|
323
156
|
/**
|
324
|
-
* A
|
157
|
+
* A convenient reference to the Actor object associated with the Token embedded document.
|
325
158
|
*/
|
326
|
-
get
|
159
|
+
get actor(): TokenDocument.Implementation["actor"];
|
327
160
|
|
328
161
|
/**
|
329
|
-
*
|
162
|
+
* A boolean flag for whether the current game User has observer permission for the Token
|
330
163
|
*/
|
331
|
-
get
|
164
|
+
get observer(): boolean;
|
332
165
|
|
333
166
|
/**
|
334
167
|
* Convenience access to the token's nameplate string
|
335
|
-
* @remarks
|
336
|
-
* This is actually a getter that returns data.name
|
337
168
|
*/
|
338
|
-
|
169
|
+
get name(): string;
|
339
170
|
|
340
171
|
override get bounds(): PIXI.Rectangle;
|
341
172
|
|
@@ -352,17 +183,21 @@ declare global {
|
|
352
183
|
/**
|
353
184
|
* The Token's current central position
|
354
185
|
*/
|
355
|
-
get center():
|
186
|
+
get center(): PIXI.Point;
|
356
187
|
|
357
188
|
/**
|
358
189
|
* The Token's central position, adjusted in each direction by one or zero pixels to offset it relative to walls.
|
359
190
|
*/
|
360
|
-
|
191
|
+
// offsets: not null (destructured)
|
192
|
+
getMovementAdjustedPoint(point: Canvas.Point, offsets?: Token.GetMovementAdjustedPointOffsets): Canvas.Point;
|
361
193
|
|
362
194
|
/**
|
363
195
|
* The HTML source element for the primary Tile texture
|
196
|
+
* @privateRemarks Foundry types this as `HTMLImageElement | HTMLVideoElement`, but this just
|
197
|
+
* returns `this.texture?.baseTexture.resource.source`, which could be any of `PIXI.ImageSource`,
|
198
|
+
* and returns `ImageBitmap`, not `HTMLImageElement`, for static images.
|
364
199
|
*/
|
365
|
-
get sourceElement():
|
200
|
+
get sourceElement(): PIXI.ImageSource | undefined;
|
366
201
|
|
367
202
|
override get sourceId(): string;
|
368
203
|
|
@@ -379,7 +214,7 @@ declare global {
|
|
379
214
|
/**
|
380
215
|
* Return a reference to a Combatant that represents this Token, if one is present in the current encounter.
|
381
216
|
*/
|
382
|
-
get combatant(): Combatant.
|
217
|
+
get combatant(): Combatant.Stored;
|
383
218
|
|
384
219
|
/**
|
385
220
|
* An indicator for whether the Token is currently targeted by the active game User
|
@@ -389,7 +224,7 @@ declare global {
|
|
389
224
|
/**
|
390
225
|
* Return a reference to the detection modes array.
|
391
226
|
*/
|
392
|
-
get detectionModes():
|
227
|
+
get detectionModes(): TokenDocument.Implementation["detectionModes"];
|
393
228
|
|
394
229
|
/**
|
395
230
|
* Determine whether the Token is visible to the calling user's perspective.
|
@@ -398,12 +233,16 @@ declare global {
|
|
398
233
|
* Controlled tokens are always visible.
|
399
234
|
* All Tokens are visible to a GM user if no Token is controlled.
|
400
235
|
*
|
401
|
-
* @see {@link CanvasVisibility#testVisibility}
|
236
|
+
* @see {@link CanvasVisibility.testVisibility | `CanvasVisibility#testVisibility`}
|
402
237
|
*/
|
403
238
|
get isVisible(): boolean;
|
404
239
|
|
405
240
|
/**
|
406
241
|
* The animation name used for Token movement
|
242
|
+
* @defaultValue
|
243
|
+
* ```js
|
244
|
+
* `${this.objectId}.animate`
|
245
|
+
* ```
|
407
246
|
*/
|
408
247
|
get animationName(): string;
|
409
248
|
|
@@ -413,7 +252,19 @@ declare global {
|
|
413
252
|
get hasSight(): boolean;
|
414
253
|
|
415
254
|
/**
|
416
|
-
*
|
255
|
+
* Does this Token actively emit light given its properties and the current darkness level of the Scene?
|
256
|
+
*/
|
257
|
+
protected _isLightSource(): boolean;
|
258
|
+
|
259
|
+
/**
|
260
|
+
* Does this Ambient Light actively emit darkness given
|
261
|
+
* its properties and the current darkness level of the Scene?
|
262
|
+
*/
|
263
|
+
get emitsDarkness(): boolean;
|
264
|
+
|
265
|
+
/**
|
266
|
+
* Does this Ambient Light actively emit light given
|
267
|
+
* its properties and the current darkness level of the Scene?
|
417
268
|
*/
|
418
269
|
get emitsLight(): boolean;
|
419
270
|
|
@@ -432,6 +283,16 @@ declare global {
|
|
432
283
|
*/
|
433
284
|
get brightRadius(): number;
|
434
285
|
|
286
|
+
/**
|
287
|
+
* The maximum radius in pixels of the light field
|
288
|
+
*/
|
289
|
+
get radius(): number;
|
290
|
+
|
291
|
+
/**
|
292
|
+
* The range of this token's light perception in pixels.
|
293
|
+
*/
|
294
|
+
get lightPerceptionRange(): number;
|
295
|
+
|
435
296
|
/**
|
436
297
|
* Translate the token's vision range in units into a radius in pixels.
|
437
298
|
*/
|
@@ -442,37 +303,44 @@ declare global {
|
|
442
303
|
*/
|
443
304
|
get optimalSightRange(): number;
|
444
305
|
|
445
|
-
// TODO(LukeAbby): This override appears to fail because it creates a circular dependency that tsc can't resolve for some reason. Bug report?
|
446
|
-
// `Token` is a `PlaceableObject` if it properly extends `PlaceableObject` however `clone` is a proper override of `PlaceableObject.clone` only if its return value extends `PlaceableObject`.
|
447
|
-
// This creates a loop of checking `Token` against `PlaceableObject`.
|
448
|
-
// override clone(): Token;
|
449
|
-
|
450
306
|
/**
|
451
|
-
* Update the light and vision source objects associated with this Token
|
307
|
+
* Update the light and vision source objects associated with this Token.
|
452
308
|
* @param options - Options which configure how perception sources are updated
|
453
309
|
*/
|
454
|
-
|
310
|
+
// options: not null (destructured)
|
311
|
+
initializeSources(options?: Token.InitializeSourcesOptions): void;
|
455
312
|
|
456
313
|
/**
|
457
314
|
* Update an emitted light source associated with this Token.
|
458
|
-
* @param options - (default `{}`)
|
459
315
|
*/
|
460
|
-
|
316
|
+
// options: not null (destructured)
|
317
|
+
initializeLightSource(options?: Token.InitializeSourcesOptions): void;
|
461
318
|
|
462
319
|
/**
|
463
|
-
*
|
464
|
-
* @param options - Options which affect how the vision source is updated
|
465
|
-
* (default: `{}`)
|
320
|
+
* Get the light source data.
|
466
321
|
*/
|
467
|
-
|
322
|
+
protected _getLightSourceData(): Token.LightSourceData;
|
468
323
|
|
469
324
|
/**
|
470
|
-
*
|
471
|
-
* @internal
|
325
|
+
* Update the VisionSource instance associated with this Token.
|
472
326
|
*/
|
473
|
-
|
327
|
+
// options: not null (destructured)
|
328
|
+
initializeVisionSource(options?: Token.InitializeSourcesOptions): void;
|
474
329
|
|
475
|
-
|
330
|
+
/**
|
331
|
+
* Returns a record of blinding state.
|
332
|
+
*/
|
333
|
+
protected _getVisionBlindedStates(): Token.BlindedStates;
|
334
|
+
|
335
|
+
/**
|
336
|
+
* Get the vision source data.
|
337
|
+
*/
|
338
|
+
protected _getVisionSourceData(): Token.VisionSourceData;
|
339
|
+
|
340
|
+
/**
|
341
|
+
* Test whether this Token is a viable vision source for the current User.
|
342
|
+
*/
|
343
|
+
protected _isVisionSource(): boolean;
|
476
344
|
|
477
345
|
/**
|
478
346
|
* Render the bound mesh detection filter.
|
@@ -482,17 +350,58 @@ declare global {
|
|
482
350
|
|
483
351
|
override clear(): void;
|
484
352
|
|
485
|
-
protected override _destroy(options
|
353
|
+
protected override _destroy(options: PIXI.IDestroyOptions | boolean | undefined): void;
|
486
354
|
|
487
|
-
protected override _draw(options
|
355
|
+
protected override _draw(options: HandleEmptyObject<Token.DrawOptions> | undefined): Promise<void>;
|
488
356
|
|
489
357
|
protected override _applyRenderFlags(flags: Token.RenderFlags): void;
|
490
358
|
|
359
|
+
/**
|
360
|
+
* Refresh the token ring visuals if necessary.
|
361
|
+
*/
|
362
|
+
protected _refreshRingVisuals(): void;
|
363
|
+
|
491
364
|
/**
|
492
365
|
* Refresh the visibility.
|
493
366
|
*/
|
494
367
|
protected _refreshVisibility(): void;
|
495
368
|
|
369
|
+
/**
|
370
|
+
* Refresh aspects of the user interaction state.
|
371
|
+
* For example the border, nameplate, or bars may be shown on Hover or on Control.
|
372
|
+
*/
|
373
|
+
protected _refreshState(): void;
|
374
|
+
|
375
|
+
/**
|
376
|
+
* Refresh the size.
|
377
|
+
*/
|
378
|
+
protected _refreshSize(): void;
|
379
|
+
|
380
|
+
/**
|
381
|
+
* Refresh the shape.
|
382
|
+
*/
|
383
|
+
protected _refreshShape(): void;
|
384
|
+
|
385
|
+
/**
|
386
|
+
* Refresh the rotation.
|
387
|
+
*/
|
388
|
+
protected _refreshRotation(): void;
|
389
|
+
|
390
|
+
/**
|
391
|
+
* Refresh the position.
|
392
|
+
*/
|
393
|
+
protected _refreshPosition(): void;
|
394
|
+
|
395
|
+
/**
|
396
|
+
* Refresh the elevation
|
397
|
+
*/
|
398
|
+
protected _refreshElevation(): void;
|
399
|
+
|
400
|
+
/**
|
401
|
+
* Refresh the tooltip.
|
402
|
+
*/
|
403
|
+
protected _refreshTooltip(): void;
|
404
|
+
|
496
405
|
/**
|
497
406
|
* Refresh the text content, position, and visibility of the Token nameplate.
|
498
407
|
*/
|
@@ -509,34 +418,32 @@ declare global {
|
|
509
418
|
protected _refreshShader(): void;
|
510
419
|
|
511
420
|
/**
|
512
|
-
*
|
513
|
-
* @internal
|
421
|
+
* Refresh the border.
|
514
422
|
*/
|
515
423
|
protected _refreshBorder(): void;
|
516
424
|
|
517
425
|
/**
|
518
426
|
* Get the hex color that should be used to render the Token border
|
519
427
|
* @returns The hex color used to depict the border color
|
520
|
-
* @
|
428
|
+
* @throws If this Token's Document somehow has an invalid `disposition`
|
429
|
+
* @remarks Border colors set via `CONFIG.Canvas.dispositionColors`
|
521
430
|
*/
|
522
|
-
protected _getBorderColor(
|
523
|
-
/**
|
524
|
-
* Return a border color for this hover state, otherwise use the token's current state.
|
525
|
-
*/
|
526
|
-
hover?: boolean;
|
527
|
-
}): number | null;
|
431
|
+
protected _getBorderColor(): number;
|
528
432
|
|
529
433
|
/**
|
530
434
|
* Refresh the target indicators for the Token.
|
531
435
|
* Draw both target arrows for the primary User and indicator pips for other Users targeting the same Token.
|
532
436
|
* @param reticule - Additional parameters to configure how the targeting reticule is drawn.
|
437
|
+
* @remarks Forwards `reticule` to {@link Token._drawTarget | `Token#_drawTarget`}
|
533
438
|
*/
|
439
|
+
// reticule: not null (destructured in _drawTarget)
|
534
440
|
protected _refreshTarget(reticule?: Token.ReticuleOptions): void;
|
535
441
|
|
536
442
|
/**
|
537
443
|
* Draw the targeting arrows around this token.
|
538
444
|
* @param reticule - Additional parameters to configure how the targeting reticule is drawn.
|
539
445
|
*/
|
446
|
+
// reticule: not null (destructured)
|
540
447
|
protected _drawTarget(reticule?: Token.ReticuleOptions): void;
|
541
448
|
|
542
449
|
/**
|
@@ -550,8 +457,15 @@ declare global {
|
|
550
457
|
* @param number - The Bar number
|
551
458
|
* @param bar - The Bar container
|
552
459
|
* @param data - Resource data for this bar
|
460
|
+
* @remarks Called in {@link Token.drawBars | `Token#drawBars`} only after checking `data` for truthiness.
|
461
|
+
*
|
462
|
+
* Unconditionally returns `true`
|
553
463
|
*/
|
554
|
-
protected _drawBar(
|
464
|
+
protected _drawBar(
|
465
|
+
number: number,
|
466
|
+
bar: PIXI.Graphics,
|
467
|
+
data: NonNullable<TokenDocument.GetBarAttributeReturn>,
|
468
|
+
): boolean;
|
555
469
|
|
556
470
|
/**
|
557
471
|
* Return the text which should be displayed in a token's tooltip field
|
@@ -566,17 +480,27 @@ declare global {
|
|
566
480
|
/**
|
567
481
|
* Draw the active effects and overlay effect icons which are present upon the Token
|
568
482
|
*/
|
569
|
-
drawEffects(): Promise<
|
483
|
+
drawEffects(): Promise<this>;
|
484
|
+
|
485
|
+
/**
|
486
|
+
* Draw the effect icons for ActiveEffect documents which apply to the Token's Actor.
|
487
|
+
* Called by {@link Token.drawEffects | `Token#drawEffects`}.
|
488
|
+
*/
|
489
|
+
protected _drawEffects(): Promise<void>;
|
570
490
|
|
571
491
|
/**
|
572
492
|
* Draw a status effect icon
|
493
|
+
* @param src - Path to a texture
|
494
|
+
* @param tint - A tint to apply to the returned sprite (default: `0xFFFFFF`)
|
495
|
+
* @remarks Returns early if `src` is falsey, but otherwise calls {@link loadTexture | `loadTexture`} with `{ fallback: "icons/svg/hazard.svg" }` and returns that
|
573
496
|
*/
|
574
|
-
protected _drawEffect(src: string, tint
|
497
|
+
protected _drawEffect(src: string, tint?: number | null): Promise<PIXI.Sprite | undefined>;
|
575
498
|
|
576
499
|
/**
|
577
500
|
* Draw the overlay effect icon
|
501
|
+
* @remarks Forwards both arguments to {@link Token._drawEffect | `Token#_drawEffect`}, and returns its output.
|
578
502
|
*/
|
579
|
-
protected _drawOverlay(src: string, tint
|
503
|
+
protected _drawOverlay(src: string, tint?: number | null): Promise<PIXI.Sprite | undefined>;
|
580
504
|
|
581
505
|
/**
|
582
506
|
* Refresh the display of status effects, adjusting their position for the token width and height.
|
@@ -588,128 +512,167 @@ declare global {
|
|
588
512
|
* @param mode - The mode from CONST.TOKEN_DISPLAY_MODES
|
589
513
|
* @returns Is the attribute viewable?
|
590
514
|
*/
|
591
|
-
protected _canViewMode(mode:
|
515
|
+
protected _canViewMode(mode: CONST.TOKEN_DISPLAY_MODES): boolean;
|
592
516
|
|
593
517
|
/**
|
594
|
-
*
|
595
|
-
*
|
596
|
-
* @
|
597
|
-
* @
|
598
|
-
* @returns A promise which resolves once the animation is complete
|
518
|
+
* Override ring colors for this particular Token instance.
|
519
|
+
* @remarks The return gets `mergeObject`ed over {@link TokenDocument.ring | `TokenDocument#ring#colors`}
|
520
|
+
* in {@link foundry.canvas.tokens.TokenRing.configureVisuals | `TokenRing#configureVisuals`} and
|
521
|
+
* {@link foundry.canvas.tokens.TokenRing.flashColor | `TokenRing#flashColor`}. Foundry's implementation returns `{}`
|
599
522
|
*/
|
600
|
-
|
601
|
-
updateData: unknown,
|
602
|
-
options: {
|
603
|
-
/** An optional function called each animation frame */
|
604
|
-
ontick: (dt: number, data: CanvasAnimationData) => number;
|
523
|
+
getRingColors(): Token.RingColors;
|
605
524
|
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
525
|
+
/**
|
526
|
+
* Apply additional ring effects for this particular Token instance.
|
527
|
+
* Effects are returned as an array of integers in {@link foundry.canvas.tokens.TokenRing.effects}.
|
528
|
+
* @remarks Additional effects to add over and above those in `CONFIG.Token.ring.effects`. Foundry's implementation returns `[]`
|
529
|
+
*/
|
530
|
+
getRingEffects(): foundry.canvas.tokens.TokenRing.EFFECTS[];
|
611
531
|
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
a0: unknown;
|
618
|
-
},
|
619
|
-
): Promise<void>;
|
532
|
+
/**
|
533
|
+
* Get the animation data for the current state of the document.
|
534
|
+
* @returns The target animation data object
|
535
|
+
*/
|
536
|
+
protected _getAnimationData(): Token.AnimationData;
|
620
537
|
|
621
538
|
/**
|
622
|
-
*
|
539
|
+
* Animate from the old to the new state of this Token.
|
540
|
+
* @param to - The animation data to animate to
|
541
|
+
* @param options - The options that configure the animation behavior. Passed to {@link Token._getAnimationDuration | `Token#_getAnimationDuration`}.
|
623
542
|
*/
|
624
|
-
|
543
|
+
// options: not null (destructured)
|
544
|
+
animate(to: Token.PartialAnimationData, options?: Token.AnimateOptions): Promise<void>;
|
625
545
|
|
626
546
|
/**
|
627
|
-
*
|
628
|
-
* @param
|
629
|
-
* @param
|
630
|
-
* @
|
547
|
+
* Get the duration of the animation.
|
548
|
+
* @param from - The animation data to animate from
|
549
|
+
* @param to - The animation data to animate to
|
550
|
+
* @param options - The options that configure the animation behavior
|
551
|
+
* @returns The duration of the animation in milliseconds
|
631
552
|
*/
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
553
|
+
// options: not null (destructured)
|
554
|
+
protected _getAnimationDuration(
|
555
|
+
from: Token.AnimationDataForDuration,
|
556
|
+
to: Token.PartialAnimationData,
|
557
|
+
options?: Token.GetAnimationDurationOptions,
|
558
|
+
): number;
|
636
559
|
|
637
|
-
|
638
|
-
|
560
|
+
/**
|
561
|
+
* Called each animation frame.
|
562
|
+
* @param changed - The animation data that changed
|
563
|
+
* @param context - The animation context
|
564
|
+
*/
|
565
|
+
protected _onAnimationUpdate(changed: Token.PartialAnimationData, context: Token.AnimationContext): void;
|
639
566
|
|
640
|
-
/** @defaultValue `"any"` */
|
641
|
-
mode: PointSourcePolygon.CollisionModes;
|
642
|
-
},
|
643
|
-
): boolean;
|
644
567
|
/**
|
645
|
-
*
|
646
|
-
* @param x - The grid x-coordinate that represents the top-left of the Token
|
647
|
-
* @param y - The grid y-coordinate that represents the top-left of the Token
|
648
|
-
* @returns The coordinate pair which represents the Token's center at position (x, y)
|
568
|
+
* Terminate animation of this particular Token.
|
649
569
|
*/
|
650
|
-
|
651
|
-
|
652
|
-
y: number,
|
653
|
-
): {
|
654
|
-
x: number;
|
655
|
-
y: number;
|
656
|
-
};
|
570
|
+
// options: not null (destructured)
|
571
|
+
stopAnimation(options?: Token.StopAnimationOptions): void;
|
657
572
|
|
658
573
|
/**
|
659
|
-
*
|
660
|
-
*
|
661
|
-
* @param
|
662
|
-
* @param
|
663
|
-
* @param options -
|
664
|
-
*
|
665
|
-
* @returns The Token after animation has completed
|
574
|
+
* Prepare the animation data changes: performs special handling required for animating rotation.
|
575
|
+
* @param from - The animation data to animate from
|
576
|
+
* @param changes - The animation data changes
|
577
|
+
* @param context - The animation context
|
578
|
+
* @param options - The options that configure the animation behavior
|
579
|
+
* @returns The animation attributes
|
666
580
|
*/
|
667
|
-
|
581
|
+
// options: not null (property access)
|
582
|
+
protected _prepareAnimation(
|
583
|
+
from: Token.AnimationDataForRotation,
|
584
|
+
changes: Token.PartialAnimationData,
|
585
|
+
context: Token.AnimationContext,
|
586
|
+
options?: Token.PrepareAnimationOptions,
|
587
|
+
): CanvasAnimation.Attribute[];
|
668
588
|
|
669
589
|
/**
|
670
|
-
*
|
671
|
-
*
|
672
|
-
* @param
|
673
|
-
* @returns
|
674
|
-
* @internal
|
590
|
+
* Check for collision when attempting a move to a new position
|
591
|
+
* @param destination - The central destination point of the attempted movement
|
592
|
+
* @param options - Additional options forwarded to {@link WallsLayer.checkCollision | `WallsLayer#checkCollision`}
|
593
|
+
* @returns The result of the `WallsLayer#checkCollision` test
|
675
594
|
*/
|
676
|
-
|
595
|
+
// options: not null (destructured)
|
596
|
+
checkCollision<Mode extends PointSourcePolygon.CollisionModes | undefined = undefined>(
|
597
|
+
destination: Canvas.Point,
|
598
|
+
options?: Token.CheckCollisionOptions<Mode>,
|
599
|
+
): PointSourcePolygon.TestCollision<Coalesce<Mode, "any">>;
|
677
600
|
|
678
601
|
/**
|
679
|
-
*
|
680
|
-
* @
|
681
|
-
|
682
|
-
|
683
|
-
|
602
|
+
* Get the width and height of the Token in pixels.
|
603
|
+
* @returns The size in pixels
|
604
|
+
*/
|
605
|
+
getSize(): Token.Size;
|
606
|
+
|
607
|
+
/**
|
608
|
+
* Get the shape of this Token.
|
609
|
+
* @privateRemarks Foundry types this as possibly returning a `PIXI.Circle`, but it never does in practice in v12.
|
610
|
+
* Not reported as this has changed in v13.
|
684
611
|
*/
|
685
|
-
|
612
|
+
getShape(): PIXI.Rectangle | PIXI.Polygon;
|
686
613
|
|
687
614
|
/**
|
688
|
-
*
|
689
|
-
* @param
|
690
|
-
* @returns The
|
615
|
+
* Get the center point for a given position or the current position.
|
616
|
+
* @param position - The position to be used instead of the current position (default: `this.document`)
|
617
|
+
* @returns The center point
|
691
618
|
*/
|
692
|
-
|
619
|
+
getCenterPoint(position?: Canvas.Point | null): Canvas.Point;
|
620
|
+
|
621
|
+
override getSnappedPosition(position?: Canvas.Point | null): Canvas.Point;
|
693
622
|
|
694
623
|
/**
|
695
|
-
*
|
696
|
-
*
|
624
|
+
* Test whether the Token is inside the Region.
|
625
|
+
* This function determines the state of {@link TokenDocument.regions | `TokenDocument#regions`} and {@link RegionDocument.tokens | `RegionDocument#tokens`}.
|
697
626
|
*
|
698
|
-
*
|
699
|
-
* @
|
700
|
-
*
|
701
|
-
*
|
627
|
+
* Implementations of this function are restricted in the following ways:
|
628
|
+
* - If the bounds (given by {@link Token.getSize | `Token#getSize`}) of the Token do not intersect the Region, then the Token is not
|
629
|
+
* contained within the Region.
|
630
|
+
* - If the Token is inside the Region a particular elevation, then the Token is inside the Region at any elevation
|
631
|
+
* within the elevation range of the Region.
|
632
|
+
*
|
633
|
+
* If this function is overridden, then {@link Token.segmentizeRegionMovement | `Token#segmentizeRegionMovement`} must be overridden too.
|
634
|
+
* @param region - The region.
|
635
|
+
* @param position - The (x, y) and/or elevation to use instead of the current values.
|
636
|
+
* @returns Is the Token inside the Region?
|
637
|
+
* @remarks `position` can be `{x, y}`, `{elevation}`, both, or neither. If either part is omitted, uses the document's value(s)
|
702
638
|
*/
|
703
|
-
|
704
|
-
effect: string | Parameters<TokenDocument["toggleActiveEffect"]>[0],
|
705
|
-
options?: Token.EffectToggleOptions,
|
706
|
-
): Promise<boolean>;
|
639
|
+
testInsideRegion(region: Region.Object, position?: Token.TestablePosition | null): boolean;
|
707
640
|
|
708
641
|
/**
|
709
|
-
*
|
710
|
-
*
|
642
|
+
* Split the Token movement through the waypoints into its segments.
|
643
|
+
*
|
644
|
+
* Implementations of this function are restricted in the following ways:
|
645
|
+
* - The segments must go through the waypoints.
|
646
|
+
* - The *from* position matches the *to* position of the succeeding segment.
|
647
|
+
* - The Token must be contained (w.r.t. {@link Token.testInsideRegion | `Token#testInsideRegion`}) within the Region
|
648
|
+
* at the *from* and *to* of MOVE segments.
|
649
|
+
* - The Token must be contained (w.r.t. {@link Token.testInsideRegion | `Token#testInsideRegion`}) within the Region
|
650
|
+
* at the *to* position of ENTER segments.
|
651
|
+
* - The Token must be contained (w.r.t. {@link Token.testInsideRegion | `Token#testInsideRegion`}) within the Region
|
652
|
+
* at the *from* position of EXIT segments.
|
653
|
+
* - The Token must not be contained (w.r.t. {@link Token.testInsideRegion | `Token#testInsideRegion`}) within the Region
|
654
|
+
* at the *from* position of ENTER segments.
|
655
|
+
* - The Token must not be contained (w.r.t. {@link Token.testInsideRegion | `Token#testInsideRegion`}) within the Region
|
656
|
+
* at the *to* position of EXIT segments.
|
657
|
+
* @param region - The region.
|
658
|
+
* @param waypoints - The waypoints of movement.
|
659
|
+
* @param options - Additional options
|
660
|
+
* @returns The movement split into its segments.
|
661
|
+
*/
|
662
|
+
// options: not null (destructured)
|
663
|
+
segmentizeRegionMovement(
|
664
|
+
region: Region.Object,
|
665
|
+
waypoints: Region.MovementWaypoint[],
|
666
|
+
options?: Region.SegmentizeMovementOptions,
|
667
|
+
): Region.MovementSegment[];
|
668
|
+
|
669
|
+
/**
|
670
|
+
* Set this Token as an active target for the current game User
|
671
|
+
* @param targeted - Is the Token now targeted? (default: `true`)
|
672
|
+
* @param context - Additional context options
|
711
673
|
*/
|
712
|
-
|
674
|
+
// targeted: not null (!== check with a boolean), context: not null (destructured)
|
675
|
+
setTarget(targeted?: boolean, context?: Token.TargetContext): void;
|
713
676
|
|
714
677
|
/**
|
715
678
|
* The external radius of the token in pixels.
|
@@ -725,97 +688,601 @@ declare global {
|
|
725
688
|
*/
|
726
689
|
getLightRadius(units: number): number;
|
727
690
|
|
728
|
-
protected override _getShiftedPosition(dx: number, dy: number):
|
691
|
+
protected override _getShiftedPosition(dx: number, dy: number): Canvas.Point;
|
692
|
+
|
693
|
+
// options: not null (destructured)
|
694
|
+
protected override _updateRotation(options?: PlaceableObject.UpdateRotationOptions): number;
|
695
|
+
|
696
|
+
// _onCreate, _onUpdate, and _onDelete are overridden but with no signature changes.
|
697
|
+
// For type simplicity they are left off. These methods historically have been the source of a large amount of computation from tsc.
|
729
698
|
|
730
699
|
/**
|
731
|
-
*
|
732
|
-
*
|
700
|
+
* Handle changes to Token behavior when a significant status effect is applied
|
701
|
+
* @param statusId - The status effect ID being applied, from `CONFIG.specialStatusEffects`
|
702
|
+
* @param active - Is the special status effect now active?
|
703
|
+
* @remarks Foundry marked `@internal`
|
733
704
|
*/
|
705
|
+
protected _onApplyStatusEffect(statusId: string, active: boolean): void;
|
734
706
|
|
735
707
|
/**
|
736
|
-
*
|
737
|
-
* @param statusId - The status effect ID being applied, from CONFIG.specialStatusEffects
|
708
|
+
* Add/Modify a filter effect on this token.
|
709
|
+
* @param statusId - The status effect ID being applied, from `CONFIG.specialStatusEffects`
|
738
710
|
* @param active - Is the special status effect now active?
|
739
|
-
* @internal
|
711
|
+
* @remarks Foundry marked `@internal`
|
712
|
+
*/
|
713
|
+
protected _configureFilterEffect(statusId: string, active: boolean): void;
|
714
|
+
|
715
|
+
/**
|
716
|
+
* Update the filter effects depending on special status effects
|
717
|
+
* TODO: replace this method by something more convenient.
|
718
|
+
* @remarks Foundry marked `@internal`. The TODO is theirs.
|
719
|
+
*/
|
720
|
+
protected _updateSpecialStatusFilterEffects(): void;
|
721
|
+
|
722
|
+
/**
|
723
|
+
* Remove all filter effects on this placeable.
|
724
|
+
* @remarks Foundry marked `@internal`
|
740
725
|
*/
|
741
|
-
|
726
|
+
protected _removeAllFilterEffects(): void;
|
727
|
+
|
728
|
+
protected override _onControl(options: Token.ControlOptions): void;
|
742
729
|
|
743
|
-
protected override
|
730
|
+
protected override _onRelease(options: HandleEmptyObject<Token.ReleaseOptions>): void;
|
744
731
|
|
745
|
-
protected override
|
746
|
-
options: PlaceableObject.ReleaseOptions,
|
747
|
-
): Promise<TokenDocument.ConfiguredInstance> | undefined;
|
732
|
+
protected override _overlapsSelection(rectangle: PIXI.Rectangle): boolean;
|
748
733
|
|
749
|
-
protected override _canControl(user
|
734
|
+
protected override _canControl(user: User.Implementation, event: PIXI.FederatedEvent): boolean;
|
750
735
|
|
751
|
-
protected override _canHUD(user: User.
|
736
|
+
protected override _canHUD(user: User.Implementation, event: PIXI.FederatedEvent): boolean;
|
752
737
|
|
753
|
-
protected override _canConfigure(user
|
738
|
+
protected override _canConfigure(user: User.Implementation, event: PIXI.FederatedEvent): true;
|
754
739
|
|
755
|
-
protected override _canHover(user
|
740
|
+
protected override _canHover(user: User.Implementation, event: PIXI.FederatedEvent): true;
|
756
741
|
|
757
|
-
protected override _canView(user
|
742
|
+
protected override _canView(user: User.Implementation, event: PIXI.FederatedEvent): boolean;
|
758
743
|
|
759
|
-
protected override _canDrag(user: User.
|
744
|
+
protected override _canDrag(user: User.Implementation, event: PIXI.FederatedEvent): boolean;
|
760
745
|
|
761
|
-
|
746
|
+
// options: not null (destructured)
|
747
|
+
protected override _onHoverIn(event: PIXI.FederatedEvent, options?: PlaceableObject.HoverInOptions): void;
|
762
748
|
|
763
|
-
protected override _onHoverOut(event: PIXI.FederatedEvent):
|
749
|
+
protected override _onHoverOut(event: PIXI.FederatedEvent): void;
|
764
750
|
|
765
751
|
protected override _onClickLeft(event: PIXI.FederatedEvent): void;
|
766
752
|
|
753
|
+
protected override _propagateLeftClick(event: PIXI.FederatedEvent): boolean;
|
754
|
+
|
767
755
|
protected override _onClickLeft2(event?: PIXI.FederatedEvent): void;
|
768
756
|
|
769
757
|
protected override _onClickRight2(event: PIXI.FederatedEvent): void;
|
770
758
|
|
771
|
-
protected override
|
759
|
+
protected override _onDragLeftStart(event: PIXI.FederatedEvent): void;
|
760
|
+
|
761
|
+
protected override _prepareDragLeftDropUpdates(event: PIXI.FederatedEvent): Token.DragLeftDropUpdate[];
|
772
762
|
|
773
763
|
protected override _onDragLeftMove(event: PIXI.FederatedEvent): void;
|
774
764
|
|
775
765
|
protected override _onDragEnd(): void;
|
776
766
|
|
777
767
|
/**
|
778
|
-
* @
|
768
|
+
* @deprecated since v11, will be removed in v13
|
769
|
+
* @remarks "`Token#updatePosition` has been deprecated without replacement as it is no longer required."
|
779
770
|
*/
|
780
|
-
|
771
|
+
updatePosition(): void;
|
781
772
|
|
782
773
|
/**
|
783
|
-
* @deprecated since
|
784
|
-
* @remarks `
|
774
|
+
* @deprecated since v11, will be removed in v13
|
775
|
+
* @remarks "`Token#refreshHUD` is deprecated in favor of {@link RenderFlags.set | `token.renderFlags.set()`}"
|
785
776
|
*/
|
786
|
-
|
777
|
+
// options: not null (destructured)
|
778
|
+
refreshHUD(options?: Token.RefreshHUDOptions): void;
|
787
779
|
|
788
780
|
/**
|
789
|
-
*
|
790
|
-
* @
|
781
|
+
* Update the light and vision source objects associated with this Token
|
782
|
+
* @param options - Options which configure how perception sources are updated
|
783
|
+
* @deprecated since v12, until v14
|
784
|
+
* @remarks "`Token#updateSource` has been deprecated in favor of {@link Token.initializeSources | `Token#initializeSources`}"
|
791
785
|
*/
|
792
|
-
|
793
|
-
|
794
|
-
y: number;
|
795
|
-
};
|
786
|
+
// options: not null (destructured)
|
787
|
+
updateSource(options?: Token.InitializeSourcesOptions): void;
|
796
788
|
|
797
789
|
/**
|
798
|
-
*
|
799
|
-
* @
|
790
|
+
* Get the center-point coordinate for a given grid position
|
791
|
+
* @param x - The grid x-coordinate that represents the top-left of the Token
|
792
|
+
* @param y - The grid y-coordinate that represents the top-left of the Token
|
793
|
+
* @returns The coordinate pair which represents the Token's center at position (x, y)
|
794
|
+
* @deprecated since v12, until v14
|
795
|
+
* @remarks "`Token#getCenter(x, y)` has been deprecated in favor of {@link Token.getCenterPoint | `Token#getCenterPoint(Point)`}."
|
800
796
|
*/
|
801
|
-
|
797
|
+
getCenter(x: number, y: number): Canvas.Point;
|
802
798
|
|
803
799
|
/**
|
804
|
-
*
|
805
|
-
* @
|
800
|
+
* A convenient reference for whether the current User has full control over the Token document.
|
801
|
+
* @deprecated since v12, until v14
|
802
|
+
* @remarks "`Token#owner` has been deprecated. Use {@link Token.isOwner | `Token#isOwner`} instead."
|
806
803
|
*/
|
807
|
-
|
804
|
+
get owner(): boolean;
|
808
805
|
|
809
806
|
/**
|
810
|
-
* @deprecated since
|
811
|
-
* @remarks "Token#
|
807
|
+
* @deprecated since v12, until v14
|
808
|
+
* @remarks "`Token#toggleCombat` is deprecated in favor of {@link TokenDocument.toggleCombatant | `TokenDocument#toggleCombatant`},
|
809
|
+
* {@link TokenDocument.createCombatants | `TokenDocument.implementation.createCombatants`}, and
|
810
|
+
* {@link TokenDocument.deleteCombatants | `TokenDocument.implementation.deleteCombatants`}"
|
811
|
+
*
|
812
|
+
* The `combat` parameter is unused. Creates Combatants for every Token controlled, plus the Token this was called on if it wasn't already controlled
|
813
|
+
*/
|
814
|
+
toggleCombat(combat?: Combat.Implementation): Promise<Combatant.Stored[]>;
|
815
|
+
|
816
|
+
/**
|
817
|
+
* @deprecated since v12, until v14
|
818
|
+
* @remarks "`Token#toggleEffect` is deprecated in favor of {@link Actor.toggleStatusEffect | `Actor#toggleStatusEffect`}"
|
819
|
+
*/
|
820
|
+
// options: not null (destructured)
|
821
|
+
toggleEffect(
|
822
|
+
effect: CONFIG.StatusEffect,
|
823
|
+
options?: Actor.ToggleStatusEffectOptions,
|
824
|
+
): Promise<ActiveEffect.Stored | boolean | undefined>;
|
825
|
+
|
826
|
+
/**
|
827
|
+
* @deprecated since v12, until v14
|
828
|
+
* @remarks "`Token#toggleVisibility` is deprecated without replacement in favor of updating the {@link TokenDocument.hidden | `hidden` field of the `TokenDocument`} directly."
|
829
|
+
*/
|
830
|
+
toggleVisibility(): Promise<TokenDocument.Stored[]>;
|
831
|
+
|
832
|
+
/**
|
833
|
+
* @deprecated since v12 Stable 4, until v14
|
834
|
+
* @remarks "`Token#_recoverFromPreview` is deprecated without replacement in favor of recovering from preview directly into {@link TokenConfig._resetPreview | `TokenConfig#_resetPreview`}."
|
812
835
|
*/
|
813
|
-
|
836
|
+
protected _recoverFromPreview(): void;
|
814
837
|
}
|
815
838
|
|
816
839
|
/**
|
817
840
|
* A "secret" global to help debug attributes of the currently controlled Token.
|
818
841
|
* This is only for debugging, and may be removed in the future, so it's not safe to use.
|
819
842
|
*/
|
820
|
-
let _token: Token.
|
843
|
+
let _token: Token.Object | null;
|
844
|
+
|
845
|
+
namespace Token {
|
846
|
+
// eslint-disable-next-line no-restricted-syntax
|
847
|
+
interface ObjectClass extends ConfiguredObjectClassOrDefault<typeof Token> {}
|
848
|
+
interface Object extends FixedInstanceType<ObjectClass> {}
|
849
|
+
|
850
|
+
/**
|
851
|
+
* @deprecated {@link Token.ObjectClass | `Token.ObjectClass`}
|
852
|
+
*/
|
853
|
+
type ConfiguredClass = ObjectClass;
|
854
|
+
|
855
|
+
/**
|
856
|
+
* @deprecated {@link Token.Object | `Token.Object`}
|
857
|
+
*/
|
858
|
+
type ConfiguredInstance = Object;
|
859
|
+
|
860
|
+
/**
|
861
|
+
* This type will permanently exist but is marked deprecated. The reason it exists is because
|
862
|
+
* the confusion between `Token` (the `PlaceableObject` that appears on the canvas) and
|
863
|
+
* `TokenDocument` (the `Document` that represents the data for a `Token`) is so common that
|
864
|
+
* it is useful to have a type to forward to `TokenDocument`.
|
865
|
+
*
|
866
|
+
* @deprecated {@link TokenDocument.Implementation | `TokenDocument.Implementation`}
|
867
|
+
*/
|
868
|
+
type Implementation = TokenDocument.Implementation;
|
869
|
+
|
870
|
+
/**
|
871
|
+
* This type will permanently exist but is marked deprecated. The reason it exists is because
|
872
|
+
* the confusion between `Token` (the `PlaceableObject` that appears on the canvas) and
|
873
|
+
* `TokenDocument` (the `Document` that represents the data for a `Token`) is so common that
|
874
|
+
* it is useful to have a type to forward to `TokenDocument`.
|
875
|
+
*
|
876
|
+
* @deprecated {@link TokenDocument.ImplementationClass | `TokenDocument.ImplementationClass`}
|
877
|
+
*/
|
878
|
+
type ImplementationClass = TokenDocument.ImplementationClass;
|
879
|
+
|
880
|
+
type Schema = BaseToken.Schema;
|
881
|
+
type Parent = BaseToken.Parent;
|
882
|
+
|
883
|
+
type Metadata = BaseToken.Metadata;
|
884
|
+
|
885
|
+
export import SchemaField = BaseToken.SchemaField;
|
886
|
+
export import ConstructorData = BaseToken.ConstructorData;
|
887
|
+
export import UpdateData = BaseToken.UpdateData;
|
888
|
+
export import Properties = BaseToken.Properties;
|
889
|
+
export import Source = BaseToken.Source;
|
890
|
+
|
891
|
+
interface RENDER_FLAGS {
|
892
|
+
/** @defaultValue `{ propagate: ["refresh"] }` */
|
893
|
+
redraw: RenderFlag<this, "redraw">;
|
894
|
+
|
895
|
+
/** @defaultValue `{}` */
|
896
|
+
redrawEffects: RenderFlag<this, "redrawEffects">;
|
897
|
+
|
898
|
+
/** @defaultValue `{ propagate: ["refreshState", "refreshTransform", "refreshMesh", "refreshNameplate", "refreshElevation", "refreshRingVisuals"], alias: true }` */
|
899
|
+
refresh: RenderFlag<this, "refresh">;
|
900
|
+
|
901
|
+
/** @defaultValue `{ propagate: ["refreshVisibility", "refreshTarget"] }` */
|
902
|
+
refreshState: RenderFlag<this, "refreshState">;
|
903
|
+
|
904
|
+
/** @defaultValue `{}` */
|
905
|
+
refreshVisibility: RenderFlag<this, "refreshVisibility">;
|
906
|
+
|
907
|
+
/** @defaultValue `{ propagate: ["refreshPosition", "refreshRotation", "refreshSize"], alias: true }` */
|
908
|
+
refreshTransform: RenderFlag<this, "refreshTransform">;
|
909
|
+
|
910
|
+
/** @defaultValue `{}` */
|
911
|
+
refreshPosition: RenderFlag<this, "refreshPosition">;
|
912
|
+
|
913
|
+
/** @defaultValue `{}` */
|
914
|
+
refreshRotation: RenderFlag<this, "refreshRotation">;
|
915
|
+
|
916
|
+
/** @defaultValue `{ propagate: ["refreshPosition", "refreshShape", "refreshBars", "refreshEffects", "refreshNameplate", "refreshTarget", "refreshTooltip"] }` */
|
917
|
+
refreshSize: RenderFlag<this, "refreshSize">;
|
918
|
+
|
919
|
+
/** @defaultValue `{ propagate: ["refreshTooltip"] }` */
|
920
|
+
refreshElevation: RenderFlag<this, "refreshElevation">;
|
921
|
+
|
922
|
+
/** @defaultValue `{}` */
|
923
|
+
refreshMesh: RenderFlag<this, "refreshMesh">;
|
924
|
+
|
925
|
+
/** @defaultValue `{}` */
|
926
|
+
refreshShader: RenderFlag<this, "refreshShader">;
|
927
|
+
|
928
|
+
/** @defaultValue `{ propagate: ["refreshVisibility", "refreshPosition", "refreshBorder", "refreshEffects"] }` */
|
929
|
+
refreshShape: RenderFlag<this, "refreshShape">;
|
930
|
+
|
931
|
+
/** @defaultValue `{}` */
|
932
|
+
refreshBorder: RenderFlag<this, "refreshBorder">;
|
933
|
+
|
934
|
+
/** @defaultValue `{}` */
|
935
|
+
refreshBars: RenderFlag<this, "refreshBars">;
|
936
|
+
|
937
|
+
/** @defaultValue `{}` */
|
938
|
+
refreshEffects: RenderFlag<this, "refreshEffects">;
|
939
|
+
|
940
|
+
/** @defaultValue `{}` */
|
941
|
+
refreshNameplate: RenderFlag<this, "refreshNameplate">;
|
942
|
+
|
943
|
+
/** @defaultValue `{}` */
|
944
|
+
refreshTarget: RenderFlag<this, "refreshTarget">;
|
945
|
+
|
946
|
+
/** @defaultValue `{}` */
|
947
|
+
refreshTooltip: RenderFlag<this, "refreshTooltip">;
|
948
|
+
|
949
|
+
/** @defaultValue `{}` */
|
950
|
+
refreshRingVisuals: RenderFlag<this, "refreshRingVisuals">;
|
951
|
+
}
|
952
|
+
|
953
|
+
interface RenderFlags extends RenderFlagsMixin.ToBooleanFlags<RENDER_FLAGS> {}
|
954
|
+
|
955
|
+
interface Bars extends PIXI.Container {
|
956
|
+
bar1: PIXI.Graphics;
|
957
|
+
bar2: PIXI.Graphics;
|
958
|
+
}
|
959
|
+
|
960
|
+
/** @internal */
|
961
|
+
type _GetMovementAdjustedPointOffsets = NullishProps<{
|
962
|
+
/** @defaultValue `this.#priorMovement.ox` */
|
963
|
+
offsetX: number;
|
964
|
+
|
965
|
+
/** @defaultValue `this.#priorMovement.oy` */
|
966
|
+
offsetY: number;
|
967
|
+
}>;
|
968
|
+
|
969
|
+
interface GetMovementAdjustedPointOffsets extends _GetMovementAdjustedPointOffsets {}
|
970
|
+
|
971
|
+
interface DrawOptions extends PlaceableObject.DrawOptions {}
|
972
|
+
|
973
|
+
interface RefreshOptions extends PlaceableObject.RefreshOptions {}
|
974
|
+
|
975
|
+
/** @internal */
|
976
|
+
type _ControlOptions = NullishProps<{
|
977
|
+
/** @defaultValue `false` */
|
978
|
+
pan: boolean;
|
979
|
+
}>;
|
980
|
+
|
981
|
+
interface ControlOptions extends _ControlOptions, PlaceableObject.ControlOptions {}
|
982
|
+
|
983
|
+
interface ReleaseOptions extends PlaceableObject.ReleaseOptions {}
|
984
|
+
|
985
|
+
/**
|
986
|
+
* @remarks {@link Token._getLightSourceData | `Token#_getLightSourceData`} calls `mergeObject` on the return of
|
987
|
+
* {@link foundry.data.LightData.toObject | `LightData#toObject(false)`} and the enumerated properties below and
|
988
|
+
* returns the result. This gets passed to {@link foundry.canvas.sources.PointLightSource.initialize | `Token#light#initialize()`},
|
989
|
+
* so this is a `RequiredProps<IntentionalPartial<>>` rather than a `Pick<>`
|
990
|
+
*/
|
991
|
+
type LightSourceData = foundry.data.fields.SchemaField.InitializedData<foundry.data.LightData.Schema> &
|
992
|
+
RequiredProps<
|
993
|
+
IntentionalPartial<foundry.canvas.sources.PointLightSource.SourceData>,
|
994
|
+
"x" | "y" | "elevation" | "rotation" | "dim" | "bright" | "externalRadius" | "seed" | "preview" | "disabled"
|
995
|
+
>;
|
996
|
+
|
997
|
+
/**
|
998
|
+
* @remarks The return of {@link Token._getVisionSourceData | `Token#_getVisionSourceData`}, which gets passed
|
999
|
+
* to {@link foundry.canvas.sources.PointVisionSource.initialize | `Token#vision#initialize()`}, so this is a
|
1000
|
+
* `RequiredProps<IntentionalPartial<>>` rather than a `Pick<>`
|
1001
|
+
*/
|
1002
|
+
type VisionSourceData = RequiredProps<
|
1003
|
+
IntentionalPartial<foundry.canvas.sources.PointVisionSource.SourceData>,
|
1004
|
+
| "x"
|
1005
|
+
| "y"
|
1006
|
+
| "elevation"
|
1007
|
+
| "rotation"
|
1008
|
+
| "lightRadius"
|
1009
|
+
| "externalRadius"
|
1010
|
+
| "angle"
|
1011
|
+
| "contrast"
|
1012
|
+
| "saturation"
|
1013
|
+
| "brightness"
|
1014
|
+
| "attenuation"
|
1015
|
+
| "visionMode"
|
1016
|
+
| "color"
|
1017
|
+
| "preview"
|
1018
|
+
| "disabled"
|
1019
|
+
>;
|
1020
|
+
|
1021
|
+
// TODO: (LukeAbby) possible candidate for `-=` key handling
|
1022
|
+
interface BlindedStates extends Record<string, boolean> {
|
1023
|
+
blind: boolean;
|
1024
|
+
burrow: boolean;
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
/** @internal */
|
1028
|
+
type _ReticuleOptions = NullishProps<{
|
1029
|
+
/**
|
1030
|
+
* The amount of margin between the targeting arrows and the token's bounding box, expressed as a fraction of an arrow's size.
|
1031
|
+
* @defaultValue `0`
|
1032
|
+
* @remarks This gets assigned to with `*=` before use, so `null` casting to the default of `0` is fine
|
1033
|
+
*/
|
1034
|
+
margin: number;
|
1035
|
+
|
1036
|
+
/**
|
1037
|
+
* The color of the arrows.
|
1038
|
+
* @defaultValue `this._getBorderColor()` {@link Token._getBorderColor | `Token#_getBorderColor`}
|
1039
|
+
*/
|
1040
|
+
color: number;
|
1041
|
+
}> &
|
1042
|
+
InexactPartial<{
|
1043
|
+
/**
|
1044
|
+
* The alpha value of the arrows.
|
1045
|
+
* @defaultValue `1`
|
1046
|
+
* @remarks Can't be `null` as it only has a parameter default
|
1047
|
+
*/
|
1048
|
+
alpha: number;
|
1049
|
+
|
1050
|
+
/**
|
1051
|
+
* The size of the arrows as a proportion of grid size.
|
1052
|
+
* @defaultValue `0.15`
|
1053
|
+
* @remarks Can't be `null` as it only has a parameter default
|
1054
|
+
*/
|
1055
|
+
size: number;
|
1056
|
+
|
1057
|
+
/**
|
1058
|
+
* The arrows' border style configuration.
|
1059
|
+
* @defaultValue see properties
|
1060
|
+
* @remarks Can't be `null` as it's destructured in signature
|
1061
|
+
*/
|
1062
|
+
border: InexactPartial<{
|
1063
|
+
/**
|
1064
|
+
* The border color.
|
1065
|
+
* @defaultValue `0`
|
1066
|
+
* @remarks Can't be `null` as it only has a parameter default
|
1067
|
+
*/
|
1068
|
+
color: number;
|
1069
|
+
|
1070
|
+
/**
|
1071
|
+
* The border width.
|
1072
|
+
* @defaultValue `2`
|
1073
|
+
* @remarks Can't be `null` as it only has a parameter default
|
1074
|
+
*/
|
1075
|
+
width: number;
|
1076
|
+
}>;
|
1077
|
+
}>;
|
1078
|
+
interface ReticuleOptions extends _ReticuleOptions {}
|
1079
|
+
|
1080
|
+
/**
|
1081
|
+
* The return type of {@link Token.getRingColors | `Token#getRingColors`}. Core's implementation returns `{}`.
|
1082
|
+
* Values returned by subclasses should not be nullish, as they are `mergeObject`'d into the default color values
|
1083
|
+
* from {@link TokenRing.ConfiguredClass | `TokenRing.ConfiguredClass`}
|
1084
|
+
*/
|
1085
|
+
interface RingColors {
|
1086
|
+
ring?: Color;
|
1087
|
+
background?: Color;
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
/** @internal */
|
1091
|
+
type _AnimationData = Pick<TokenDocument.Implementation, "x" | "y" | "width" | "height" | "rotation" | "alpha"> & {
|
1092
|
+
/** The texture data. */
|
1093
|
+
texture: Pick<
|
1094
|
+
TokenDocument.Implementation["texture"],
|
1095
|
+
"src" | "anchorX" | "anchorY" | "scaleX" | "scaleY" | "tint"
|
1096
|
+
>;
|
1097
|
+
} & {
|
1098
|
+
/** The ring data. */
|
1099
|
+
ring: {
|
1100
|
+
/** The ring subject data */
|
1101
|
+
subject: Pick<TokenDocument.Implementation["ring"]["subject"], "texture" | "scale">;
|
1102
|
+
};
|
1103
|
+
};
|
1104
|
+
|
1105
|
+
/**
|
1106
|
+
* Token animation data.
|
1107
|
+
* @privateRemarks Implementing this interface like this does lose the specific (simplified, really)
|
1108
|
+
* property descriptions of the `TokenAnimationData` typedef, but it gains the ones from the document
|
1109
|
+
* schema, and since the values returned by {@link Token._getAnimationData | `Token#_getAnimationData`}
|
1110
|
+
* are pulled directly from the document, this is also the most accurate typing.
|
1111
|
+
*/
|
1112
|
+
interface AnimationData extends _AnimationData {}
|
1113
|
+
|
1114
|
+
type PartialAnimationData = DeepPartial<AnimationData>;
|
1115
|
+
|
1116
|
+
interface AnimationDataForDuration extends RequiredProps<PartialAnimationData, "x" | "y" | "rotation"> {}
|
1117
|
+
|
1118
|
+
interface AnimationDataForRotation extends RequiredProps<PartialAnimationData, "rotation"> {}
|
1119
|
+
|
1120
|
+
/** @internal */
|
1121
|
+
type _GetAnimationDurationOptions = InexactPartial<{
|
1122
|
+
/**
|
1123
|
+
* A desired token movement speed in grid spaces per second
|
1124
|
+
* @defaultValue `6`
|
1125
|
+
* @remarks Can't be `null` as it only has a parameter default
|
1126
|
+
*/
|
1127
|
+
movementSpeed: number;
|
1128
|
+
}>;
|
1129
|
+
|
1130
|
+
interface GetAnimationDurationOptions extends _GetAnimationDurationOptions {}
|
1131
|
+
|
1132
|
+
/** @internal */
|
1133
|
+
type _PrepareAnimationOptions = NullishProps<{
|
1134
|
+
/**
|
1135
|
+
* The desired texture transition type
|
1136
|
+
* @defaultValue `TextureTransitionFilter.TYPES.FADE` (`"fade"`)
|
1137
|
+
*/
|
1138
|
+
transition: TextureTransitionFilter.TYPES;
|
1139
|
+
}>;
|
1140
|
+
|
1141
|
+
interface PrepareAnimationOptions extends _PrepareAnimationOptions {}
|
1142
|
+
|
1143
|
+
/** @internal */
|
1144
|
+
type _AnimateOptions = Pick<CanvasAnimation.AnimateOptions, "duration" | "easing" | "name" | "ontick">;
|
1145
|
+
|
1146
|
+
interface AnimateOptions extends _AnimateOptions, GetAnimationDurationOptions, PrepareAnimationOptions {}
|
1147
|
+
|
1148
|
+
/** @internal */
|
1149
|
+
type _StopAnimationOptions = NullishProps<{
|
1150
|
+
/**
|
1151
|
+
* Reset the TokenDocument?
|
1152
|
+
* @defaultValue `false`
|
1153
|
+
*/
|
1154
|
+
reset: boolean;
|
1155
|
+
}>;
|
1156
|
+
|
1157
|
+
interface StopAnimationOptions extends _StopAnimationOptions {}
|
1158
|
+
|
1159
|
+
/** @internal */
|
1160
|
+
type _CheckCollisionOptions<Mode extends PointSourcePolygon.CollisionModes | undefined = undefined> =
|
1161
|
+
InexactPartial<{
|
1162
|
+
/**
|
1163
|
+
* The collision mode to test: "any", "all", or "closest"
|
1164
|
+
* @defaultValue `"any"`
|
1165
|
+
* @remarks Can't be `null` as it only has a parameter default
|
1166
|
+
*/
|
1167
|
+
mode: Mode;
|
1168
|
+
|
1169
|
+
/**
|
1170
|
+
* The collision type
|
1171
|
+
* @defaultValue `"move"`
|
1172
|
+
* @remarks Can't be `null` as it only has a parameter default
|
1173
|
+
*
|
1174
|
+
* `"sound"` is a valid source type but explicitly throws if passed, so omitted here
|
1175
|
+
*/
|
1176
|
+
type: "move" | "sight" | "light";
|
1177
|
+
}> &
|
1178
|
+
NullishProps<{
|
1179
|
+
/**
|
1180
|
+
* The origin to be used instead of the current origin
|
1181
|
+
*/
|
1182
|
+
origin: Canvas.Point;
|
1183
|
+
}>;
|
1184
|
+
|
1185
|
+
interface CheckCollisionOptions<Mode extends PointSourcePolygon.CollisionModes | undefined = undefined>
|
1186
|
+
extends _CheckCollisionOptions<Mode> {}
|
1187
|
+
|
1188
|
+
/** Return type of {@link Token.getSize | `Token#getSize`} */
|
1189
|
+
interface Size {
|
1190
|
+
width: number;
|
1191
|
+
height: number;
|
1192
|
+
}
|
1193
|
+
|
1194
|
+
/**
|
1195
|
+
* @privateRemarks Foundry types this as `Point | (Point & {elevation: number}) | {elevation: number}`,
|
1196
|
+
* but this is misleading, as if an object is passed for the 2nd param of {@link Token.testInsideRegion | `Token#testInsideRegion`}
|
1197
|
+
* then it must contain `{x, y}` data, only if the value is nullish does the document's data get used.
|
1198
|
+
* Passing just `{elevation: number}` would result in `{x: undefined, y: undefined}`, causing
|
1199
|
+
* `PIXI.Rectangle#contains()` to always return false.
|
1200
|
+
*
|
1201
|
+
* Not reported, as `testInsideRegion` is deprecated and thus untyped in v13.
|
1202
|
+
*/
|
1203
|
+
type TestablePosition = Canvas.Point & { elevation?: number };
|
1204
|
+
|
1205
|
+
type _InitializeSourcesOptions = NullishProps<{
|
1206
|
+
/**
|
1207
|
+
* Indicate that this source has been deleted.
|
1208
|
+
* @defaultValue `false`
|
1209
|
+
*/
|
1210
|
+
deleted: boolean;
|
1211
|
+
}>;
|
1212
|
+
|
1213
|
+
interface InitializeSourcesOptions extends _InitializeSourcesOptions {}
|
1214
|
+
|
1215
|
+
/** @internal */
|
1216
|
+
type _TargetContext = NullishProps<{
|
1217
|
+
/**
|
1218
|
+
* Assign the token as a target for a specific User
|
1219
|
+
* @defaultValue `game.user`
|
1220
|
+
* @remarks `null` is the parameter default, but it's `||=`d with `game.user`
|
1221
|
+
*/
|
1222
|
+
user: User.Implementation;
|
1223
|
+
|
1224
|
+
/**
|
1225
|
+
* Release other active targets for the same player?
|
1226
|
+
* @defaultValue `true`
|
1227
|
+
*/
|
1228
|
+
releaseOthers: boolean;
|
1229
|
+
|
1230
|
+
/**
|
1231
|
+
* Is this target being set as part of a group selection workflow?
|
1232
|
+
* @defaultValue `false`
|
1233
|
+
*/
|
1234
|
+
groupSelection: boolean;
|
1235
|
+
}>;
|
1236
|
+
|
1237
|
+
interface TargetContext extends _TargetContext {}
|
1238
|
+
|
1239
|
+
interface AnimationContext {
|
1240
|
+
/** The name of the animation */
|
1241
|
+
name: PropertyKey;
|
1242
|
+
|
1243
|
+
/**
|
1244
|
+
* The final animation state
|
1245
|
+
* @remarks This gets `mergeObject`ed with the return of {@link Token._getAnimationData | `Token#_getAnimationData`}
|
1246
|
+
*/
|
1247
|
+
to: PartialAnimationData;
|
1248
|
+
|
1249
|
+
/** The duration of the animation */
|
1250
|
+
duration: number;
|
1251
|
+
|
1252
|
+
/** The current time of the animation */
|
1253
|
+
time: number;
|
1254
|
+
|
1255
|
+
/** Asynchronous functions that are executed before the animation starts */
|
1256
|
+
preAnimate: ((context: Token.AnimationContext) => Promise<void>)[];
|
1257
|
+
|
1258
|
+
/** Synchronous functions that are executed after the animation ended */
|
1259
|
+
postAnimate: ((context: Token.AnimationContext) => void)[];
|
1260
|
+
|
1261
|
+
/** Synchronous functions that are executed each frame after `ontick` and before {@link Token._onAnimationUpdate | `Token#_onAnimationUpdate`} */
|
1262
|
+
onAnimate: ((context: Token.AnimationContext) => void)[];
|
1263
|
+
|
1264
|
+
/**
|
1265
|
+
* The promise of the animation, which resolves to true if the animation
|
1266
|
+
* completed, to false if it was terminated, and rejects if an error occurred.
|
1267
|
+
* Undefined in the first frame (at time 0) of the animation.
|
1268
|
+
*/
|
1269
|
+
promise?: Promise<boolean> | undefined;
|
1270
|
+
}
|
1271
|
+
|
1272
|
+
interface DragLeftDropUpdate {
|
1273
|
+
_id: string;
|
1274
|
+
x: number;
|
1275
|
+
y: number;
|
1276
|
+
}
|
1277
|
+
|
1278
|
+
/** @internal */
|
1279
|
+
type _RefreshHUDOptions = NullishProps<{
|
1280
|
+
bars: boolean;
|
1281
|
+
border: boolean;
|
1282
|
+
elevation: boolean;
|
1283
|
+
nameplate: boolean;
|
1284
|
+
effects: boolean;
|
1285
|
+
}>;
|
1286
|
+
interface RefreshHUDOptions extends _RefreshHUDOptions {}
|
1287
|
+
}
|
821
1288
|
}
|