I'm developing a game where the background is drawn using tiles, there are about 100 tiles in it. The background should also be scrollable. Problem is that it won't scroll smoothly, there is not enough time to update the coordinates of every tile and redraw it, so I observe some unwanted visual effects. Is there any way to solve the issue? Thanks in advance.

link|improve this question

2  
By 'unwanted visual effects', do you mean the screen isn't updating fast enough so the scrolling looks choppy? – Steve Blackwell Jan 3 at 21:25
@SteveBlackwell, Actually, the scrolling is smooth enough, but the tiles do not catch to be redrawn on right places on every scrolling move. – Egor Jan 4 at 5:36
feedback

1 Answer

The solution looks like this:

screenL = 0;
screenR = screenWidth;
screenU = 0;
screenD = screenHeight;
curL = tileX + tileWidth;
curR = tileX;
curU = tileY;
curD = tileY + tileHeight;


if (screenL < curR & screenR > curL) {
            if (screenU < curD & screenD > curU) {
        tile.draw(canvas);
            }
        }

If you dont know how to get the width and height of the mobile phone screen, let me know. You could also write your tile map engine script.

link|improve this answer
Sorry, but what hero are you talking about? Did you read my question properly? – Egor Jan 3 at 20:45
Oops, sorry. I will edit the anwser – Liukas Jan 3 at 21:12
feedback

Your Answer

 
or
required, but never shown

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