[Solved]Quick SDL Question

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
XianForce
Chaos Rift Devotee
Chaos Rift Devotee
Posts: 767
Joined: Wed Oct 29, 2008 8:36 pm

[Solved]Quick SDL Question

Post by XianForce »

Okay, I'm going through Lazy Foo's Tutorials, and in all of his tutorials he has this when he's handling events:

Code: Select all

//While the user hasn't quit

while( quit == false )
{
     //Handles events, etc.
}

My question: Is that really necessary? When the application is closed, wouldn't it stop running?
Last edited by XianForce on Sun May 10, 2009 12:11 am, edited 1 time in total.
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Quick SDL Question

Post by MarauderIIC »

In general, you want to manually clean things up. So if the user clicks "exit", you set quit to true and let it fall through so you can call SDL_Quit, etc. This way you can tell the difference between a clean exit and a not-clean exit.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
XianForce
Chaos Rift Devotee
Chaos Rift Devotee
Posts: 767
Joined: Wed Oct 29, 2008 8:36 pm

Re: Quick SDL Question

Post by XianForce »

MarauderIIC wrote:In general, you want to manually clean things up. So if the user clicks "exit", you set quit to true and let it fall through so you can call SDL_Quit, etc. This way you can tell the difference between a clean exit and a not-clean exit.
Oh. That makes complete sense now that you say it haha.
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: [Solved]Quick SDL Question

Post by Ginto8 »

a somewhat easier thing to do this (no need to have an extra variable) would be:

Code: Select all

while(1)
{
    if([user quits])
        break;
}
just as a thought :)
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
XianForce
Chaos Rift Devotee
Chaos Rift Devotee
Posts: 767
Joined: Wed Oct 29, 2008 8:36 pm

Re: [Solved]Quick SDL Question

Post by XianForce »

Yeah, that'd work well too :)
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: [Solved]Quick SDL Question

Post by MarauderIIC »

Ginto8 wrote:a somewhat easier thing to do this (no need to have an extra variable) would be:

Code: Select all

while(1)
{
    if([user quits])
        break;
}
just as a thought :)
This breaks structured programming rules (one entry, one exit), which you shouldn't just break all willy-nilly, but are rules that I regard as more breakable than other rules. Besides, [user quits] -- if that's not a variable somehow, why not just have while (![user quits]) ?
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
Post Reply