• What are you working on? V2
    2,001 replies, posted
a* pathfinding almost done
done fucking automerge?
Too much time in between posts good sir. By the way, what is the story behind your egg?
[code] #define ever 1;; for (ever) { // I love doing this } [/code]
[QUOTE=-Matt-94;16416547]Too much time in between posts good sir. By the way, what is the story behind your egg?[/QUOTE] furni from habbo
[QUOTE=Sippeangelo;16416568][code] #define ever 1;; for (ever) { // I love doing this } [/code][/QUOTE] wait for the anti #define guys to come in and tell you why that's bad.
[QUOTE=Sippeangelo;16416568][code] #define ever 1;; for (ever) { // I love doing this } [/code][/QUOTE] [code] while (true) { // other programmers love doing this } [/code] :downs:
[QUOTE=nullsquared;16417472][code] while (true) { // other programmers love doing this } [/code] :downs:[/QUOTE] I don't think you got the joke
[QUOTE=raccoon12;16417493]I don't think you got the joke[/QUOTE] "forever" doesn't sound any different than "while(true)" to me.
Guys I whipped up a small timer a while back which stores the time it was at when it closes and restores it when it restarts so that you can just start it up and close it when you are working in projects and stuff. [url]http://www.mediafire.com/file/me5dmlz2zum/JallensTimer.rar[/url] There you go. Wow I bet I look such a noob right now. I need to level this out with awesomeness. Working on it. Cheers for the dumb rating, care to explain?
That timer could be useful.
[QUOTE=nullsquared;16417860]"forever" doesn't sound any different than "while(true)" to me.[/QUOTE] Hurr I are hardcoar programmar. Get over yourself, it was a decent joke.
[QUOTE=Sporbie;16418177]Hurr I are hardcoar programmar. Get over yourself, it was a decent joke.[/QUOTE] woa, relax
[QUOTE=qurl;16418427]woa, relax[/QUOTE] I am relaxed, he's just being a twat for no reason.
[QUOTE=Sporbie;16418177]Hurr I are hardcoar programmar. Get over yourself, it was a decent joke.[/QUOTE] I think it was a pretty bad joke.
[code] for(;;) { // It's like a sweaty, hairy testicle! } [/code]
I don't think the majority of Facepunch knows what a hairy testicle looks like.
[QUOTE=gparent;16420055]I don't think the majority of Facepunch knows what a hairy testicle looks like.[/QUOTE] Maybe they'll google it. It'll be like Goatse but for the new generation.
[QUOTE=Chandler;16419853][code] for(;;) { // It's like a sweaty, hairy testicle! } [/code][/QUOTE] [code]do { // What the hell is Chandler talking about? } while( true );[/code] In all seriousness however, I've been very slowly working on a basic first person obstacle course style game with newton and irrlicht because I got bored and irritated with my ragdoll thing.
Irrlichtated.
[QUOTE=Chandler;16419853][code] for(;;) { // It's like a sweaty, hairy testicle! } [/code][/QUOTE] [code] until (false) { // The plot thickens. }[/code] Why am I getting disagrees?
[QUOTE=Jallen;16420101][code]do { // What the hell is Chandler talking about? } while( true );[/code] [/QUOTE] for(;;) is effectively for ever, but the (;;) looks like a hairy testicle. I can't believe I have to spell this out.
[QUOTE=Kat of Night;16421022][code] until (false) { // The plot thickens. }[/code] Why am I getting disagrees?[/QUOTE] Because that would not execute the contents of the loop, breaking the trend that the other users have set.
[QUOTE=Alt? No Way;16423466]Because that would not execute the contents of the loop, breaking the trend that the other users have set.[/QUOTE] It would execute the contents. until (false) is the same as while (!false). And the negation of false is true, so it's the same as while (true). :downs:
[QUOTE=Kat of Night;16425456] until (false) is the same as while (!false). And the negation of false is true, so it's the same as while (true). :downs:[/QUOTE] This is correct. [code] until (lampIsOn()) { tryToTurnOnTheFuckingLamp(); } [/code] == [code] while (!lampIsOn()) { tryToTurnOnTheFuckingLamp(); } [/code]
I'm running through [i]Beginning C++ Game Programming 2004[/i]. So far, so good. I'm done the second program in Chapter Two. :eng99:
[QUOTE=Klownox;16425889]I'm running through [i]Beginning C++ Game Programming 2004[/i]. So far, so good. I'm done the second program in Chapter Two. :eng99:[/QUOTE] You're probably better than me.
[QUOTE=Klownox;16425889]I'm running through [i]Beginning C++ Game Programming 2004[/i]. So far, so good. I'm done the second program in Chapter Two. :eng99:[/QUOTE] That's the book I learned from.
[QUOTE=nullsquared;16426229]That's the book I learned from.[/QUOTE] ditto
Still working on Python. I am reading about defining functions, but I got confused when he started mentioning about global and local variables. I understand the concept, but in one example, the code was totally weird. I guess I don't need to get that, but I do know the concept so it's good enough for me.
Sorry, you need to Log In to post a reply to this thread.