@@ -308,6 +308,7 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
308
308
309
309
template . doorDetails . type = 'indirect' ;
310
310
template . doorDetails . offset = hingeOffset ;
311
+ doorToken . set ( 'layer' , 'map' ) ;
311
312
312
313
this . getControlInfoObject ( doorToken , _ . extend ( options , { template : template } ) ) . onAdded ( ) ;
313
314
@@ -326,7 +327,7 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
326
327
} ;
327
328
328
329
var template = this . makeDoorTemplate ( token , doorBoundingBox , options , '!dl-directDoor' ) ;
329
- if ( ! template ) return
330
+ if ( ! template ) return ;
330
331
template . doorDetails . type = 'direct' ;
331
332
332
333
this . getControlInfoObject ( token , _ . extend ( options , { template : template } ) ) . onAdded ( ) ;
@@ -473,8 +474,6 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
473
474
var doorWidth = doorBoundingBox . width ;
474
475
var dlLineWidth = doorWidth + 4 ;
475
476
476
-
477
- token . set ( 'layer' , 'map' ) ;
478
477
var dlPath = createObj ( 'path' , {
479
478
pageid : token . get ( '_pageid' ) ,
480
479
layer : 'walls' ,
@@ -490,6 +489,7 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
490
489
dlPath . remove ( ) ;
491
490
return ;
492
491
}
492
+
493
493
var minRotation = mod ( + ( token . get ( 'bar1_value' ) || - 90 ) + template . rotation , 360 ) ;
494
494
var maxRotation = mod ( + ( token . get ( 'bar1_max' ) || 90 ) + template . rotation , 360 ) ;
495
495
token . set ( 'bar1_value' , '' ) ;
@@ -673,6 +673,7 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
673
673
} ,
674
674
675
675
removeDependentObject = function ( name ) {
676
+ logger . debug ( 'Removing dependent object: $$$' , name ) ;
676
677
var object = tokenStorage . get ( name ) ;
677
678
if ( object ) {
678
679
object . set ( 'controlledby' , 'APIREMOVE' ) ;
@@ -690,7 +691,17 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
690
691
if ( ! tw ) {
691
692
//this token is no longer attached to any template,
692
693
//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 ;
694
705
} ;
695
706
var transformations = tw . getTransformations ( token ) ;
696
707
switch ( type ) {
@@ -745,14 +756,14 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
745
756
doorControl = tokenStorage . get ( 'doorControl' ) ;
746
757
switch ( type ) {
747
758
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?
751
759
if ( token . get ( 'controlledby' ) === 'APIREMOVE' ) {
752
760
_ . invoke ( tokenStorage . get ( 'dlPaths' ) , 'remove' ) ;
753
761
tokenStorage . remove ( 'dlPaths' ) ;
754
762
}
755
763
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?
756
767
logger . warn ( "Direct door control with id $$$ has been deleted, can't recreate" , token . id ) ;
757
768
}
758
769
break ;
@@ -763,7 +774,9 @@ var DynamicLightRecorder = DynamicLightRecorder || (function() {
763
774
}
764
775
break ;
765
776
case 'directDoorPlaceholder' :
766
- removeDependentObject ( 'doorControl' ) ;
777
+ if ( token . get ( 'controlledby' ) !== 'APIREMOVE' ) {
778
+ removeDependentObject ( 'doorControl' ) ;
779
+ }
767
780
break ;
768
781
case 'indirectDoor' :
769
782
removeDependentObject ( 'doorControl' ) ;
0 commit comments