Page 1 of 2

Console game

Posted: Sat Oct 24, 2009 6:48 pm
by zeid
I just made a console breakout game. I tend to make command console games every now and then when I'm bored or feel like practicing programming. Does anyone else do similar? Or has anyone got anything they would like to show off? I'm sure plenty of you waste your time when you have more important things to do just like me.
Image
And here it is if anyone feels like having a go at the game;
http://www.filefront.com/14799071/BouncingBlocks.zip

Re: Console game

Posted: Sat Oct 24, 2009 7:12 pm
by Falco Girgis
Holy shit, that's really cool. :shock:

Re: Console game

Posted: Sat Oct 24, 2009 10:41 pm
by killercoder
wow nicee :)

Re: Console game

Posted: Sun Oct 25, 2009 12:08 am
by zeid
Thanks, glad you guys liked it.

Just updated it to the latest build. Probably wont continue it from here. This version now has winning conditions not just losing conditions, sound and some more spify looking 'graphics' :lol:. I also adjusted the collisions for the ball to make it more fun, and you can see your speed increase. It also has a better level layout, download link has replaced the previous download link, so get it from the top of the page.

Re: Console game

Posted: Sun Oct 25, 2009 12:39 am
by short
I agree, this is REALLY cool! :shock2:

Re: Console game

Posted: Sun Oct 25, 2009 1:26 pm
by dandymcgee
Haha nice. Looks really good other than the refresh rate. :P Is that really using the console, or did you just emulate it?

Re: Console game

Posted: Sun Oct 25, 2009 1:33 pm
by zeid
It uses the console, which is why the refresh rate looks so bad. No graphics just text, I looked up the ASCII extended character sets to get the characters that looked like squares walls etc. It's fun seeing how far you can push restrictions :P I reccommend having a go at this kind of thing to everyone.

Re: Console game

Posted: Sun Oct 25, 2009 1:38 pm
by dandymcgee
zeid wrote:It uses the console, which is why the refresh rate looks so bad. No graphics just text, I looked up the ASCII extended character sets to get the characters that looked like squares walls etc. It's fun seeing how far you can push restrictions :P I reccommend having a go at this kind of thing to everyone.
You might be interested in this: TMDC12
And the winning submission: The Turing Machines Didn't Care

The Turing Machines Didn't Care is probably the coolest text mode demo I have ever seen, but there are quite a few others on that site that are close seconds.

Re: Console game

Posted: Sun Oct 25, 2009 7:42 pm
by Bakkon
I made a console game when I was first learning C++. It was just a $ moved around with the arrow keys and you couldn't walk where there was a block character. This looks like it could be a fun project revisiting now that I have a better understanding of OO and programming in general.
dandymcgee wrote: And the winning submission: The Turing Machines Didn't Care
Holy shiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiit.

Re: Console game

Posted: Mon Oct 26, 2009 8:16 am
by Diablo vt
That's really cool. It's pretty addictive too! Yeah, it is, good job. ;)

Re: Console game

Posted: Mon Oct 26, 2009 8:51 am
by zeid
Found a way to clear the consol without the flicker. So updating the download again.

Re: Console game

Posted: Mon Oct 26, 2009 11:11 am
by ultimatedragoon69
how did you get rid of the flicker i would love to know, in my text based game mine flickers like hell and i havn't figured out how to get rid of it.

Re: Console game

Posted: Mon Oct 26, 2009 11:27 am
by captjack
The fact that the NetHack dungeon crawl is still around and being updated makes proof positive that even text-based games are still worthwhile and enjoyable. Congratulations on your success.

When I was years younger, I made an attempt at a text adventure. Growing up in the era when text was all we had I though it'd be a cool idea to make a Zork clone. I failed at the parser though. Getting it to understand "N", "S", and "drink potion" was easy enough, but the Infocom parser was simply brilliant, "go north then drink potion. kill troll with sword and light lamp. go north."

In college I read about grammars and finite state machines and realized Infocom was light years ahead of my pages long nested if-then-elses...

-capt jack

Re: Console game

Posted: Mon Oct 26, 2009 11:38 am
by avansc
ultimatedragoon69 wrote:how did you get rid of the flicker i would love to know, in my text based game mine flickers like hell and i havn't figured out how to get rid of it.
have you tried redrawing only the characters that change and not the entire screen/console space?

Re: Console game

Posted: Mon Oct 26, 2009 11:45 am
by avansc
Bakkon wrote:I made a console game when I was first learning C++. It was just a $ moved around with the arrow keys and you couldn't walk where there was a block character. This looks like it could be a fun project revisiting now that I have a better understanding of OO and programming in general.
dandymcgee wrote: And the winning submission: The Turing Machines Didn't Care
Holy shiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiit.
yeah its quite impressive. i wouldn't be surprised tho if all it was is an actual 3d demo that was just converted to ascii art.