FIX: fix stop-when without last-picture crash in world #23
This commit is contained in:
parent
5d5ab6b32a
commit
c04ade5b28
|
@ -377,7 +377,7 @@ DefaultDrawingOutput.prototype.toRawHandler = function(MACHINE, toplevelNode) {
|
||||||
var StopWhen = function(handler, last_picture) {
|
var StopWhen = function(handler, last_picture) {
|
||||||
WorldConfigOption.call(this, 'stop-when');
|
WorldConfigOption.call(this, 'stop-when');
|
||||||
this.handler = handler;
|
this.handler = handler;
|
||||||
this.last_picture = new ToDraw(last_picture);
|
this.last_picture = last_picture && new ToDraw(last_picture);
|
||||||
};
|
};
|
||||||
|
|
||||||
StopWhen.prototype = plt.baselib.heir(WorldConfigOption.prototype);
|
StopWhen.prototype = plt.baselib.heir(WorldConfigOption.prototype);
|
||||||
|
@ -385,6 +385,6 @@ StopWhen.prototype = plt.baselib.heir(WorldConfigOption.prototype);
|
||||||
StopWhen.prototype.toRawHandler = function(MACHINE, toplevelNode) {
|
StopWhen.prototype.toRawHandler = function(MACHINE, toplevelNode) {
|
||||||
var that = this;
|
var that = this;
|
||||||
var worldFunction = adaptWorldFunction(that.handler);
|
var worldFunction = adaptWorldFunction(that.handler);
|
||||||
var lastPictureHandler = that.last_picture.toRawHandler(MACHINE, toplevelNode);
|
var lastPictureHandler = that.last_picture && that.last_picture.toRawHandler(MACHINE, toplevelNode);
|
||||||
return rawJsworld.stop_when(worldFunction, undefined, lastPictureHandler);
|
return rawJsworld.stop_when(worldFunction, undefined, lastPictureHandler);
|
||||||
};
|
};
|
||||||
|
|
|
@ -663,12 +663,16 @@ var rawJsworld = {};
|
||||||
stopWhen.test(w,
|
stopWhen.test(w,
|
||||||
function(stop) {
|
function(stop) {
|
||||||
if (stop) {
|
if (stop) {
|
||||||
var handler = stopWhen.last_picture_handler();
|
if (stopWhen.last_picture_handler) {
|
||||||
handler.onRegister(top);
|
var handler = stopWhen.last_picture_handler();
|
||||||
handler._listener(w, oldW, function(v) {
|
handler.onRegister(top);
|
||||||
|
handler._listener(w, oldW, function(v) {
|
||||||
|
Jsworld.shutdown({cleanShutdown: true});
|
||||||
|
k2();
|
||||||
|
})
|
||||||
|
} else {
|
||||||
Jsworld.shutdown({cleanShutdown: true});
|
Jsworld.shutdown({cleanShutdown: true});
|
||||||
k2();
|
}
|
||||||
})
|
|
||||||
} else { k2(); }
|
} else { k2(); }
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user