Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

I'm developing rogue like and need a drop-in simple dungeon generator for immediately testing of graphical functionality. Found bunch of code, but all of this code (Nethack, Angband) pretty tight integrated into this application. Is that any cool dungeon generators on c (not C++!), that just draw dungeon in ASCII on stdout? I don't want C++, cause I'm on iOS and do not want to adapt it later.

share|improve this question
1  
you know that there is Obj-C++? there nothing like adopting C++ at all. – Gajoo Apr 10 '12 at 17:58
1  
So are you looking for a dungeon generator or are you looking for something to draw a dungeon? If you want to test graphical functionality wouldn't you want to use your own draw code? Then wouldn't the dungeon generator need to supply a format that your draw code can recognize? Why don't you tell us more about what you currently have and what you've tried. – Byte56 Apr 10 '12 at 18:13
3  
If all you need to do is test the graphics why do you need a generator? I'd bet you could cook up an ACSII dungeon just fine for testing in 5 minutes. – eBusiness Apr 10 '12 at 18:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.