aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/SkV8Example/snow.js
blob: f3527dbd73fbb0cb89042082bb47e01e668f3b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
var IS_SKV8 = typeof document == "undefined";
var HAS_PATH = typeof Path != "undefined";

function circlePath(r) {
  if (HAS_PATH) {
    var p = new Path();
    p.arc(0, 0, r, 0, 2*Math.PI);
    p.closePath();
    return p;
  } else {
    return null;
  }
}

var onDraw = function() {
  var W = 500;
  var H = 500;
  var NumParticles = 100;

  var angle = 0;
  var ticks = 0;
  var particles =[];

  for (var i = 0; i < NumParticles; i++) {
    particles[i] = {
      x:    Math.floor(Math.random()*W),
      y:    Math.floor(Math.random()*H),
      r:    Math.floor(Math.random()*7+1),
      path: circlePath(Math.random()*7+1),
    }
  }

  function draw(ctx) {
    ctx.fillStyle = "#ADD8E6";
    ctx.fillRect(0, 0, W-1, H-1);
    ctx.fillStyle = "#FFFFFF";

    angle += 0.0039;
    for (var i = 0; i < particles.length; i++) {
      var p = particles[i];
      p.x += Math.floor(Math.sin(angle)*5.0);
      p.y += 0.6*p.r;
      if (p.x > W) {
        p.x-=W;
      }
      if (p.x < 0) {
        p.x += W;
      }
      if(p.y>(H+1)){
        p.y = 0;
      }
      if (HAS_PATH) {
        ctx.save();
        ctx.translate(p.x, p.y);
        ctx.fill(p.path);
        ctx.restore();
      } else {
        ctx.beginPath();
        ctx.moveTo(p.x, p.y);
        ctx.arc(p.x, p.y, p.r, 0, 2*Math.PI, true);
        ctx.closePath();
        ctx.fill();
      }
    };

    ticks++;
    if (IS_SKV8) {
      inval();
    }
  }

  function fps() {
    console.log(ticks);
    ticks = 0;
    setTimeout(fps, 1000);
  }

  setTimeout(fps, 1000);

  return draw;
}();

if (!IS_SKV8) {
  window.onload = function(){
    var canvas = document.getElementById("snow");
    var ctx = canvas.getContext("2d");
    function drawCallback() {
      onDraw(ctx);
      setTimeout(drawCallback, 1);
    }
    setTimeout(drawCallback, 1);
  }
}

console.log("HAS_PATH: " + HAS_PATH);