need to reduce time to compile

This commit is contained in:
Danny Yoo 2011-08-29 12:17:26 -04:00
parent cc4cf4b879
commit e0a55875fe
7 changed files with 79 additions and 16 deletions

View File

@ -273,7 +273,6 @@ MACHINE.modules[~s] =
;; last ;; last
on-last-src)) on-last-src))
(fprintf op "var invoke = (function(MACHINE, SUCCESS, FAIL, PARAMS) {") (fprintf op "var invoke = (function(MACHINE, SUCCESS, FAIL, PARAMS) {")
(fprintf op " plt.runtime.ready(function() {") (fprintf op " plt.runtime.ready(function() {")
(fprintf op "plt.runtime.setReadyFalse();") (fprintf op "plt.runtime.setReadyFalse();")

View File

@ -108,6 +108,9 @@ During the extent of a big-bang, a form widget will appear in the
@tt{document.body} to allow you to manually send location-changing @tt{document.body} to allow you to manually send location-changing
events. events.
The optional @tech{event} argument will contain numbers for
@racket["latitude"] and @racket["longitude"].
} }
@ -115,6 +118,9 @@ events.
Tells @racket[big-bang] to update when the location changes, as Tells @racket[big-bang] to update when the location changes, as
received by the received by the
@link["http://dev.w3.org/geo/api/spec-source.html"]{Geolocation API}. @link["http://dev.w3.org/geo/api/spec-source.html"]{Geolocation API}.
The optional @tech{event} argument will contain numbers for
@racket["latitude"] and @racket["longitude"].
} }
@ -195,7 +201,7 @@ Add the dom node @racket[d] as the last child of the focused node.}
@subsection{Events} @subsection{Events}
An @deftech{event} is a collection of name-value pairs. An @deftech{event} is a structure that holds name-value pairs.

View File

@ -1,4 +1,4 @@
#lang typed/racket/base #lang typed/racket/base
(provide version) (provide version)
(: version String) (: version String)
(define version "1.0") (define version "1.0")

25
web-world/event.rkt Normal file
View File

@ -0,0 +1,25 @@
#lang s-exp "../lang/base.rkt"
(provide (all-defined-out))
(define-struct event (kvpairs))
(define (event-keys an-evt)
(map car (event-kvpairs an-evt)))
(define (event-ref an-evt a-key)
(define clean-key (cond
[(symbol? a-key)
a-key]
[(string? a-key)
(string->symbol a-key)]
[else
(raise-type-error 'event-ref "symbol or string" a-key)]))
(define kv (assq clean-key (event-kvpairs an-evt)))
(cond [(eq? kv #f)
(error 'event-ref "Could not find key ~a" a-key)]
[else
(car (cdr kv))]))

View File

@ -1,9 +1,8 @@
#lang s-exp "../lang/js/js.rkt" #lang s-exp "../lang/js/js.rkt"
;; Make sure the resource library is loaded. ;; Make sure the resource library is loaded, as well as the event structure library.
(require "../resource.rkt") (require "../resource.rkt" "event.rkt")
(declare-implementation (declare-implementation
#:racket "racket-impl.rkt" #:racket "racket-impl.rkt"

View File

@ -9,6 +9,7 @@
var finalizeClosureCall = plt.baselib.functions.finalizeClosureCall; var finalizeClosureCall = plt.baselib.functions.finalizeClosureCall;
var PAUSE = plt.runtime.PAUSE; var PAUSE = plt.runtime.PAUSE;
var isString = plt.baselib.strings.isString; var isString = plt.baselib.strings.isString;
var makeList = plt.baselib.lists.makeList;
@ -22,6 +23,10 @@
var resourceStructType = var resourceStructType =
MACHINE.modules['whalesong/resource/structs.rkt'].namespace['struct:resource']; MACHINE.modules['whalesong/resource/structs.rkt'].namespace['struct:resource'];
var eventStructType =
MACHINE.modules['whalesong/web-world/event.rkt'].namespace['struct:event'];
var domToCursor = function(dom) { var domToCursor = function(dom) {
var domOpenF = var domOpenF =
@ -597,6 +602,29 @@
// convert an object to an event.
// At the moment, we only copy over those values which are numbers or strings.
var objectToEvent = function(obj) {
var key, val;
var result = makeList();
for (key in obj) {
if (obj.hasOwnProperty(key)) {
val = obj[key];
if (typeof(val) === 'number') {
result = makePair(makeList(makeSymbol(key),
plt.baselib.numbers.makeFloat(val)),
result);
} else if (typeof(val) === 'string') {
result = makePair(makeList(makeSymbol(key), val)
result);
}
}
}
return eventStructType.constructor(result);
};
/* Event sources. /* Event sources.
@ -643,8 +671,9 @@
TickEventSource.prototype.onStart = function(fireEvent) { TickEventSource.prototype.onStart = function(fireEvent) {
this.id = setInterval( this.id = setInterval(
function() { function(evt) {
fireEvent(undefined); fireEvent(undefined,
objectToEvent(evt));
}, },
this.delay); this.delay);
}; };
@ -659,6 +688,8 @@
var MockLocationEventSource = function() { var MockLocationEventSource = function() {
this.elt = undefined; this.elt = undefined;
}; };
@ -677,8 +708,8 @@
submitButton.value = "send lat/lng"; submitButton.value = "send lat/lng";
submitButton.onclick = function() { submitButton.onclick = function() {
fireEvent(undefined, fireEvent(undefined,
{ latitude : plt.baselib.numbers.makeFloat(latInput.value), objectToEvent({ latitude: Number(latInput.value),
longitude : plt.baselib.numbers.makeFloat(latOutput.value) }); longitude: Number(latOutput.value)}));
return false; return false;
}; };
@ -700,7 +731,7 @@
}; };
}; };
@ -714,8 +745,8 @@
LocationEventSource.prototype.onStart = function(fireEvent) { LocationEventSource.prototype.onStart = function(fireEvent) {
var success = function(position) { var success = function(position) {
fireEvent(undefined, fireEvent(undefined,
{ latitude : plt.baselib.numbers.makeFloat(position.coords.latitude), objectToEvent({ latitude : plt.baselib.numbers.makeFloat(position.coords.latitude),
longitude: plt.baselib.numbers.makeFloat(position.coords.longitude) }); longitude: plt.baselib.numbers.makeFloat(position.coords.longitude) }));
}; };
var fail = function(err) { var fail = function(err) {
// Quiet failure // Quiet failure
@ -761,7 +792,7 @@
this.handler = function(evt) { this.handler = function(evt) {
if (element !== undefined) { if (element !== undefined) {
fireEvent(element, evt); fireEvent(element, objectToEvent(evt));
} }
}; };
if (element !== undefined) { if (element !== undefined) {

View File

@ -1,4 +1,7 @@
#lang s-exp "../lang/base.rkt" #lang s-exp "../lang/base.rkt"
(require "impl.rkt") (require "impl.rkt"
(provide (all-from-out "impl.rkt")) "event.rkt")
(provide (all-from-out "impl.rkt")
(all-from-out "event.rkt"))