From 0af05ce21a0004e9db6af18befeb1665e5c3c9fc Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 18 Jul 2011 14:28:14 -0400 Subject: [PATCH] centralizing the content for adapting to the cps world --- examples/counting-world-program.rkt | 2 +- world/js-impl.js | 6 +- world/kernel.js | 133 +++++++++++++++------------- 3 files changed, 76 insertions(+), 65 deletions(-) diff --git a/examples/counting-world-program.rkt b/examples/counting-world-program.rkt index 91791a4..bf11595 100644 --- a/examples/counting-world-program.rkt +++ b/examples/counting-world-program.rkt @@ -10,7 +10,7 @@ handler (big-bang 1 (on-tick add1 1) - ;;(on-tick (lambda (w) (* w 2)) 1) + ;(on-tick (lambda (w) (* w 2)) 1) (stop-when (lambda (w) (> w 10))) ) diff --git a/world/js-impl.js b/world/js-impl.js index 82924bf..425066c 100644 --- a/world/js-impl.js +++ b/world/js-impl.js @@ -29,7 +29,7 @@ var checkHandler = plt.baselib.check.makeCheckArgumentType( // The default tick delay is 28 times a second. -var DEFAULT_TICK_DELAY = makeRational(1, 28); +var DEFAULT_TICK_DELAY = 1/28; @@ -55,11 +55,11 @@ EXPORTS['on-tick'] = function(MACHINE) { if (MACHINE.argcount === 1) { var f = checkProcedure1(MACHINE, "on-tick", 0); - return new OnTick(f, DEFAULT_TICK_DELAY); + return new OnTick(f, Math.floor(DEFAULT_TICK_DELAY * 1000)); } else if (MACHINE.argcount === 2) { var f = checkProcedure1(MACHINE, "on-tick", 0); var delay = checkNonNegativeReal(MACHINE, "on-tick", 1); - return new OnTick(f, delay); + return new OnTick(f, Math.floor(jsnums.toFixnum(delay) * 1000)); } }); diff --git a/world/kernel.js b/world/kernel.js index d3c1819..c2db5c5 100644 --- a/world/kernel.js +++ b/world/kernel.js @@ -108,72 +108,48 @@ var isWorldConfigOption = plt.baselib.makeClassPredicate(WorldConfigOption); ////////////////////////////////////////////////////////////////////// -var convertAttribList = function(attribList) { - var nextElt; - var key, val; - var hash = {}; - while (attribList !== EMPTY) { - nextElt = attribList.first; - key = nextElt.first; - val = nextElt.rest.first; - key = String(key); - - if (isString(val)) { - val = String(val); - } else if (isBoolean(val)) { - // do nothing: the representation is the same. - } else if (isSymbol(val)) { - if (String(val) === 'true') { - val = true; - } else if (String(val) === 'false') { - val = false; - } else { - val = String(val); - } - } else { - // raise error: neither string nor boolean - throw new Error( - plt.baselib.format.format( - "attribute value ~s neither a string nor a boolean", - [val])); - } - hash[key] = val; - attribList = attribList.rest; +// adaptWorldFunction: Racket-function -> World-CPS +// Takes a racket function and converts it to the CPS-style function +// that our world implementation expects. +var adaptWorldFunction = function(worldFunction) { + return function() { + // Consumes any number of arguments. + var success = arguments[arguments.length - 1]; + plt.baselib.functions.internalCallDuringPause.apply( + null, + [MACHINE, + worldFunction, + function(v) { + success(v); + }, + function(err) { + // FIXME: do error trapping + console.log(err); + }].concat([].slice.call(arguments, 0, arguments.length - 1))); } - return hash; -} +}; + + ////////////////////////////////////////////////////////////////////// - +// OnTick: racket-function javascript-float -> handler var OnTick = function(handler, aDelay) { WorldConfigOption.call(this, 'on-tick'); this.handler = handler; - this.delay = jsnums.toFixnum(jsnums.multiply(1000, aDelay)); + this.delay = aDelay; }; OnTick.prototype = plt.baselib.heir(WorldConfigOption.prototype); OnTick.prototype.toRawHandler = function(MACHINE) { var that = this; - var worldFunction = function(world, k) { - plt.baselib.functions.internalCallDuringPause( - MACHINE, - that.handler, - function(v) { - k(v); - }, - - function(err) { - console.log(err); - }, - world); - }; + var worldFunction = adaptWorldFunction(that.handler); return rawJsworld.on_tick(this.delay, worldFunction); }; @@ -183,6 +159,7 @@ OnTick.prototype.toRawHandler = function(MACHINE) { + // // OnDraw var OnDraw = function(handler) { @@ -234,19 +211,7 @@ StopWhen.prototype = plt.baselib.heir(WorldConfigOption.prototype); StopWhen.prototype.toRawHandler = function(MACHINE) { var that = this; - var worldFunction = function(world, k) { - plt.baselib.functions.internalCallDuringPause( - MACHINE, - that.handler, - function(v) { - k(v); - }, - - function(err) { - console.log(err); - }, - world); - } + var worldFunction = adaptWorldFunction(that.handler); return rawJsworld.stop_when(worldFunction); }; @@ -1064,3 +1029,49 @@ StopWhen.prototype.toRawHandler = function(MACHINE) { // elt = types.toDomNode(newElt);}); // return _js.placeOnPage(elt, left, top, page); // }; + + + +// var convertAttribList = function(attribList) { +// var nextElt; +// var key, val; +// var hash = {}; +// while (attribList !== EMPTY) { +// nextElt = attribList.first; + +// key = nextElt.first; +// val = nextElt.rest.first; + +// key = String(key); + +// if (isString(val)) { +// val = String(val); +// } else if (isBoolean(val)) { +// // do nothing: the representation is the same. +// } else if (isSymbol(val)) { +// if (String(val) === 'true') { +// val = true; +// } else if (String(val) === 'false') { +// val = false; +// } else { +// val = String(val); +// } +// } else { +// // raise error: neither string nor boolean +// throw new Error( +// plt.baselib.format.format( +// "attribute value ~s neither a string nor a boolean", +// [val])); +// } +// hash[key] = val; +// attribList = attribList.rest; +// } +// return hash; +// } + + + + + + +