Only wipe gridded pathfinding cache when the wall layout changes

This commit is contained in:
Manuel Vögele
2022-02-15 09:33:24 +01:00
parent dd9a7ecf68
commit 8e29cf186b
3 changed files with 7 additions and 12 deletions
+6 -6
View File
@@ -7,7 +7,7 @@ import {disableSnap, registerKeybindings} from "./keybindings.js";
import {libWrapper} from "./libwrapper_shim.js"; import {libWrapper} from "./libwrapper_shim.js";
import {performMigrations} from "./migration.js" import {performMigrations} from "./migration.js"
import {removeLastHistoryEntryIfAt, resetMovementHistory} from "./movement_tracking.js"; import {removeLastHistoryEntryIfAt, resetMovementHistory} from "./movement_tracking.js";
import {wipeGridlessPathfindingCache} from "./pathfinding.js"; import {wipePathfindingCache} from "./pathfinding.js";
import {extendRuler} from "./ruler.js"; import {extendRuler} from "./ruler.js";
import {registerSettings, RightClickAction, settingsKey} from "./settings.js" import {registerSettings, RightClickAction, settingsKey} from "./settings.js"
import {recalculate} from "./socket.js"; import {recalculate} from "./socket.js";
@@ -20,11 +20,11 @@ CONFIG.debug.dragRuler = false;
export let debugGraphics = undefined; export let debugGraphics = undefined;
initGridlessPathfinding().then(() => { initGridlessPathfinding().then(() => {
Hooks.on("canvasInit", wipeGridlessPathfindingCache); Hooks.on("canvasInit", wipePathfindingCache);
Hooks.on("canvasReady", wipeGridlessPathfindingCache); Hooks.on("canvasReady", wipePathfindingCache);
Hooks.on("createWall", wipeGridlessPathfindingCache); Hooks.on("createWall", wipePathfindingCache);
Hooks.on("updateWall", wipeGridlessPathfindingCache); Hooks.on("updateWall", wipePathfindingCache);
Hooks.on("deleteWall", wipeGridlessPathfindingCache); Hooks.on("deleteWall", wipePathfindingCache);
}); });
Hooks.once("init", () => { Hooks.once("init", () => {
+1 -4
View File
@@ -47,11 +47,8 @@ export function findPath(from, to, token, previousWaypoints) {
} }
} }
export function wipeGriddedPathfindingCache() { export function wipePathfindingCache() {
cachedNodes = undefined; cachedNodes = undefined;
}
export function wipeGridlessPathfindingCache() {
if (gridlessPathfinder) { if (gridlessPathfinder) {
GridlessPathfinding.free(gridlessPathfinder); GridlessPathfinding.free(gridlessPathfinder);
gridlessPathfinder = undefined; gridlessPathfinder = undefined;
-2
View File
@@ -2,7 +2,6 @@ import {currentSpeedProvider, getColorForDistanceAndToken, getRangesFromSpeedPro
import {getHexSizeSupportTokenGridCenter} from "./compatibility.js"; import {getHexSizeSupportTokenGridCenter} from "./compatibility.js";
import {cancelScheduledMeasurement, measure} from "./foundry_imports.js" import {cancelScheduledMeasurement, measure} from "./foundry_imports.js"
import {getMovementHistory} from "./movement_tracking.js"; import {getMovementHistory} from "./movement_tracking.js";
import {wipeGriddedPathfindingCache} from "./pathfinding.js";
import {settingsKey} from "./settings.js"; import {settingsKey} from "./settings.js";
import {getSnapPointForEntity} from "./util.js"; import {getSnapPointForEntity} from "./util.js";
@@ -187,7 +186,6 @@ export function extendRuler() {
return; return;
const ruler = canvas.controls.ruler; const ruler = canvas.controls.ruler;
ruler.clear(); ruler.clear();
wipeGriddedPathfindingCache();
ruler._state = Ruler.STATES.STARTING; ruler._state = Ruler.STATES.STARTING;
let entityCenter; let entityCenter;
if (isToken && canvas.grid.isHex && game.modules.get("hex-size-support")?.active && CONFIG.hexSizeSupport.getAltSnappingFlag(entity)) if (isToken && canvas.grid.isHex && game.modules.get("hex-size-support")?.active && CONFIG.hexSizeSupport.getAltSnappingFlag(entity))