2014-05-17 23:26:31 +00:00
|
|
|
// HackExeter
|
2014-05-17 16:41:54 +00:00
|
|
|
keypress.register_combo({
|
2014-05-18 18:15:13 +00:00
|
|
|
keys: "left",
|
|
|
|
on_keyup: function() {
|
|
|
|
MainClock.rotate(1)
|
|
|
|
}
|
2014-05-17 16:41:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
keypress.register_combo({
|
2014-05-18 18:15:13 +00:00
|
|
|
keys: "right",
|
|
|
|
on_keyup: function() {
|
|
|
|
MainClock.rotate(-1)
|
|
|
|
}
|
2014-05-17 16:41:54 +00:00
|
|
|
});
|
2014-05-17 22:34:02 +00:00
|
|
|
|
|
|
|
keypress.register_combo({
|
2014-05-18 18:15:13 +00:00
|
|
|
keys: "enter",
|
|
|
|
on_keyup: function() {
|
|
|
|
if (gameState != 1) {
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
}
|
2014-05-17 22:34:02 +00:00
|
|
|
});
|
2014-05-18 18:15:13 +00:00
|
|
|
|
2014-05-18 15:43:49 +00:00
|
|
|
var tapLeft = Hammer(document.getElementById("leftTap")).on("tap", function(event) {
|
2014-05-18 18:15:13 +00:00
|
|
|
if (gameState != 1) {
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
MainClock.rotate(1)
|
2014-05-17 23:21:19 +00:00
|
|
|
|
2014-05-18 15:43:49 +00:00
|
|
|
});
|
2014-05-18 18:15:13 +00:00
|
|
|
|
|
|
|
var tapRight = Hammer(document.getElementById("rightTap")).on("tap", function(event) {
|
|
|
|
if (gameState != 1) {
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
MainClock.rotate(-1)
|
2014-05-18 15:43:49 +00:00
|
|
|
});
|
2014-05-18 18:15:13 +00:00
|
|
|
|
2014-05-17 23:21:19 +00:00
|
|
|
keypress.register_combo({
|
2014-05-18 18:15:13 +00:00
|
|
|
keys: "space",
|
|
|
|
on_keyup: function() {
|
|
|
|
iter = 1;
|
|
|
|
scoreAdditionCoeff = 1;
|
|
|
|
},
|
|
|
|
on_keydown: function() {
|
|
|
|
iter = 2;
|
|
|
|
scoreAdditionCoeff = 2;
|
|
|
|
}
|
2014-05-17 23:21:19 +00:00
|
|
|
});
|