need to reduce time to compile
This commit is contained in:
parent
cc4cf4b879
commit
e0a55875fe
|
@ -273,7 +273,6 @@ MACHINE.modules[~s] =
|
|||
;; last
|
||||
on-last-src))
|
||||
|
||||
|
||||
(fprintf op "var invoke = (function(MACHINE, SUCCESS, FAIL, PARAMS) {")
|
||||
(fprintf op " plt.runtime.ready(function() {")
|
||||
(fprintf op "plt.runtime.setReadyFalse();")
|
||||
|
|
|
@ -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
|
||||
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
|
||||
received by the
|
||||
@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}
|
||||
An @deftech{event} is a collection of name-value pairs.
|
||||
An @deftech{event} is a structure that holds name-value pairs.
|
||||
|
||||
|
||||
|
||||
|
|
25
web-world/event.rkt
Normal file
25
web-world/event.rkt
Normal 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))]))
|
||||
|
|
@ -1,9 +1,8 @@
|
|||
#lang s-exp "../lang/js/js.rkt"
|
||||
|
||||
|
||||
;; Make sure the resource library is loaded.
|
||||
(require "../resource.rkt")
|
||||
|
||||
;; Make sure the resource library is loaded, as well as the event structure library.
|
||||
(require "../resource.rkt" "event.rkt")
|
||||
|
||||
(declare-implementation
|
||||
#:racket "racket-impl.rkt"
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
var finalizeClosureCall = plt.baselib.functions.finalizeClosureCall;
|
||||
var PAUSE = plt.runtime.PAUSE;
|
||||
var isString = plt.baselib.strings.isString;
|
||||
var makeList = plt.baselib.lists.makeList;
|
||||
|
||||
|
||||
|
||||
|
@ -22,6 +23,10 @@
|
|||
var resourceStructType =
|
||||
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 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.
|
||||
|
@ -643,8 +671,9 @@
|
|||
|
||||
TickEventSource.prototype.onStart = function(fireEvent) {
|
||||
this.id = setInterval(
|
||||
function() {
|
||||
fireEvent(undefined);
|
||||
function(evt) {
|
||||
fireEvent(undefined,
|
||||
objectToEvent(evt));
|
||||
},
|
||||
this.delay);
|
||||
};
|
||||
|
@ -659,6 +688,8 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
var MockLocationEventSource = function() {
|
||||
this.elt = undefined;
|
||||
};
|
||||
|
@ -677,8 +708,8 @@
|
|||
submitButton.value = "send lat/lng";
|
||||
submitButton.onclick = function() {
|
||||
fireEvent(undefined,
|
||||
{ latitude : plt.baselib.numbers.makeFloat(latInput.value),
|
||||
longitude : plt.baselib.numbers.makeFloat(latOutput.value) });
|
||||
objectToEvent({ latitude: Number(latInput.value),
|
||||
longitude: Number(latOutput.value)}));
|
||||
return false;
|
||||
};
|
||||
|
||||
|
@ -714,8 +745,8 @@
|
|||
LocationEventSource.prototype.onStart = function(fireEvent) {
|
||||
var success = function(position) {
|
||||
fireEvent(undefined,
|
||||
{ latitude : plt.baselib.numbers.makeFloat(position.coords.latitude),
|
||||
longitude: plt.baselib.numbers.makeFloat(position.coords.longitude) });
|
||||
objectToEvent({ latitude : plt.baselib.numbers.makeFloat(position.coords.latitude),
|
||||
longitude: plt.baselib.numbers.makeFloat(position.coords.longitude) }));
|
||||
};
|
||||
var fail = function(err) {
|
||||
// Quiet failure
|
||||
|
@ -761,7 +792,7 @@
|
|||
|
||||
this.handler = function(evt) {
|
||||
if (element !== undefined) {
|
||||
fireEvent(element, evt);
|
||||
fireEvent(element, objectToEvent(evt));
|
||||
}
|
||||
};
|
||||
if (element !== undefined) {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
#lang s-exp "../lang/base.rkt"
|
||||
|
||||
(require "impl.rkt")
|
||||
(provide (all-from-out "impl.rkt"))
|
||||
(require "impl.rkt"
|
||||
"event.rkt")
|
||||
|
||||
(provide (all-from-out "impl.rkt")
|
||||
(all-from-out "event.rkt"))
|
Loading…
Reference in New Issue
Block a user