I'm experimenting a bit with the new tag and I've already hit my first roadbump. I figured I'd start getting my feet wet by implementing a version of the classic board game Go/Baduk/Weiqi.

I've drawn the xy grid using moveTo() and lineTo(), and I've drawn a wood background using fillRect() that needs to be "under" that XY grid of course.

However, therein lies my problem. The fillRect() background is drawn on top of the grid - thus obscuring the grid.

How do I reverse this? Here's what I'm working with:

        var boardSize = 19;                 
        var gridSpacing = 25;
        var gridSize = boardSize * gridSpacing;

        var xStart = (window.innerWidth / 2) - (gridSize / 2) + 0.5;
        var yStart = (window.innerHeight / 2) - (gridSize / 2) + 0.5;
        var xEnd = xStart + gridSize;
        var yEnd = yStart + gridSize;


        var gridContext = canvas.getContext("2d");

        gridContext.beginPath();

        // Draw the board x lines
        for (var x = xStart; x <= xEnd; x += gridSpacing)
        {
            gridContext.moveTo(x, yStart);
            gridContext.lineTo(x, yEnd);
        }

        // Draw the board y lines
        for (var y = yStart; y <= yEnd; y += gridSpacing)
        {
            gridContext.moveTo(xStart, y);
            gridContext.lineTo(xEnd, y);
        }

        gridContext.strokeStyle = "#000000";
        gridContext.stroke();

        // Create new image object to use as pattern
        var img = new Image();
        img.src = 'bg_wood.jpg';
        img.onload = function()
        {
            var boardBG = gridContext.createPattern(img, 'repeat');
            gridContext.fillStyle = boardBG;
            gridContext.fillRect(xStart, yStart, gridSize, gridSize);
        }
link|improve this question
You seem to be drawing the lines first, then the background - try it the other way round – Eli Bendersky Feb 20 '10 at 6:54
Please give a vote (if you think it deserves one, as you clearly do in this case) to the answer you select as correct. – bignose Feb 20 '10 at 7:45
feedback

1 Answer

up vote 2 down vote accepted

Try using gridContext.globalCompositeOperation = 'destination-over'; when drawing the background.

link|improve this answer
Worked absolutely beautifully! I was messing with globalCompositeOperation earlier but looks like I only tried the "source-" variations. thanks! Notice anything else fishy about my code? I have to admit I don't fully understand the canvas drawing stack - or how save() and restore() are meant to be used. Or whether I should be using closePath(). Back to the docs! – DUZOUR Feb 20 '10 at 7:04
I seem to have run into a new issue, but in the same vein. I'm trying to draw board pieces ontop of the board itself (of course!), but I'm running into the same "layering"/compositing issues. I added the following chunk: var stone = new Image(); stone.src = "b.png"; stone.onload = function() { gridContext.drawImage(stone, xStart - 30, yStart - 30); }; What gives? – DUZOUR Feb 21 '10 at 6:40
@MrMatt Change the globalCompositeOperation back to source-over when drawing pieces. – KennyTM Feb 21 '10 at 6:45
Works... but now the grid lines have vanished. – DUZOUR Feb 21 '10 at 7:05
2  
@MrMatt: See pastie.org/835165. The problem is onload will not execute at the same time you define it. So all your previous composite operations will not take effect when onload is executed. You can only change it during the onload. – KennyTM Feb 21 '10 at 7:53
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.