changing the rain example to take the whole page
This commit is contained in:
parent
bda73966c8
commit
6f1d50e677
|
@ -1,14 +1,16 @@
|
||||||
#lang planet dyoo/whalesong
|
#lang planet dyoo/whalesong
|
||||||
|
|
||||||
(require (planet dyoo/whalesong/world))
|
(require (planet dyoo/whalesong/world)
|
||||||
|
(planet dyoo/whalesong/js))
|
||||||
|
|
||||||
|
;; Occupy the whole screen.
|
||||||
|
(void (call-method body "css" "margin" 0))
|
||||||
|
(void (call-method body "css" "padding" 0))
|
||||||
|
(void (call-method body "css" "overflow" "hidden"))
|
||||||
|
|
||||||
|
|
||||||
;; Rain falls down the screen.
|
;; Rain falls down the screen.
|
||||||
(define WIDTH 640)
|
|
||||||
(define HEIGHT 480)
|
|
||||||
|
|
||||||
(define GRAVITY-FACTOR 1)
|
(define GRAVITY-FACTOR 1)
|
||||||
(define BACKGROUND (empty-scene WIDTH HEIGHT))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +24,7 @@
|
||||||
;; random-drop-particle: drop
|
;; random-drop-particle: drop
|
||||||
;; Generates a random particle.
|
;; Generates a random particle.
|
||||||
(define (random-drop)
|
(define (random-drop)
|
||||||
(make-drop (make-posn (random WIDTH) 0)
|
(make-drop (make-posn (random (viewport-width)) 0)
|
||||||
(+ 5 (random 10)) ;; Get it falling at some random velocity
|
(+ 5 (random 10)) ;; Get it falling at some random velocity
|
||||||
(random-choice (list "gray" "darkgray"
|
(random-choice (list "gray" "darkgray"
|
||||||
"white" "blue"
|
"white" "blue"
|
||||||
|
@ -68,7 +70,7 @@
|
||||||
;; Makes the drops descend.
|
;; Makes the drops descend.
|
||||||
(define (drop-descend a-drop)
|
(define (drop-descend a-drop)
|
||||||
(cond
|
(cond
|
||||||
[(> (posn-y (drop-posn a-drop)) HEIGHT)
|
[(> (posn-y (drop-posn a-drop)) (viewport-height))
|
||||||
a-drop]
|
a-drop]
|
||||||
[else
|
[else
|
||||||
(make-drop (posn-descend (drop-posn a-drop) (drop-velocity a-drop))
|
(make-drop (posn-descend (drop-posn a-drop) (drop-velocity a-drop))
|
||||||
|
@ -87,7 +89,7 @@
|
||||||
;; Produces true if the drop has fallen to the floor.
|
;; Produces true if the drop has fallen to the floor.
|
||||||
(define (on-floor? a-drop)
|
(define (on-floor? a-drop)
|
||||||
(> (posn-y (drop-posn a-drop))
|
(> (posn-y (drop-posn a-drop))
|
||||||
HEIGHT))
|
(viewport-height)))
|
||||||
|
|
||||||
(define (not-on-floor? a-drop) (not (on-floor? a-drop)))
|
(define (not-on-floor? a-drop) (not (on-floor? a-drop)))
|
||||||
|
|
||||||
|
@ -119,7 +121,7 @@
|
||||||
|
|
||||||
;; draw: world -> scene
|
;; draw: world -> scene
|
||||||
(define (draw w)
|
(define (draw w)
|
||||||
(my-foldl place-drop BACKGROUND (world-sky w)))
|
(my-foldl place-drop (empty-scene (viewport-width) (viewport-height)) (world-sky w)))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -119,9 +119,10 @@ var makeCanvas = function(width, height) {
|
||||||
canvas.width = width;
|
canvas.width = width;
|
||||||
canvas.height = height;
|
canvas.height = height;
|
||||||
|
|
||||||
canvas.style.width = canvas.width + "px";
|
$(canvas).css('width', canvas.width + "px");
|
||||||
canvas.style.height = canvas.height + "px";
|
$(canvas).css('height', canvas.height + "px");
|
||||||
|
$(canvas).css('padding', '0px');
|
||||||
|
|
||||||
// KLUDGE: IE compatibility uses /js/excanvas.js, and dynamic
|
// KLUDGE: IE compatibility uses /js/excanvas.js, and dynamic
|
||||||
// elements must be marked this way.
|
// elements must be marked this way.
|
||||||
if (window && typeof window.G_vmlCanvasManager != 'undefined') {
|
if (window && typeof window.G_vmlCanvasManager != 'undefined') {
|
||||||
|
|
|
@ -27,9 +27,9 @@ var bigBang = function(MACHINE, initW, handlers) {
|
||||||
|
|
||||||
var oldArgcount = MACHINE.argcount;
|
var oldArgcount = MACHINE.argcount;
|
||||||
|
|
||||||
var outerToplevelNode = $('<span/>').get(0);
|
var outerToplevelNode = $('<span/>').css('padding', '0px').get(0);
|
||||||
MACHINE.params.currentOutputPort.writeDomNode(MACHINE, outerToplevelNode);
|
MACHINE.params.currentOutputPort.writeDomNode(MACHINE, outerToplevelNode);
|
||||||
var toplevelNode = $('<span/>').appendTo(outerToplevelNode).get(0);
|
var toplevelNode = $('<span/>').css('padding', '0px').appendTo(outerToplevelNode).get(0);
|
||||||
|
|
||||||
var configs = [];
|
var configs = [];
|
||||||
var isOutputConfigSeen = false;
|
var isOutputConfigSeen = false;
|
||||||
|
@ -298,6 +298,7 @@ ToDraw.prototype.toRawHandler = function(MACHINE, toplevelNode) {
|
||||||
var cssFunction = function(w, k) {
|
var cssFunction = function(w, k) {
|
||||||
if (reusableCanvas) {
|
if (reusableCanvas) {
|
||||||
k([[reusableCanvas,
|
k([[reusableCanvas,
|
||||||
|
["padding", "0px"],
|
||||||
["width", reusableCanvas.width + "px"],
|
["width", reusableCanvas.width + "px"],
|
||||||
["height", reusableCanvas.height + "px"]]]);
|
["height", reusableCanvas.height + "px"]]]);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user