From 88d66264518ec7a0af956ce84a1a874cdc243a9b Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Fri, 22 Jul 2011 23:53:16 -0400 Subject: [PATCH 1/7] crazy idea to do the presentation as a world program --- image/private/js-impl.js | 9 + image/private/main.rkt | 2 + image/private/racket-impl.rkt | 3 + js-assembler/runtime-src/runtime.js | 7 + lang/kernel.rkt | 2 +- racketcon/hello.rkt | 23 + racketcon/hello.xhtml | 41927 +++++++++++++++++++ racketcon/pacman.rkt | 450 + racketcon/pacman.xhtml | 56736 ++++++++++++++++++++++++++ racketcon/rain.rkt | 128 + racketcon/rain.xhtml | 43033 +++++++++++++++++++ racketcon/talk.rkt | 71 + 12 files changed, 142390 insertions(+), 1 deletion(-) create mode 100644 racketcon/hello.rkt create mode 100644 racketcon/hello.xhtml create mode 100644 racketcon/pacman.rkt create mode 100644 racketcon/pacman.xhtml create mode 100644 racketcon/rain.rkt create mode 100644 racketcon/rain.xhtml create mode 100644 racketcon/talk.rkt diff --git a/image/private/js-impl.js b/image/private/js-impl.js index fdf70b5..a714a88 100644 --- a/image/private/js-impl.js +++ b/image/private/js-impl.js @@ -220,6 +220,15 @@ EXPORTS['step-count?'] = }); +EXPORTS['image?'] = + makePrimitiveProcedure( + 'image?', + 1, + function(MACHINE) { + return isImage(MACHINE.env[MACHINE.env.length - 1]); + }); + + EXPORTS['text'] = makePrimitiveProcedure( diff --git a/image/private/main.rkt b/image/private/main.rkt index c066451..39a790a 100644 --- a/image/private/main.rkt +++ b/image/private/main.rkt @@ -61,6 +61,8 @@ angle? side-count? step-count? + + image? )) diff --git a/image/private/racket-impl.rkt b/image/private/racket-impl.rkt index db76120..a310a7d 100644 --- a/image/private/racket-impl.rkt +++ b/image/private/racket-impl.rkt @@ -55,6 +55,9 @@ side-count? image-color? + + image? + ;; Something funky is happening on the Racket side of things with regards ;; to step-count? See: http://bugs.racket-lang.org/query/?cmd=view&pr=12031 ;; step-count? diff --git a/js-assembler/runtime-src/runtime.js b/js-assembler/runtime-src/runtime.js index 255151b..c96c2db 100644 --- a/js-assembler/runtime-src/runtime.js +++ b/js-assembler/runtime-src/runtime.js @@ -1352,6 +1352,13 @@ if(this['plt'] === undefined) { this['plt'] = {}; } }); + installPrimitiveProcedure( + 'string?', + 1, + function(MACHINE) { + return isString(MACHINE.env[MACHINE.env.length - 1]); + }); + installPrimitiveProcedure( 'exact?', 1, diff --git a/lang/kernel.rkt b/lang/kernel.rkt index 883a5d2..b94569d 100644 --- a/lang/kernel.rkt +++ b/lang/kernel.rkt @@ -255,7 +255,7 @@ error ;; immutable? ;; void? symbol? -;; string? +string? ;; char? ;; boolean? vector? diff --git a/racketcon/hello.rkt b/racketcon/hello.rkt new file mode 100644 index 0000000..24b4b5f --- /dev/null +++ b/racketcon/hello.rkt @@ -0,0 +1,23 @@ +#lang planet dyoo/whalesong/bf + ++++++ +++++ initialize counter (cell #0) to 10 +[ use loop to set the next four cells to 70/100/30/10 + > +++++ ++ add 7 to cell #1 + > +++++ +++++ add 10 to cell #2 + > +++ add 3 to cell #3 + > + add 1 to cell #4 + <<<< - decrement counter (cell #0) +] +> ++ . print 'H' +> + . print 'e' ++++++ ++ . print 'l' +. print 'l' ++++ . print 'o' +> ++ . print ' ' +<< +++++ +++++ +++++ . print 'W' +> . print 'o' ++++ . print 'r' +----- - . print 'l' +----- --- . print 'd' +> + . print '!' +> . print '\n' diff --git a/racketcon/hello.xhtml b/racketcon/hello.xhtml new file mode 100644 index 0000000..a1146bc --- /dev/null +++ b/racketcon/hello.xhtml @@ -0,0 +1,41927 @@ + + + + + Example + + + + \ No newline at end of file diff --git a/racketcon/pacman.rkt b/racketcon/pacman.rkt new file mode 100644 index 0000000..b321aa0 --- /dev/null +++ b/racketcon/pacman.rkt @@ -0,0 +1,450 @@ +#lang planet dyoo/whalesong + +(require (planet dyoo/whalesong/world)) + + +;; Constants: + +(define E "empty") ;See CellValue data definition below +(define D "dot") ; +(define W "wall") ; + +(define INIT-BOARD ;See Board data definition below + (vector (vector W W W W W W W W W W W W W) + (vector W D D D D D D D D D D D W) + (vector W D W D W W W W W D W D W) + (vector W D W D W D D D W D W D W) + (vector W D W D D D W D D D W D W) + (vector W D W W D W W W D W W D W) + (vector W D D D D D E D D D D D W) + (vector W W W W W W W W W W W W W))) + +(define SMALL-BOARD + (vector (vector E E E) + (vector E E E))) + +(define CELL-SIZE 20) + +(define BOARD-WIDTH (* CELL-SIZE (vector-length (vector-ref INIT-BOARD 0)))) +(define BOARD-HEIGHT (* CELL-SIZE (vector-length INIT-BOARD))) + +(define SMALL-BOARD-WIDTH (* CELL-SIZE (vector-length (vector-ref SMALL-BOARD 0)))) +(define SMALL-BOARD-HEIGHT (* CELL-SIZE (vector-length SMALL-BOARD))) + +(define SCORE-HEIGHT 30) +(define SCORE-TEXT-SIZE 20) + +(define PM (circle 10 "solid" "yellow")) + +(define MTC (rectangle CELL-SIZE CELL-SIZE "solid" "black")) ; empty cell +(define DTC (overlay (circle 3 "solid" "white") MTC)) ; dot in cell +(define WALL (rectangle CELL-SIZE CELL-SIZE "solid" "blue")) ; wall + +(define MTB + (empty-scene BOARD-WIDTH + (+ BOARD-HEIGHT SCORE-HEIGHT))) + +(define SMALL-MTB + (empty-scene SMALL-BOARD-WIDTH + (+ SMALL-BOARD-HEIGHT SCORE-HEIGHT))) + + + +;; Data definitions: + + +;; Score is Natural +;; interp. dots eaten by pac-man since start of game + +(define INIT-SCORE 0) + +;; CellValue is one of: +;; - "empty" +;; - "dot" +;; - "wall" +;; interp. the content of a board cell + +;; Direction is one of: +;; - "U" +;; - "D" +;; - "L" +;; - "R" +;; interp. direction that a sprite is facing + +(define-struct sprite (x y dir)) +;; Sprite is (make-sprite Natural Natural Direction) +;; interp. the position in Board coordinates, and the direction of a sprite + +(define INIT-PM (make-sprite 6 6 "U")) + +;; Board is (vectorof (vectorof CellValue)) +;; interp. the game board + +(define RENDER-TEST-BOARD (vector (vector W E) + (vector D E))) + +(define-struct gs (pm board board-image score)) +;; GameState is (make-gs Sprite Board Image Score) +;; interp. all parts of the pac-man game; pac-man, the current +;; board, the current board image, and the current score + +(define MTB-GS (make-gs INIT-PM INIT-BOARD MTB INIT-SCORE)) + + +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;; Testing values: + +;; Sprite: +(define R-SPRITE (make-sprite 1 1 "R")) +(define L-SPRITE (make-sprite 1 1 "L")) +(define U-SPRITE (make-sprite 1 1 "U")) +(define D-SPRITE (make-sprite 1 1 "D")) + +;; Board: +(define EE-BOARD (vector (vector W W W W) + (vector W E E W) + (vector W W W W))) + +(define ED-BOARD (vector (vector W W W W) + (vector W E D W) + (vector W W W W))) + +(define DD-BOARD (vector (vector W W W W) + (vector W D D W) + (vector W W W W))) + +;; GameState: +;; MTB-GS previously defined above +(define END-GS (make-gs R-SPRITE EE-BOARD SMALL-MTB 0)) + + +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;; Functions: + + +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;; on-tick handler: + + +;; GameState -> GameState +;; advances the game + +(define (tick gs) + (local [(define pm (gs-pm gs)) + (define board (gs-board gs)) + (define board-image (gs-board-image gs)) + (define score (gs-score gs)) + (define new-pm (tick-pm pm board)) + (define new-board (tick-board board new-pm)) + (define new-board-image (tick-board-image board board-image new-pm)) + (define new-score (tick-score new-pm board score))] + (make-gs new-pm + new-board + new-board-image + new-score))) + +;; Sprite Board -> Sprite +;; updates pac-man's position based on its direction +(define (tick-pm pm bd) + (local [(define x (sprite-x pm)) + (define y (sprite-y pm)) + (define dir (sprite-dir pm))] + (make-sprite (checked-move-x x y dir bd) + (checked-move-y x y dir bd) + dir))) + +;; Natural Natural Direction Board -> Natural +;; moves x in direction dir, unless it runs into a wall on bd or dir is not in the x direction +;; ASSUMPTION: assumes x, y is at least one cell away from any edge of bd + +(define (checked-move-x x y dir bd) + (cond [(string=? "L" dir) (restrict-move (sub1 x) y x (sub1 x) bd)] + [(string=? "R" dir) (restrict-move (add1 x) y x (add1 x) bd)] + [else x])) + +;; Natural Natural Direction Board -> Natural +;; moves y in direction dir, unless it runs into a wall on bd or dir is not in the y direction +;; ASSUMPTION: assumes x, y is at least one cell away from any edge of bd + +(define (checked-move-y x y dir bd) + (cond [(string=? "U" dir) (restrict-move x (sub1 y) y (sub1 y) bd)] + [(string=? "D" dir) (restrict-move x (add1 y) y (add1 y) bd)] + [else y])) + +;; Natural Natural Natural Natural Board -> Natural +;; produces new-coord if bd does not contain a wall at check-x, check-y; otherwise produces old-coord + +(define (restrict-move check-x check-y old-coord new-coord bd) + (if (string=? (board-ref bd check-x check-y) "wall") + old-coord + new-coord)) + +;; Board Sprite -> Board +;; if cell at pacman's position is not empty, make a new board in which it is + +(define (tick-board bd pm) + (local [(define x (sprite-x pm)) + (define y (sprite-y pm))] + (if (string=? (board-ref bd x y) "empty") + bd + (new-board-w-empty-at x y bd)))) + +;; Number Number Board -> Board +;; produces a new board with an empty cell at x, y + +(define (new-board-w-empty-at x0 y0 bd) + (map-board (lambda (x y cv) + (if (and (= x0 x) (= y0 y)) + "empty" + cv)) + bd)) + +;; Board Image Sprite -> Image +;; updates the board image with an empty cell at x, y if pac-man is in a cell with a dot +(define (tick-board-image bd board-image pm) + (local [(define x (sprite-x pm)) + (define y (sprite-y pm))] + (if (string=? (board-ref bd x y) "dot") + (place-cell-image MTC x y board-image) + board-image))) + +;; Sprite Board Score -> Score +;; increases by 1 the score if pac-man is now in a cell containing a dot +(define (tick-score new-pm last-board score) + (local [(define x (sprite-x new-pm)) + (define y (sprite-y new-pm))] + (cond [(string=? (board-ref last-board x y) "dot") + (add1 score)] + [else score]))) + + +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;; on-key handler: + + +;; GameState KeyEvent -> GameState +;; updates pac-man's direction based on key +(define (key-handler gs key) + (make-gs (new-dir-pm (gs-pm gs) key) + (gs-board gs) + (gs-board-image gs) + (gs-score gs))) + +;; Sprite KeyEvent -> Sprite +;; produces pac-man facing in a new direction based on key +(define (new-dir-pm pm key) + (cond [(key=? "up" key) (make-sprite (sprite-x pm) (sprite-y pm) "U")] + [(key=? "down" key) (make-sprite (sprite-x pm) (sprite-y pm) "D")] + [(key=? "left" key) (make-sprite (sprite-x pm) (sprite-y pm) "L")] + [(key=? "right" key) (make-sprite (sprite-x pm) (sprite-y pm) "R")] + [else pm])) + + +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;; on-tilt handler: + + +;; ;; GameState Number Number Number -> GameState +;; ;; change pac-man's direction based on tilt +;; (define (tilt-handler gs yaw pitch roll) +;; (make-gs (tilt-pm (gs-pm gs) pitch roll) +;; (gs-board gs) +;; (gs-board-image gs) +;; (gs-score gs))) + +;; ;; Sprite Number Number -> Sprite +;; ;; changes pac-man's Direction based on pitch and roll +;; (define (tilt-pm pm pitch roll) +;; (make-sprite (sprite-x pm) +;; (sprite-y pm) +;; (tilt->dir (sprite-dir pm) pitch roll))) + +;; ;; Direction Number Number -> Direction +;; ;; changes Direction if there is a prominant tilt, otherwise produces old dir +;; (define (tilt->dir dir pitch roll) +;; (cond [(> (abs pitch) (abs roll)) +;; (if (positive? pitch) +;; "U" +;; "D")] +;; [(> (abs roll) (abs pitch)) +;; (if (positive? roll) +;; "R" +;; "L")] +;; [else dir])) + +;; (define (key-handler gs a-key) +;; (make-gs (key-pm pm a-key) +;; (gs-board gs) +;; (gs-board-image gs) +;; (gs-source gs))) + +;; (define (key-pm pm a-key) +;; (make-sprite (sprite-x pm) +;; (sprite-y pm) +;; (cond +;; [(key=? a-key "left") +;; "L"] +;; [(key=? a-key "right") +;; "R"] +;; [(key=? a-key "up") +;; "U"] +;; [(key=? a-key "down") +;; "D"] +;; [else +;; (sprite-dir pm)]))) + + + + + +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;; stop-when handler: + + +;; GameState -> Boolean +;; determines if pac-man has eaten all the dots +(define (game-over? gs) + (empty-board? (gs-board gs))) + +;; Board -> Boolean +;; determines if the board is empty +(define (empty-board? bd) + (foldr-board (lambda (x y cv b) + (and b (not (string=? cv "dot")))) + true + bd)) + + +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;; to-draw handler: + + +;; GameState -> Image +;; draws the game +(define (render gs) + (render-pm (gs-pm gs) + (render-score (gs-score gs) + (gs-board-image gs)))) + +;; Board -> Image +;; draws the board +(define (render-board bd) + (foldr-board (lambda (x y cv b) + (place-cell-image (cell-image cv) x y b)) + MTB + bd)) + +;; Sprite Image -> Image +;; adds pac-man image to img +(define (render-pm pm img) + (place-cell-image PM (sprite-x pm) (sprite-y pm) img)) + +;; Score Image -> Image +;; adds score to img +(define (render-score score img) + (local [(define score-text + (text (string-append "Score: " (number->string score)) SCORE-TEXT-SIZE "black"))] + (place-image score-text + (/ BOARD-WIDTH 2) + BOARD-HEIGHT + img))) + +;; CellValue -> Image +;; draws a board cell +(define (cell-image cv) + (cond [(string=? cv "empty") MTC] + [(string=? cv "dot") DTC] + [(string=? cv "wall") WALL])) + + +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;;------------------------------------------------------------------------------------- +;; Operations on Board and other helpers: + + +;; Board Natural Natural -> CellValue +;; looks up the value of a Board cell +(define (board-ref bd x y) + (vector-ref (vector-ref bd y) x)) + + +(define (build-vector n f) + (let ([vec (make-vector n)]) + (let loop ([i 0]) + (cond + [(< i n) + (vector-set! vec i (f i)) + (loop (add1 i))])) + vec)) + + +;; (Natural Natural CellValue -> CellValue) Board -> Board +;; the analogue of map for boards, the function is called for +;; each position in the board to produce a cell value for that +;; position in a new resulting board +(define (map-board fn bd) + (build-vector (vector-length bd) + (lambda (y) + (build-vector (vector-length (vector-ref bd y)) + (lambda (x) + (fn x y (board-ref bd x y))))))) + +;; (Natural Natural CellValue X -> X) X Board -> X +;; the analogue of foldr for boards, the function is called for +;; each position in the board to produce single value +(define (foldr-board fn base bd) + (local [(define nrows (vector-length bd)) + (define ncols (vector-length (vector-ref bd 0))) + + (define (rows y b) + (cond [(= y nrows) b] + [else + (rows (add1 y) + (cols 0 y b))])) + (define (cols x y b) + (cond [(= x ncols) b] + [else + (cols (add1 x) + y + (fn x y (board-ref bd x y) b))]))] + (rows 0 base))) + +;; Image Natural Natural Image -> Image +;; adds cell-img to board-image at x, y board coordinates +(define (place-cell-image cell-img x y board-image) + (place-image cell-img + (+ (* x CELL-SIZE) (/ CELL-SIZE 2)) + (+ (* y CELL-SIZE) (/ CELL-SIZE 2)) + board-image)) + + + + + +;; -> GameState +;; runs the game +(local [(define INIT-GS (make-gs INIT-PM + INIT-BOARD + (render-board INIT-BOARD) + INIT-SCORE))] + (big-bang INIT-GS + (on-tick tick 0.3) + (to-draw render) + (on-key key-handler) + ;;(on-tilt tilt-handler) + (stop-when game-over?))) diff --git a/racketcon/pacman.xhtml b/racketcon/pacman.xhtml new file mode 100644 index 0000000..041870c --- /dev/null +++ b/racketcon/pacman.xhtml @@ -0,0 +1,56736 @@ + + + + + Example + + + + \ No newline at end of file diff --git a/racketcon/rain.rkt b/racketcon/rain.rkt new file mode 100644 index 0000000..d9ff4ae --- /dev/null +++ b/racketcon/rain.rkt @@ -0,0 +1,128 @@ +#lang planet dyoo/whalesong + +(require (planet dyoo/whalesong/world)) + + +;; Rain falls down the screen. +(define WIDTH 640) +(define HEIGHT 480) + +(define GRAVITY-FACTOR 1) +(define BACKGROUND (empty-scene WIDTH HEIGHT)) + + + +(define-struct posn (x y)) + + +;; A drop particle describes where it is on screen, what color it is, and +;; how large it is. +(define-struct drop (posn velocity color size)) + +;; random-drop-particle: drop +;; Generates a random particle. +(define (random-drop) + (make-drop (make-posn (random WIDTH) 0) + (+ 5 (random 10)) ;; Get it falling at some random velocity + (random-choice (list "gray" "darkgray" + "white" "blue" + "lightblue" + "darkblue")) + (random 10) ;; with some random size + )) + +;; random-choice: (listof X) -> X +;; Picks a random element of elts. +(define (random-choice elts) + (list-ref elts (random (length elts)))) + + + +;; The world consists of all of the drops in the sky. +(define-struct world (sky ;; listof drop + )) + + + +(define (my-filter f l) + (cond + [(null? l) + '()] + [(f (car l)) + (cons (car l) + (my-filter f (cdr l)))] + [else + (my-filter f (cdr l))])) + + +;; tick: world -> world +(define (tick w) + (make-world + (my-filter not-on-floor? + (map drop-descend (cons (random-drop) + (cons (random-drop) + (world-sky w))))))) + + +;; drop-descend: drop -> drop +;; Makes the drops descend. +(define (drop-descend a-drop) + (cond + [(> (posn-y (drop-posn a-drop)) HEIGHT) + a-drop] + [else + (make-drop (posn-descend (drop-posn a-drop) (drop-velocity a-drop)) + (+ GRAVITY-FACTOR (drop-velocity a-drop)) + (drop-color a-drop) + (drop-size a-drop))])) + + +;; posn-descend: posn number -> posn +(define (posn-descend a-posn n) + (make-posn (posn-x a-posn) + (+ n (posn-y a-posn)))) + + +;; on-floor?: drop -> boolean +;; Produces true if the drop has fallen to the floor. +(define (on-floor? a-drop) + (> (posn-y (drop-posn a-drop)) + HEIGHT)) + +(define (not-on-floor? a-drop) (not (on-floor? a-drop))) + +;; make-drop-image: color number -> drop +;; Creates an image of the drop particle. +(define (make-drop-image color size) + (circle size "solid" color)) + + +;; place-drop: drop scene -> scene +(define (place-drop a-drop a-scene) + (place-image (make-drop-image (drop-color a-drop) + (drop-size a-drop)) + (posn-x (drop-posn a-drop)) + (posn-y (drop-posn a-drop)) + a-scene)) + + + +(define (my-foldl f acc lst) + (cond + [(null? lst) + acc] + [else + (my-foldl f + (f (car lst) acc) + (cdr lst))])) + + +;; draw: world -> scene +(define (draw w) + (my-foldl place-drop BACKGROUND (world-sky w))) + + + +(big-bang (make-world '()) + (to-draw draw) + (on-tick tick)) \ No newline at end of file diff --git a/racketcon/rain.xhtml b/racketcon/rain.xhtml new file mode 100644 index 0000000..3bff218 --- /dev/null +++ b/racketcon/rain.xhtml @@ -0,0 +1,43033 @@ + + + + + Example + + + + \ No newline at end of file diff --git a/racketcon/talk.rkt b/racketcon/talk.rkt new file mode 100644 index 0000000..434524c --- /dev/null +++ b/racketcon/talk.rkt @@ -0,0 +1,71 @@ +#lang planet dyoo/whalesong + +(require (planet dyoo/whalesong/js)) +(require (planet dyoo/whalesong/world)) + +;; A slide is either a simple string or an image. + + +(define slides + (list "Whalesong: a Racket to JavaScript Compiler" + "Why Whalesong?" + "World programs on the web" + "Reusing Racket..." + "Hello world!" + "What's missing?" + "http://hashcollision.org/whalesong")) + + + + +(define (WIDTH) + (viewport-width)) + +(define (HEIGHT) + (viewport-height)) + +(define (BACKGROUND) + (empty-scene (WIDTH) (HEIGHT))) + + +(define (key w a-key) + (cond + [(key=? a-key "left") + (my-max (sub1 w) 0)] + [(key=? a-key "right") + (my-min (sub1 w) (length slides))] + [else w])) + + +(define (draw w) + (let ([a-slide (list-ref slides w)] + [bg (BACKGROUND)]) + (cond + [(string? a-slide) + (place-image (text a-slide 300 "black") + (quotient (image-width bg) 2) + (quotient (image-height bg) 2) + bg)] + + [(image? a-slide) + (place-image a-slide + (quotient (image-width bg) 2) + (quotient (image-height bg) 2) + bg)]))) + + +(define (my-max x y) + (if (> x y) + x + y)) + +(define (my-min x y) + (if (< x y) + x + y)) + + + +(big-bang 0 + (on-key key) + (on-draw draw)) \ No newline at end of file From f9a710c398b0c2c93744e06bcabb8612d9dfa803 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Fri, 22 Jul 2011 23:53:25 -0400 Subject: [PATCH 2/7] crazy idea to do the presentation as a world program --- racketcon/talk.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racketcon/talk.rkt b/racketcon/talk.rkt index 434524c..25ffe11 100644 --- a/racketcon/talk.rkt +++ b/racketcon/talk.rkt @@ -68,4 +68,4 @@ (big-bang 0 (on-key key) - (on-draw draw)) \ No newline at end of file + (to-draw draw)) \ No newline at end of file From b4f498131a73cbdce3b570644dee3db16c161543 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sat, 23 Jul 2011 00:14:52 -0400 Subject: [PATCH 3/7] working on the slide material --- image/private/js-impl.js | 9 ++++++++- racketcon/plt-logo.png | Bin 0 -> 6717 bytes racketcon/talk.rkt | 14 +++++++++++--- 3 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 racketcon/plt-logo.png diff --git a/image/private/js-impl.js b/image/private/js-impl.js index a714a88..ff82e9a 100644 --- a/image/private/js-impl.js +++ b/image/private/js-impl.js @@ -79,6 +79,12 @@ var checkReal = plt.baselib.check.checkReal; var checkBoolean = plt.baselib.check.checkBoolean; var checkNatural = plt.baselib.check.checkNatural; + +var checkPositiveInteger = plt.baselib.check.makeCheckArgumentType( + function(x) { return plt.baselib.numbers.isInteger(x) && + plt.baselib.numbers.greaterThan(x, 0);}, + "positive integer"); + var checkNonNegativeReal = plt.baselib.check.checkNonNegativeReal; @@ -236,7 +242,8 @@ EXPORTS['text'] = 3, function(MACHINE) { var aString = checkString(MACHINE,'text', 0); - var aSize = checkByte(MACHINE, 'text', 1); + // Unlike 2htdp, we'll allow this to be a positive integer + var aSize = checkPositiveInteger(MACHINE, 'text', 1); var aColor = checkColor(MACHINE, 'text', 2); return makeTextImage(aString.toString(), jsnums.toFixnum(aSize), diff --git a/racketcon/plt-logo.png b/racketcon/plt-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..4e53f004449d1ff353cc84d4d795396ff4833acc GIT binary patch literal 6717 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 Date: Sat, 23 Jul 2011 00:33:21 -0400 Subject: [PATCH 4/7] continuing to polish --- racketcon/Makefile | 5 +++ racketcon/fact.html | 32 +++++++++++++++++ racketcon/fact.rkt | 11 ++++++ racketcon/racket-days-abstract.txt | 58 ++++++++++++++++++++++++++++++ racketcon/talk.rkt | 18 +++++++--- 5 files changed, 119 insertions(+), 5 deletions(-) create mode 100644 racketcon/Makefile create mode 100644 racketcon/fact.html create mode 100644 racketcon/fact.rkt create mode 100644 racketcon/racket-days-abstract.txt diff --git a/racketcon/Makefile b/racketcon/Makefile new file mode 100644 index 0000000..eb9277d --- /dev/null +++ b/racketcon/Makefile @@ -0,0 +1,5 @@ +#!/bin/sh + +all: + ../whalesong get-javascript --verbose fact.rkt > fact.js + ../whalesong get-runtime --verbose > runtime.js diff --git a/racketcon/fact.html b/racketcon/fact.html new file mode 100644 index 0000000..9e9559f --- /dev/null +++ b/racketcon/fact.html @@ -0,0 +1,32 @@ + + + + + + + + + + +The factorial of 10000 is being computed. + + diff --git a/racketcon/fact.rkt b/racketcon/fact.rkt new file mode 100644 index 0000000..daa6c20 --- /dev/null +++ b/racketcon/fact.rkt @@ -0,0 +1,11 @@ +#lang planet dyoo/whalesong +(provide fact) +(define (fact x) + (cond + [(= x 0) + 1] + [else + (* x (fact (sub1 x)))])) + + +;;(printf "test: ~s\n" (fact 4)) \ No newline at end of file diff --git a/racketcon/racket-days-abstract.txt b/racketcon/racket-days-abstract.txt new file mode 100644 index 0000000..b554f3e --- /dev/null +++ b/racketcon/racket-days-abstract.txt @@ -0,0 +1,58 @@ +What's Whalesong? It's a Racket to JavaScript compiler. Whalesong +will be used to support World programming for the web. It will be the +evaluator for the upcoming versions of Moby Scheme, as well as +WeScheme. + + +We can support simple animations, as you'd expect: + +(Show a world program: the falling rain drops program.) + + +We can do programs that have interactivity, such as: + +(Show another world program: pacman.) + + +A core idea behind Whalesong is to reuse Racket's infrastructure as +much as possible. I'm not a compiler person, so I cheat, by +piggibacking on Matthew's work. Whalesong reuses the bytecode +compiler, and translates the bytecode to JavaScript. + +I really am reusing the linguistic features of Racket. For example, +let's look at the less-than-impressive program output below. + +(Show the hello world program) + + +This is trivial, right? Let's look at the source code. + +(Reveal that the program was written in BF) + + +Yes, this is unholy, but it works. We really are using Racket's +underlying language features to handle reading, macro expansion, and +optimization. + + + +Because we're on the web, we may even want to use functions that we've +written in Racket as a part of regular web pages. Whalesong lets us +do this. + +(Show the factorial example, and how it can be used by external +JavaScript on a web page.) + + + +There's quite a bit that's missing: we don't yet have all of the +primitives necessary to compile racket/base, so all Whalesong programs +currently have to be in a language that ultimately bottoms to (planet +dyoo/whalesong/lang/base). + +I'm going to get a release out in the following month, and the new +versions of Moby Scheme for Smartphones, as well as the WeScheme +environment, will be using the underlying evaluator of Whalesong. + + +If you're interested, please talk to me during the break. Thanks! diff --git a/racketcon/talk.rkt b/racketcon/talk.rkt index f951194..2192eb3 100644 --- a/racketcon/talk.rkt +++ b/racketcon/talk.rkt @@ -15,11 +15,15 @@ (above (text "Whalesong:" 100 "black") (text "a Racket to JavaScript Compiler" 80 "black") - (image-url "file:///home/dyoo/work/whalesong/racketcon/plt-logo.png")) + (scale 2 (image-url "file:///home/dyoo/work/whalesong/racketcon/plt-logo.png")) + (square 20 "solid" "white") + (text "Danny Yoo (dyoo@hashcollision.org)" 50 "darkblue")) "Why Whalesong?" "World programs on the web" - "Reusing Racket..." - "Hello world!" + (above (text "Reusing Racket's compiler..." font-size "black") + (square 20 "solid" "white") + (text "Hello world?" (floor (* font-size 2/3)) "black")) + "Web programs can use Racket" "What's missing?" "http://hashcollision.org/whalesong")) @@ -60,7 +64,10 @@ (quotient (image-width bg) 2) (quotient (image-height bg) 2) bg)]))) - + +(define (tick w) + w) + (define (my-max x y) (if (> x y) @@ -76,4 +83,5 @@ (big-bang 0 (on-key key) - (to-draw draw)) \ No newline at end of file + (on-tick tick) + (to-draw draw)) From 57466a81ac7ec8cb450ac1c8568787f98188945f Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sat, 23 Jul 2011 00:38:06 -0400 Subject: [PATCH 5/7] minor spacing fixes --- racketcon/Makefile | 3 +-- racketcon/talk.rkt | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/racketcon/Makefile b/racketcon/Makefile index eb9277d..79ab0c9 100644 --- a/racketcon/Makefile +++ b/racketcon/Makefile @@ -1,5 +1,4 @@ -#!/bin/sh - all: + ../whalesong build talk.rkt ../whalesong get-javascript --verbose fact.rkt > fact.js ../whalesong get-runtime --verbose > runtime.js diff --git a/racketcon/talk.rkt b/racketcon/talk.rkt index 2192eb3..d685e7a 100644 --- a/racketcon/talk.rkt +++ b/racketcon/talk.rkt @@ -15,6 +15,7 @@ (above (text "Whalesong:" 100 "black") (text "a Racket to JavaScript Compiler" 80 "black") + (square 20 "solid" "white") (scale 2 (image-url "file:///home/dyoo/work/whalesong/racketcon/plt-logo.png")) (square 20 "solid" "white") (text "Danny Yoo (dyoo@hashcollision.org)" 50 "darkblue")) From 52eaf29993a2f56586bc903226e174a35f6ae60a Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sat, 23 Jul 2011 00:57:58 -0400 Subject: [PATCH 6/7] just in case, adding scaling factor to make it easy to shrink --- racketcon/bootstrap.gif | Bin 0 -> 7406 bytes racketcon/fact.rkt | 3 --- racketcon/hello.xhtml | 4 ++-- racketcon/pacman.xhtml | 4 ++-- racketcon/rain.xhtml | 4 ++-- racketcon/talk.rkt | 15 ++++++++++----- 6 files changed, 16 insertions(+), 14 deletions(-) create mode 100644 racketcon/bootstrap.gif diff --git a/racketcon/bootstrap.gif b/racketcon/bootstrap.gif new file mode 100644 index 0000000000000000000000000000000000000000..fc5fc93b31ced2c54c8aa9e6f4cc64bd333399a7 GIT binary patch literal 7406 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 literal 0 HcmV?d00001 diff --git a/racketcon/fact.rkt b/racketcon/fact.rkt index daa6c20..fe8ef50 100644 --- a/racketcon/fact.rkt +++ b/racketcon/fact.rkt @@ -6,6 +6,3 @@ 1] [else (* x (fact (sub1 x)))])) - - -;;(printf "test: ~s\n" (fact 4)) \ No newline at end of file diff --git a/racketcon/hello.xhtml b/racketcon/hello.xhtml index a1146bc..2f8027b 100644 --- a/racketcon/hello.xhtml +++ b/racketcon/hello.xhtml @@ -2,7 +2,7 @@ - Example + Hello - \ No newline at end of file + diff --git a/racketcon/pacman.xhtml b/racketcon/pacman.xhtml index 041870c..4310bb9 100644 --- a/racketcon/pacman.xhtml +++ b/racketcon/pacman.xhtml @@ -2,7 +2,7 @@ - Example + Pacman - \ No newline at end of file + diff --git a/racketcon/rain.xhtml b/racketcon/rain.xhtml index 3bff218..bb0a36d 100644 --- a/racketcon/rain.xhtml +++ b/racketcon/rain.xhtml @@ -2,7 +2,7 @@ - Example + Rain - \ No newline at end of file + diff --git a/racketcon/talk.rkt b/racketcon/talk.rkt index d685e7a..020470a 100644 --- a/racketcon/talk.rkt +++ b/racketcon/talk.rkt @@ -3,6 +3,8 @@ (require (planet dyoo/whalesong/js)) (require (planet dyoo/whalesong/world)) +(define scaling-factor .75) + ;; A slide is either a simple string or an image. (define font-size 50) @@ -19,14 +21,16 @@ (scale 2 (image-url "file:///home/dyoo/work/whalesong/racketcon/plt-logo.png")) (square 20 "solid" "white") (text "Danny Yoo (dyoo@hashcollision.org)" 50 "darkblue")) - "Why Whalesong?" + (above (text "Why Whalesong?" font-size "black") + (square 20 "solid" "white") + (scale 2 (image-url "file:///home/dyoo/work/whalesong/racketcon/bootstrap.gif"))) "World programs on the web" (above (text "Reusing Racket's compiler..." font-size "black") (square 20 "solid" "white") (text "Hello world?" (floor (* font-size 2/3)) "black")) - "Web programs can use Racket" - "What's missing?" - "http://hashcollision.org/whalesong")) + "Web programs can use Racket too!" + "What's next?" + (text "http://hashcollision.org/whalesong" 80 "black"))) @@ -51,6 +55,7 @@ (define (draw w) + (scale scaling-factor (let ([a-slide (list-ref slides w)] [bg (BACKGROUND)]) (cond @@ -64,7 +69,7 @@ (place-image a-slide (quotient (image-width bg) 2) (quotient (image-height bg) 2) - bg)]))) + bg)])))) (define (tick w) w) From f308024718d890a9373c9723031717912e6bad0d Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sat, 23 Jul 2011 01:08:44 -0400 Subject: [PATCH 7/7] adding a toy for the very end --- racketcon/talk.rkt | 70 +++++++++++++++++++++++++++++++++------------- 1 file changed, 50 insertions(+), 20 deletions(-) diff --git a/racketcon/talk.rkt b/racketcon/talk.rkt index 020470a..3ec8a1d 100644 --- a/racketcon/talk.rkt +++ b/racketcon/talk.rkt @@ -3,14 +3,14 @@ (require (planet dyoo/whalesong/js)) (require (planet dyoo/whalesong/world)) -(define scaling-factor .75) + +(define-struct world (index scaling rotate)) ;; A slide is either a simple string or an image. (define font-size 50) -(define-struct label (id slide)) (define slides (list @@ -48,28 +48,58 @@ (define (key w a-key) (cond [(key=? a-key "left") - (my-max (sub1 w) 0)] - [(key=? a-key "right") - (my-min (add1 w) (sub1 (length slides)))] + (make-world (my-max (sub1 (world-index w)) 0) + (world-scaling w) + (world-rotate w))] + [(or (key=? a-key "right") (key=? a-key " ") (key=? a-key "enter")) + (make-world (my-min (add1 (world-index w)) + (sub1 (length slides))) + (world-scaling w) + (world-rotate w))] + + [(key=? a-key "up") + (make-world (world-index w) + (+ (world-scaling w) .1) + (world-rotate w))] + + [(key=? a-key "down") + (make-world (world-index w) + (- (world-scaling w) .1) + (world-rotate w))] + + [(key=? a-key "r") + (make-world 0 1 0)] + + [(key=? a-key "q") + (make-world (world-index w) + (world-scaling w) + (modulo (- (world-rotate w) 1) 360))] + + [(key=? a-key "w") + (make-world (world-index w) + (world-scaling w) + (modulo (+ (world-rotate w) 1) 360))] + [else w])) (define (draw w) - (scale scaling-factor - (let ([a-slide (list-ref slides w)] - [bg (BACKGROUND)]) - (cond - [(string? a-slide) - (place-image (text a-slide font-size "black") - (quotient (image-width bg) 2) - (quotient (image-height bg) 2) - bg)] + (rotate (world-rotate w) + (scale (world-scaling w) + (let ([a-slide (list-ref slides (world-index w))] + [bg (BACKGROUND)]) + (cond + [(string? a-slide) + (place-image (text a-slide font-size "black") + (quotient (image-width bg) 2) + (quotient (image-height bg) 2) + bg)] - [(image? a-slide) - (place-image a-slide - (quotient (image-width bg) 2) - (quotient (image-height bg) 2) - bg)])))) + [(image? a-slide) + (place-image a-slide + (quotient (image-width bg) 2) + (quotient (image-height bg) 2) + bg)]))))) (define (tick w) w) @@ -87,7 +117,7 @@ -(big-bang 0 +(big-bang (make-world 0 1 0) (on-key key) (on-tick tick) (to-draw draw))