SFML community forums

Help => General => Topic started by: BeautiCode on July 30, 2014, 05:23:06 am

Title: How to make a tiled program less laggy
Post by: BeautiCode on July 30, 2014, 05:23:06 am
So I'm fairly new to SFML, I have a new game in development which is almost complete.
It's sort of laggy though, it has a big tilemap and theres a character ontop of the tiles that move around.

It's sort of like this

int main()
{
       while(window.isopen())
       {
               while(pollevent)
                 {
                         CHECK_IF_HOLDING_KEY_AND_MOVE_CHAR_POSITION_IN_DIRECTION();
                 }
         DRAW_AND_DISPLAY_CHARACTER_AND_ALL_TILES();
         }
}
 

It's sort of skippy.       
Title: Re: How to make a tiled program less laggy
Post by: Strelok on July 30, 2014, 06:10:14 am
Try this way
int main()
{
SOMEGENERICFUNCTIONALLINCAPSLOCK();
return 0;
}
Title: Re: How to make a tiled program less laggy
Post by: G. on July 30, 2014, 06:19:14 am
Draw only the tiles that are inside the view.
And maybe use vertex arrays, if you're not already using them.
Title: Re: How to make a tiled program less laggy
Post by: BeautiCode on August 01, 2014, 03:04:44 am
Alright thanks guys