Adding to a scoreboard on a canvas platform

I am doing something completely different, instead of putting the scoreboard outside the Canvas, inside it and associating with the properties of the canvas.

It's fully functional, but I don't understand why it doesn't add to the count whenever the row is cleared.

Here's the part:

var totalPoints = 0;

function erase() {
    for ( var y = rows - 1; y >= 0; y--) {
        var full = true;
        for (var x = 0; x < columns; x++) {
            if (board[y][x] == 0) {
                full = false;
                totalPoints--;
                break;
            }
        }
        if (full) {
            totalPoints++;
            for ( var j = y; j > 0; j--) {
                for ( var x = 0; x < columns; x++) {
                    board[j][x] = board[j-1][x]
                }
            }
            ++y; 
        }
    }
}

function showOnload(){
    c.fillStyle = "black";
    c.fillText("scores", 200, 100);
    c.fillText(totalPoints, 200, 140);
}

      

Note:

I have a function showOnload

as body onload

for my page HTML

, does that have anything to do with why it doesn't change?

+3


source to share


1 answer


Update your account every time it changes.



var totalPoints = 0;

function erase() {
    for ( var y = rows - 1; y >= 0; y--) {
        var full = true;
        for (var x = 0; x < columns; x++) {
            if (board[y][x] == 0) {
                full = false;
                totalPoints--;
                showOnload();                //HERE
                break;
            }
        }
        if (full) {
            totalPoints++;
            showOnload();                    //HERE
            for ( var j = y; j > 0; j--) {
                for ( var x = 0; x < columns; x++) {
                    board[j][x] = board[j-1][x]
                }
            }
            ++y; 
        }
    }
}

function showOnload(){
    c.fillStyle = "black";
    c.fillText("scores", 200, 100);
    c.fillText(totalPoints, 200, 140);
}

      

+3


source







All Articles