increase input polling

pull/1/head
PolicyChanges1@gmail.com 2021-02-17 19:58:50 -05:00
parent 479a115d0e
commit 5e64e83649
5 changed files with 207 additions and 84 deletions

137
dist/tetrion.js vendored
View File

@ -496,8 +496,8 @@ var UserInputs = {
// Direction Pad // Direction Pad
gamepadDPadDown(finds) { gamepadDPadDown(finds) {
var DAS = 10.0; var DAS = 30.0;
var ARR = 5.0; var ARR = 20.0;
var isContained = this.gpButtons.includes(finds); var isContained = this.gpButtons.includes(finds);
var isPrevContained = this.prevGpButtons.includes(finds); var isPrevContained = this.prevGpButtons.includes(finds);
//console.log("but: " + this.gpButtons + " prev but:" + this.prevGpButtons); //console.log("but: " + this.gpButtons + " prev but:" + this.prevGpButtons);
@ -539,14 +539,16 @@ var UserInputs = {
// keyboard keys z,x,space // keyboard keys z,x,space
processKeyDown(key) processKeyDown(key)
{ {
var deciDAS = 10; var deciDAS = 50.0;
var deciARR = 15 var deciARR = 50.0;
if(this.prevKeyboardKeys[key] != this.keyboardKeys[key]) { // todo: fix this mess
if(this.prevKeyboardKeys[key] != this.keyboardKeys[key] && this.isKeyBoardKeyDown == true) {
this.isKeyboardKeyDown = false; this.isKeyboardKeyDown = false;
if(this.keyboardKeys[key] == true) if(this.keyboardKeys[key] == true)
this.inputqueue.push(key); this.inputqueue.push(key);
this.keyboardKeys[key] = false;
} }
var keyboardDASFrames = this.keyboardButtonsDeciframes; var keyboardDASFrames = this.keyboardButtonsDeciframes;
@ -574,8 +576,8 @@ var UserInputs = {
}, },
// Direction arrows // Direction arrows
processKeyboardArrowKeys(key) { processKeyboardArrowKeys(key) {
var DAS = 30.0; var DAS = 50.0;
var ARR = 0.0; var ARR = 20.0;
if(this.prevKeyboardKeys[key] != this.keyboardKeys[key]) { if(this.prevKeyboardKeys[key] != this.keyboardKeys[key]) {
@ -603,10 +605,12 @@ var UserInputs = {
}, },
keyDown(event) { keyDown(event) {
this.keyboardKeys[event.keyCode] = true; this.keyboardKeys[event.keyCode] = true;
this.isKeyBoardKeyDown = true;
}, },
keyUp(event) { keyUp(event) {
this.isKeyDown = false; this.isKeyDown = false;
this.keyboardKeys[event.keyCode] = false; this.keyboardKeys[event.keyCode] = false;
this.isKeyBoardKeyDown = false;
}, },
gamepadButtonClear() { gamepadButtonClear() {
gpButtons = []; gpButtons = [];
@ -820,6 +824,7 @@ Tetris.prototype = {
this.currentTime = this.startTime; this.currentTime = this.startTime;
this.prevTime = this.startTime; this.prevTime = this.startTime;
this.levelTime = this.startTime; this.levelTime = this.startTime;
this.prevInputTime = this.startTime;
this.shapeQueue = []; this.shapeQueue = [];
this.hintQueue = []; this.hintQueue = [];
this.holdQueue = []; this.holdQueue = [];
@ -828,14 +833,15 @@ Tetris.prototype = {
views.setLevel(this.level); views.setLevel(this.level);
views.setScore(this.score); views.setScore(this.score);
views.setGameOver(this.isGameOver); views.setGameOver(this.isGameOver);
//openers.reset();
this._draw(); this._draw();
}, },
//Start game //Start game
start: function() { start: function() {
this.running = true; this.running = true;
window.requestAnimationFrame(utils.proxy(this._refresh, this)); window.requestAnimationFrame(utils.proxy(this._refresh, this));
//window.requestAnimationFrame(utils.proxy(this._refresh, this));}
}, },
//Pause game //Pause game
pause: function() { pause: function() {
@ -908,6 +914,9 @@ Tetris.prototype = {
}, },
/*_processCollisions: function {
},*/
// Draw game data // Draw game data
_draw: function() { _draw: function() {
canvas.drawScene(); canvas.drawScene();
@ -920,56 +929,63 @@ Tetris.prototype = {
let clone = Object.assign(Object.create(Object.getPrototypeOf(this.shape)), this.shape); let clone = Object.assign(Object.create(Object.getPrototypeOf(this.shape)), this.shape);
//todo: put in collision detsction
var bottomY = clone.bottomAt(this.matrix); var bottomY = clone.bottomAt(this.matrix);
//clone.color = "#ffffff"; //clone.color = "#ffffff";
canvas.drawGhostShape(clone, bottomY); canvas.drawGhostShape(clone, bottomY);
} }
canvas.drawMatrix(this.matrix); canvas.drawMatrix(this.matrix);
}, },
// Refresh game canvas // Render Shape
_refresh: function() { _renderShape: function()
if (!this.running) { {
return; this._draw();
} },
this.currentTime = new Date().getTime(); _processInput: async function(deltaTime) {
var deltaTime = this.currentTime - this.prevTime;
var tenthOfFrame = 1.6//1;//1.6; // 1.6ms = 1 fram
var halfFrame = 8.0//5;//8.0;
var halfFramePlus = 10.0;//10.0;
// TODO: put in web worker--limited to 60fps here // TODO: put in web worker--limited to 60fps here
if(deltaTime >= 1) { // needs to be 600hz if(deltaTime >= tenthOfFrame) { // needs to be 600hz // 16 / 10
inputs.incDeciframes(); inputs.incDeciframes();
//console.log(deltaTime / 600.0); //console.log(deltaTime / 600.0);
} }
if(deltaTime >= 1) { if(deltaTime >= tenthOfFrame) {
inputs.updateGamepad(); inputs.updateGamepad();
inputs.processGamepadDPad(); inputs.processGamepadDPad();
inputs.processGamepadInput(); inputs.processGamepadInput();
} }
// drain gamepad queue // drain gamepad queue
if(deltaTime > 5) if(deltaTime > halfFrame) // 8 millisecons
{ {
while((inputs.gamepadQueue != undefined && inputs.gamepadQueue.length >= 1)){ while((inputs.gamepadQueue != undefined && inputs.gamepadQueue.length >= 1)){
var curkey = inputs.gamepadQueue.shift(); var curkey = inputs.gamepadQueue.shift();
if(curkey == "DPad-Left") { if(curkey == "DPad-Left") {
this.shape.goLeft(this.matrix); this.shape.goLeft(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == "DPad-Right") { if(curkey == "DPad-Right") {
this.shape.goRight(this.matrix); this.shape.goRight(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == "A") { if(curkey == "A") {
this.shape.rotate(this.matrix); this.shape.rotate(this.matrix);
this._draw(); this._renderShape();
//this._draw();
} }
if(curkey == "B") { if(curkey == "B") {
this.shape.rotateClockwise(this.matrix);; this.shape.rotateClockwise(this.matrix);
this._draw(); this._renderShape();
//this._draw();
} }
if(curkey == "DPad-Down") { if(curkey == "DPad-Down") {
this.shape.goDown(this.matrix); this.shape.goDown(this.matrix);
this._draw(); this._renderShape();
//this._draw();
} }
if(curkey == "RB") { if(curkey == "RB") {
this.shape.goBottom(this.matrix); this.shape.goBottom(this.matrix);
@ -977,10 +993,12 @@ Tetris.prototype = {
} }
if(curkey == "LB") { if(curkey == "LB") {
this.pushHoldStack(); this.pushHoldStack();
//this._renderShape();
this._update(); this._update();
} }
if(curkey == "DPad-Up") { if(curkey == "DPad-Up") {
this.popHoldStack(); this.popHoldStack();
//this._renderShape();
this._update(); this._update();
} }
if(curkey == "Back") { if(curkey == "Back") {
@ -996,46 +1014,49 @@ Tetris.prototype = {
//inputs.gamepadButtonClear(); //inputs.gamepadButtonClear();
// Do keyboard // Do keyboard
if(deltaTime > 1) // 120hz if(deltaTime > tenthOfFrame) // 120hz
{ {
inputs.processKeys(); inputs.processKeys();
} }
if (deltaTime > 1) { // 60hz if (deltaTime > tenthOfFrame) { // 60hz
inputs.processKeyShift(); inputs.processKeyShift();
// Keyboard inputs // Keyboard inputs
while((inputs.inputqueue != undefined && inputs.inputqueue.length >= 1)){ while((inputs.inputqueue != undefined && inputs.inputqueue.length >= 1)){
var curkey = inputs.inputqueue.shift(); var curkey = inputs.inputqueue.shift();
if(curkey == 37) { if(curkey == 37) {
this.shape.goLeft(this.matrix); this.shape.goLeft(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == 39){ if(curkey == 39){
this.shape.goRight(this.matrix); this.shape.goRight(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == 40) { if(curkey == 40) {
this.shape.goDown(this.matrix); this.shape.goDown(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == 90) { if(curkey == 90) {
this.shape.rotate(this.matrix); this.shape.rotate(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == 88){ if(curkey == 88){
this.shape.rotateClockwise(this.matrix);; this.shape.rotateClockwise(this.matrix);;
this._draw(); this._renderShape();
} }
if(curkey == 32) { if(curkey == 32) {
this.shape.goBottom(this.matrix); this.shape.goBottom(this.matrix);
//this._renderShape();
this._update(); this._update();
} }
if(curkey == 16) { if(curkey == 16) {
this.pushHoldStack(); this.pushHoldStack();
//this._renderShape();
this._update(); this._update();
} }
if(curkey == 17) { if(curkey == 17) {
this.popHoldStack(); this.popHoldStack();
//this._renderShape();
this._update(); this._update();
} }
if(curkey == 81) { if(curkey == 81) {
@ -1055,22 +1076,62 @@ Tetris.prototype = {
} }
if(deltaTime >= 10) if(deltaTime >= halfFramePlus)
inputs.saveKeyboardKeys(); inputs.saveKeyboardKeys();
if(deltaTime >= 1) if(deltaTime >= tenthOfFrame)
inputs.saveButtons(); inputs.saveButtons();
if (deltaTime > this.interval) { },
this._update(); sleep: function(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
},
// Refresh game canvas
_refresh: async function() {
this.prevTime = this.currentTime; if (!this.running) {
this._checkLevel(); return;
} }
this.currentTime = new Date().getTime();
var curInputTime = new Date().getTime();
var prevCounterTime = curInputTime;
var deltaInputTime = 0;
var deltaCounterTime = 0;
// Process input as many times as possible in a frame--60hz hopefully
while(deltaCounterTime <= 16) { // 16.666ms = 1 frame
deltaCounterTime = curInputTime - prevCounterTime;
deltaInputTime = curInputTime - this.prevInputTime;
this._processInput(deltaInputTime);
await this.sleep(1);
curInputTime = new Date().getTime();
}
this.prevInputTime = curInputTime;
var deltaLevelTime = this.currentTime - this.prevTime;
//if(deltaGameTime < 16) this._refresh();
// Render Level
if (deltaLevelTime > this.interval) {
this._update();
this._checkLevel(this.prevTime = this.currentTime);
}
// Draw Frame
if (!this.isGameOver) { if (!this.isGameOver) {
window.requestAnimationFrame(utils.proxy(this._refresh, this)); window.requestAnimationFrame(utils.proxy(this._refresh, this));
} }
}, },
// Update game data // Update game data
_update: function() { _update: function() {

View File

@ -37,14 +37,15 @@
<body> <body>
<!--https://www.shadertoy.com/embed/wttfW2?gui=&t=10&paused=false&muted=false-->
<iframe id="bg" width="640" height="360" frameborder="0" src="https://www.shadertoy.com/embed/wttfW2?gui=&t=10&paused=false&muted=false" allowfullscreen></iframe> <!--<iframe id="bg" width="640" height="360" frameborder="0" src="https://www.shadertoy.com/embed/WldfWX?gui=&t=10&paused=false&muted=false" allowfullscreen></iframe>-->
<!--
<script> <script>
document.getElementById("bg").width = window.innerWidth; document.getElementById("bg").width = window.innerWidth;
document.getElementById("bg").height = window.innerHeight; document.getElementById("bg").height = window.innerHeight;
</script> </script>
-->
<div id="tetris"> <div id="tetris">
<canvas id="scene"></canvas> <canvas id="scene"></canvas>

View File

@ -76,8 +76,8 @@ var UserInputs = {
// Direction Pad // Direction Pad
gamepadDPadDown(finds) { gamepadDPadDown(finds) {
var DAS = 10.0; var DAS = 30.0;
var ARR = 5.0; var ARR = 20.0;
var isContained = this.gpButtons.includes(finds); var isContained = this.gpButtons.includes(finds);
var isPrevContained = this.prevGpButtons.includes(finds); var isPrevContained = this.prevGpButtons.includes(finds);
//console.log("but: " + this.gpButtons + " prev but:" + this.prevGpButtons); //console.log("but: " + this.gpButtons + " prev but:" + this.prevGpButtons);
@ -119,14 +119,16 @@ var UserInputs = {
// keyboard keys z,x,space // keyboard keys z,x,space
processKeyDown(key) processKeyDown(key)
{ {
var deciDAS = 10; var deciDAS = 50.0;
var deciARR = 15 var deciARR = 50.0;
if(this.prevKeyboardKeys[key] != this.keyboardKeys[key]) { // todo: fix this mess
if(this.prevKeyboardKeys[key] != this.keyboardKeys[key] && this.isKeyBoardKeyDown == true) {
this.isKeyboardKeyDown = false; this.isKeyboardKeyDown = false;
if(this.keyboardKeys[key] == true) if(this.keyboardKeys[key] == true)
this.inputqueue.push(key); this.inputqueue.push(key);
this.keyboardKeys[key] = false;
} }
var keyboardDASFrames = this.keyboardButtonsDeciframes; var keyboardDASFrames = this.keyboardButtonsDeciframes;
@ -154,8 +156,8 @@ var UserInputs = {
}, },
// Direction arrows // Direction arrows
processKeyboardArrowKeys(key) { processKeyboardArrowKeys(key) {
var DAS = 30.0; var DAS = 50.0;
var ARR = 0.0; var ARR = 20.0;
if(this.prevKeyboardKeys[key] != this.keyboardKeys[key]) { if(this.prevKeyboardKeys[key] != this.keyboardKeys[key]) {
@ -183,10 +185,12 @@ var UserInputs = {
}, },
keyDown(event) { keyDown(event) {
this.keyboardKeys[event.keyCode] = true; this.keyboardKeys[event.keyCode] = true;
this.isKeyBoardKeyDown = true;
}, },
keyUp(event) { keyUp(event) {
this.isKeyDown = false; this.isKeyDown = false;
this.keyboardKeys[event.keyCode] = false; this.keyboardKeys[event.keyCode] = false;
this.isKeyBoardKeyDown = false;
}, },
gamepadButtonClear() { gamepadButtonClear() {
gpButtons = []; gpButtons = [];

View File

@ -173,6 +173,7 @@ Tetris.prototype = {
this.currentTime = this.startTime; this.currentTime = this.startTime;
this.prevTime = this.startTime; this.prevTime = this.startTime;
this.levelTime = this.startTime; this.levelTime = this.startTime;
this.prevInputTime = this.startTime;
this.shapeQueue = []; this.shapeQueue = [];
this.hintQueue = []; this.hintQueue = [];
this.holdQueue = []; this.holdQueue = [];
@ -181,14 +182,15 @@ Tetris.prototype = {
views.setLevel(this.level); views.setLevel(this.level);
views.setScore(this.score); views.setScore(this.score);
views.setGameOver(this.isGameOver); views.setGameOver(this.isGameOver);
//openers.reset();
this._draw(); this._draw();
}, },
//Start game //Start game
start: function() { start: function() {
this.running = true; this.running = true;
window.requestAnimationFrame(utils.proxy(this._refresh, this)); window.requestAnimationFrame(utils.proxy(this._refresh, this));
//window.requestAnimationFrame(utils.proxy(this._refresh, this));}
}, },
//Pause game //Pause game
pause: function() { pause: function() {
@ -261,6 +263,9 @@ Tetris.prototype = {
}, },
/*_processCollisions: function {
},*/
// Draw game data // Draw game data
_draw: function() { _draw: function() {
canvas.drawScene(); canvas.drawScene();
@ -273,56 +278,63 @@ Tetris.prototype = {
let clone = Object.assign(Object.create(Object.getPrototypeOf(this.shape)), this.shape); let clone = Object.assign(Object.create(Object.getPrototypeOf(this.shape)), this.shape);
//todo: put in collision detsction
var bottomY = clone.bottomAt(this.matrix); var bottomY = clone.bottomAt(this.matrix);
//clone.color = "#ffffff"; //clone.color = "#ffffff";
canvas.drawGhostShape(clone, bottomY); canvas.drawGhostShape(clone, bottomY);
} }
canvas.drawMatrix(this.matrix); canvas.drawMatrix(this.matrix);
}, },
// Refresh game canvas // Render Shape
_refresh: function() { _renderShape: function()
if (!this.running) { {
return; this._draw();
} },
this.currentTime = new Date().getTime(); _processInput: async function(deltaTime) {
var deltaTime = this.currentTime - this.prevTime;
var tenthOfFrame = 1.6//1;//1.6; // 1.6ms = 1 fram
var halfFrame = 8.0//5;//8.0;
var halfFramePlus = 10.0;//10.0;
// TODO: put in web worker--limited to 60fps here // TODO: put in web worker--limited to 60fps here
if(deltaTime >= 1) { // needs to be 600hz if(deltaTime >= tenthOfFrame) { // needs to be 600hz // 16 / 10
inputs.incDeciframes(); inputs.incDeciframes();
//console.log(deltaTime / 600.0); //console.log(deltaTime / 600.0);
} }
if(deltaTime >= 1) { if(deltaTime >= tenthOfFrame) {
inputs.updateGamepad(); inputs.updateGamepad();
inputs.processGamepadDPad(); inputs.processGamepadDPad();
inputs.processGamepadInput(); inputs.processGamepadInput();
} }
// drain gamepad queue // drain gamepad queue
if(deltaTime > 5) if(deltaTime > halfFrame) // 8 millisecons
{ {
while((inputs.gamepadQueue != undefined && inputs.gamepadQueue.length >= 1)){ while((inputs.gamepadQueue != undefined && inputs.gamepadQueue.length >= 1)){
var curkey = inputs.gamepadQueue.shift(); var curkey = inputs.gamepadQueue.shift();
if(curkey == "DPad-Left") { if(curkey == "DPad-Left") {
this.shape.goLeft(this.matrix); this.shape.goLeft(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == "DPad-Right") { if(curkey == "DPad-Right") {
this.shape.goRight(this.matrix); this.shape.goRight(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == "A") { if(curkey == "A") {
this.shape.rotate(this.matrix); this.shape.rotate(this.matrix);
this._draw(); this._renderShape();
//this._draw();
} }
if(curkey == "B") { if(curkey == "B") {
this.shape.rotateClockwise(this.matrix);; this.shape.rotateClockwise(this.matrix);
this._draw(); this._renderShape();
//this._draw();
} }
if(curkey == "DPad-Down") { if(curkey == "DPad-Down") {
this.shape.goDown(this.matrix); this.shape.goDown(this.matrix);
this._draw(); this._renderShape();
//this._draw();
} }
if(curkey == "RB") { if(curkey == "RB") {
this.shape.goBottom(this.matrix); this.shape.goBottom(this.matrix);
@ -330,10 +342,12 @@ Tetris.prototype = {
} }
if(curkey == "LB") { if(curkey == "LB") {
this.pushHoldStack(); this.pushHoldStack();
//this._renderShape();
this._update(); this._update();
} }
if(curkey == "DPad-Up") { if(curkey == "DPad-Up") {
this.popHoldStack(); this.popHoldStack();
//this._renderShape();
this._update(); this._update();
} }
if(curkey == "Back") { if(curkey == "Back") {
@ -349,46 +363,49 @@ Tetris.prototype = {
//inputs.gamepadButtonClear(); //inputs.gamepadButtonClear();
// Do keyboard // Do keyboard
if(deltaTime > 1) // 120hz if(deltaTime > tenthOfFrame) // 120hz
{ {
inputs.processKeys(); inputs.processKeys();
} }
if (deltaTime > 1) { // 60hz if (deltaTime > tenthOfFrame) { // 60hz
inputs.processKeyShift(); inputs.processKeyShift();
// Keyboard inputs // Keyboard inputs
while((inputs.inputqueue != undefined && inputs.inputqueue.length >= 1)){ while((inputs.inputqueue != undefined && inputs.inputqueue.length >= 1)){
var curkey = inputs.inputqueue.shift(); var curkey = inputs.inputqueue.shift();
if(curkey == 37) { if(curkey == 37) {
this.shape.goLeft(this.matrix); this.shape.goLeft(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == 39){ if(curkey == 39){
this.shape.goRight(this.matrix); this.shape.goRight(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == 40) { if(curkey == 40) {
this.shape.goDown(this.matrix); this.shape.goDown(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == 90) { if(curkey == 90) {
this.shape.rotate(this.matrix); this.shape.rotate(this.matrix);
this._draw(); this._renderShape();
} }
if(curkey == 88){ if(curkey == 88){
this.shape.rotateClockwise(this.matrix);; this.shape.rotateClockwise(this.matrix);;
this._draw(); this._renderShape();
} }
if(curkey == 32) { if(curkey == 32) {
this.shape.goBottom(this.matrix); this.shape.goBottom(this.matrix);
//this._renderShape();
this._update(); this._update();
} }
if(curkey == 16) { if(curkey == 16) {
this.pushHoldStack(); this.pushHoldStack();
//this._renderShape();
this._update(); this._update();
} }
if(curkey == 17) { if(curkey == 17) {
this.popHoldStack(); this.popHoldStack();
//this._renderShape();
this._update(); this._update();
} }
if(curkey == 81) { if(curkey == 81) {
@ -408,22 +425,62 @@ Tetris.prototype = {
} }
if(deltaTime >= 10) if(deltaTime >= halfFramePlus)
inputs.saveKeyboardKeys(); inputs.saveKeyboardKeys();
if(deltaTime >= 1) if(deltaTime >= tenthOfFrame)
inputs.saveButtons(); inputs.saveButtons();
if (deltaTime > this.interval) { },
this._update(); sleep: function(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
},
// Refresh game canvas
_refresh: async function() {
this.prevTime = this.currentTime; if (!this.running) {
this._checkLevel(); return;
} }
this.currentTime = new Date().getTime();
var curInputTime = new Date().getTime();
var prevCounterTime = curInputTime;
var deltaInputTime = 0;
var deltaCounterTime = 0;
// Process input as many times as possible in a frame--60hz hopefully
while(deltaCounterTime <= 16) { // 16.666ms = 1 frame
deltaCounterTime = curInputTime - prevCounterTime;
deltaInputTime = curInputTime - this.prevInputTime;
this._processInput(deltaInputTime);
await this.sleep(1);
curInputTime = new Date().getTime();
}
this.prevInputTime = curInputTime;
var deltaLevelTime = this.currentTime - this.prevTime;
//if(deltaGameTime < 16) this._refresh();
// Render Level
if (deltaLevelTime > this.interval) {
this._update();
this._checkLevel(this.prevTime = this.currentTime);
}
// Draw Frame
if (!this.isGameOver) { if (!this.isGameOver) {
window.requestAnimationFrame(utils.proxy(this._refresh, this)); window.requestAnimationFrame(utils.proxy(this._refresh, this));
} }
}, },
// Update game data // Update game data
_update: function() { _update: function() {

View File

@ -1 +1 @@
"python3 -m http.server" python3 -m http.server