]> git.eli173.com Git - pong_br/commitdiff
small improvements
authorElijah Cohen <eli@eli173.com>
Thu, 16 May 2019 16:40:29 +0000 (11:40 -0500)
committerElijah Cohen <eli@eli173.com>
Thu, 16 May 2019 16:40:29 +0000 (11:40 -0500)
TODO.org
server/constants.js
web/draw.js

index 7b9d9e9fb4480747f7ef405507f9a51f25efb231..64839b7b9f5c960e0364f09577e1254ce7ab9f42 100644 (file)
--- a/TODO.org
+++ b/TODO.org
@@ -1,5 +1,6 @@
 todo:
 - make sure files in the right place for server stuff
+- zoom in a little?
 maybe:
 - paddle movement bump
 - more balls
index 22edec017371aba3805cb7409e941c5377929a4c..733eb02e7185b6214607d29ecda91b0ea0fcc394 100644 (file)
@@ -7,7 +7,7 @@ var c = {
     FPS: 30,
     WAIT_TIME: 60000, // 1 minute
     MAX_GAMES: 100, // the most games allowed to go on at once, to be tweaked as needed for purposes
-    ROBO_TIME: 30, // time in seconds before filling out with robots
+    ROBO_TIME: 20, // time in seconds before filling out with robots
     // gamestate
     DYING_TIME_IN_FRAMES: 100,
     BOARD_RADIUS: 10,
index 8c4436227278e830a21c3a6ef0bdd082e3a500b7..30cc82521244c8fc0557ace4ce12084069060fd9 100644 (file)
@@ -43,10 +43,6 @@ var draw = function(state, ctx) {
        }
        drawLine(ctx, c, eps.f, eps.s);
     }
-    // do something to show the zones for my sanity
-    for(var lz of livingzones) {
-       drawLine(ctx, xcolor, lz.f, lz.s);
-    }
     // balls
     for(var b of state.balls) {
        drawBall(ctx, bcolor, b, state.dead.length, state.n);
@@ -128,7 +124,7 @@ var drawWaiting = function(ctx) {
     // i think that the above is unneccesary, but might as well be safe. Not like much is going on client-side
     ctx.fillStyle = 'rgba(225,225,225,100)';
     ctx.textAlign = 'center';
-    ctx.fillText("waiting for", 0, -5);
+    ctx.fillText("finding", 0, -5);
     ctx.fillText("opponents...", 0, 5);
     ctx.restore();
 }