My Code works something like this -
Code: Select all
render()
{
for (int r = 0; r < rows; r++)
{
for (int c = 0; c < columns; c++)
{
switch(myLayer.get_tile(r, c))
{
SDL_Rect rect;
rect.x = c;
rect.y = r;
rect.w = 50;
rect.h = 50;
case 0:
break;
case 1:
SDL_BlitSurface(tileImage, NULL, screen, &rect);
break;
}
}
}
}
Code: Select all
SDL_Rect rect;
rect.x = myPlayer.get_x();
rect.y = myPlayer.get_y();
rect.w = 50;
rect.h = 50;
SDL_BlitSurface(playerImage, NULL, screen, &rect);
my update is roughly like this
Code: Select all
if (RIGHT)
myPlayer.add_x(1);
if (LEFT)
myPlayer.add_x(-1);