I am writing a console app that would be kicking off long running processes. So rather than let the user stare at the screen for several minutes, I'd love to throw my processing on a background thread and let the user play a game meanwhile.

If you are my age, you definitely remember the Nibbles game written in QBasic that shipped with DOS for years. I remember reading several years ago that someone rewrote it in C# console mode. But I can't find it. Anyone know where I could grab it?

link|improve this question

2  
+1 for the nostalgia. – Richard Hein Oct 4 '10 at 21:25
Just don't get sued by namco <-- The patient for a minigame during a loading screen – Scott Chamberlain Oct 4 '10 at 21:28
lol, there is a patent for everything nowdays. Just ignore them. – Lohoris Oct 4 '10 at 23:17
feedback

2 Answers

up vote 6 down vote accepted

I saw your question and immediately went ahead and translated the original NIBBLES.BAS directly into C#.

Of course, the code is full of Basicisms; in particular, arrays start at 1. I have changed the sammy and colorTable arrays so that they start at 0, but not the arena array (this one now has an unused index 0).

Many things could be done more “properly” in C# (e.g. one should probably use enums instead of the numbers 1,2,3,4 for directions up,down,left,right; one should use the ConsoleColor enum instead of integers for the colors).

I did use a few C#isms though: the sparkle effect on the initial screen is done in a separate thread so that I can just use Console.ReadKey() to wait for user input.

I had to comment out the code that sets/unsets Num Lock, Caps Lock and Scroll Lock because C#’s Console only lets me read the state of those, not change them. I would have had to use WinAPI for this, which I decided would have been over the top.

All the comments are from the original.

link|improve this answer
1  
That's pretty awesome. – AngryHacker Oct 5 '10 at 0:45
One complaint. It works well if in the properties for the DOS window you've selected Lucida Console fonts. But if you have the Raster Fonts selected (which I think is the default), the screen is an absolute mess. – AngryHacker Oct 5 '10 at 0:58
@AngryHacker: I know. It’s very unfortunate. If you know of a way to fix this, I would love to hear. I don’t know how to change the console font programmatically, or even to determine what the font is. If I could at least determine it, then I could use the old DOS codepage when it is Raster Fonts. – Timwi Oct 5 '10 at 11:40
@Timwi: I fixed it to work with both raster and TT fonts. I also added a few other minor changes like properly restoring the console. pastebin.com/LjXn7246 – Tergiver Oct 14 '10 at 15:56
There's also a bug in InitColors. The background color needs to be set (black) before calling Console.Clear. There's a small chance (I saw it once in about 25 levels played) that the background color is non-black prior to a level change. – Tergiver Oct 14 '10 at 16:40
show 9 more comments
feedback

Do you mean this one?

Here's one that's console-based.

link|improve this answer
@ChristopheD: See my edit. – Robert Harvey Oct 4 '10 at 21:19
1  
It is a shame that the author would use ASCII characters like |, + and - instead of the box-drawing/filling characters that the original QBasic Nibbles used. – Timwi Oct 4 '10 at 21:23
It's pretty close. The one I was thinking of had the extended ASCII for the | chars as Timwi had mentioned. It's awesome though. – AngryHacker Oct 4 '10 at 21:34
The characters are defined in the game levels. Just go into it and replace the - and | with their extended ascii characters and you are good to go. Back in the 80s. – AngryHacker Oct 4 '10 at 21:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.