-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscript.js
41 lines (36 loc) · 1.17 KB
/
script.js
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
import Game from "./game.js";
document.addEventListener("DOMContentLoaded", function() {
var PIXEL_RATIO = (function () {
var ctx = document.createElement("canvas").getContext("2d"),
dpr = window.devicePixelRatio || 1,
bsr = ctx.webkitBackingStorePixelRatio ||
ctx.mozBackingStorePixelRatio ||
ctx.msBackingStorePixelRatio ||
ctx.oBackingStorePixelRatio ||
ctx.backingStorePixelRatio || 1;
return dpr / bsr;
})();
var root = document.getElementById('root');
var game = new Game(root, PIXEL_RATIO);
function onWindowResize() {
game.onResize();
}
window.onresize = onWindowResize;
game.canvas.addEventListener("mousemove",onMouseMove,false);
function onMouseMove(event) {
var mousePosition = {
x: event.pageX - game.rect.left,
y: event.pageY - game.rect.top
}
game.onMouseMove(mousePosition);
}
game.canvas.addEventListener("mousedown",onMouseClick,false);
function onMouseClick(event) {
var clickPosition = {
x: event.pageX - game.rect.left,
y: event.pageY - game.rect.top
}
game.onMouseClick(clickPosition);
}
game.start();
});