Temple of The Roguelike Forums

Development => Programming => Topic started by: RogueMaster on October 26, 2010, 08:17:23 PM

Title: Looking for an ASCII artist...
Post by: RogueMaster on October 26, 2010, 08:17:23 PM
... that can make a logo for a Roguelike i'm almost finishing.

I need someone that can do something in this style:

http://aa-project.sourceforge.net/gallery/krizik.png (http://aa-project.sourceforge.net/gallery/krizik.png)

This is, a complex ASCII "draw", not just using a single character.
Of course, not that face, just the name of my roguelike (that only such person will know until release date).

Danke Schön.
Title: Re: Looking for an ASCII artist...
Post by: Z on October 26, 2010, 08:38:20 PM
I think this is done automatically and you can run it yourself. I don't know the details, but look for AA-lib.
Title: Re: Looking for an ASCII artist...
Post by: linux_junkie on October 26, 2010, 08:39:53 PM
I don't know for sure, but that image was probably generated by an ASCII art program, and not done by hand.  There are plenty of ASCII art generators out there for you to try.  A quick google search turned up this one: http://www.glassgiant.com/ascii/

I haven't tested it, but their samples look good.
Title: Re: Looking for an ASCII artist...
Post by: RogueMaster on October 27, 2010, 12:56:28 PM
I think this is done automatically and you can run it yourself. I don't know the details, but look for AA-lib.


Yes, that was made with AA-Lib.
The problem is that I'm developing for FreeBasic, and there is no AA-Lib for FreeBasic  :'(


I don't know for sure, but that image was probably generated by an ASCII art program, and not done by hand.  There are plenty of ASCII art generators out there for you to try.  A quick google search turned up this one: http://www.glassgiant.com/ascii/

I haven't tested it, but their samples look good.

I will give a try to that, although I don't like it as much as I like the AA-Lib results.
Title: Re: Looking for an ASCII artist...
Post by: Rabiat on October 27, 2010, 02:09:46 PM
You're not generating the ASCII art in run time, are you? ;)

All you need to do is draw your logo as a picture, then use a generator (once) to create the ASCII art.

After that, assign the result to a string constant in your code and display it from within your program.

If you want color, the easiest way is to use two string constants (one for the ASCII characters, and one for the color code of each character), and modify your display method to set the color before writing each char.
Title: Re: Looking for an ASCII artist...
Post by: RogueMaster on October 28, 2010, 06:34:41 PM
You're not generating the ASCII art in run time, are you? ;)

All you need to do is draw your logo as a picture, then use a generator (once) to create the ASCII art.

After that, assign the result to a string constant in your code and display it from within your program.

If you want color, the easiest way is to use two string constants (one for the ASCII characters, and one for the color code of each character), and modify your display method to set the color before writing each char.


For title screen, the ASCII art is just "static".
But I had in mind an introductory ASCII movie, and AA-Lib is pretty usefull for this (refer to BB project derived from AA-Lib).
Title: Re: Looking for an ASCII artist...
Post by: Fenrir on October 29, 2010, 05:46:50 PM
The Doryen library has this capability.
Title: Re: Looking for an ASCII artist...
Post by: RogueMaster on October 29, 2010, 07:06:23 PM
The Doryen library has this capability.

There is no libtcod for FreeBasic. Or at least, i didn't find it.