Skip to content

Commit a503f8f

Browse files
committed
Fix various bugs with wiping/deleting doors
1 parent 364b945 commit a503f8f

File tree

1 file changed

+21
-8
lines changed

1 file changed

+21
-8
lines changed

DynamicLightRecorder/DynamicLightRecorder.js

+21-8
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
308308

309309
template.doorDetails.type = 'indirect';
310310
template.doorDetails.offset = hingeOffset;
311+
doorToken.set('layer', 'map');
311312

312313
this.getControlInfoObject(doorToken, _.extend(options, {template: template})).onAdded();
313314

@@ -326,7 +327,7 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
326327
};
327328

328329
var template = this.makeDoorTemplate(token, doorBoundingBox, options, '!dl-directDoor');
329-
if (!template) return
330+
if (!template) return;
330331
template.doorDetails.type = 'direct';
331332

332333
this.getControlInfoObject(token, _.extend(options, {template: template})).onAdded();
@@ -473,8 +474,6 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
473474
var doorWidth = doorBoundingBox.width;
474475
var dlLineWidth = doorWidth + 4;
475476

476-
477-
token.set('layer', 'map');
478477
var dlPath = createObj('path', {
479478
pageid: token.get('_pageid'),
480479
layer: 'walls',
@@ -490,6 +489,7 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
490489
dlPath.remove();
491490
return;
492491
}
492+
493493
var minRotation = mod(+(token.get('bar1_value') || -90) + template.rotation, 360);
494494
var maxRotation = mod(+(token.get('bar1_max') || 90) + template.rotation, 360);
495495
token.set('bar1_value', '');
@@ -673,6 +673,7 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
673673
},
674674

675675
removeDependentObject = function(name) {
676+
logger.debug('Removing dependent object: $$$', name);
676677
var object = tokenStorage.get(name);
677678
if (object) {
678679
object.set('controlledby', 'APIREMOVE');
@@ -690,7 +691,17 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
690691
if (!tw) {
691692
//this token is no longer attached to any template,
692693
//make sure we clean up any dependencies
693-
return onDelete();
694+
_.invoke(tokenStorage.get('dlPaths'), 'remove');
695+
tokenStorage.remove('dlPaths');
696+
switch(tokenStorage.get('type')) {
697+
case 'directDoor':
698+
removeDependentObject('door');
699+
break;
700+
case 'indirectDoor':
701+
removeDependentObject('doorControl');
702+
break;
703+
}
704+
return;
694705
};
695706
var transformations = tw.getTransformations(token);
696707
switch(type) {
@@ -745,14 +756,14 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
745756
doorControl = tokenStorage.get('doorControl');
746757
switch(type) {
747758
case 'directDoor':
748-
//This is a real problem, we can't redraw it because of Roll20 imgsrc restrictions,
749-
//for the time being we'll just leave everything as it is with the placeholder and
750-
//the DLPaths. Perhaps consider moving to the token layer to highlight?
751759
if (token.get('controlledby') === 'APIREMOVE') {
752760
_.invoke(tokenStorage.get('dlPaths'), 'remove');
753761
tokenStorage.remove('dlPaths');
754762
}
755763
else {
764+
//This is a real problem, we can't redraw it because of Roll20 imgsrc restrictions,
765+
//for the time being we'll just leave everything as it is with the placeholder and
766+
//the DLPaths. Perhaps consider moving to the token layer to highlight?
756767
logger.warn("Direct door control with id $$$ has been deleted, can't recreate", token.id);
757768
}
758769
break;
@@ -763,7 +774,9 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
763774
}
764775
break;
765776
case 'directDoorPlaceholder':
766-
removeDependentObject('doorControl');
777+
if (token.get('controlledby') !== 'APIREMOVE') {
778+
removeDependentObject('doorControl');
779+
}
767780
break;
768781
case 'indirectDoor':
769782
removeDependentObject('doorControl');

0 commit comments

Comments
 (0)