Author Topic: Looking for an ASCII artist...  (Read 10865 times)

RogueMaster

  • Rogueliker
  • ***
  • Posts: 65
  • Karma: +0/-0
    • View Profile
Looking for an ASCII artist...
« 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

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.

Z

  • Rogueliker
  • ***
  • Posts: 905
  • Karma: +0/-0
    • View Profile
    • Z's Roguelike Stuff
Re: Looking for an ASCII artist...
« Reply #1 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.

linux_junkie

  • Newcomer
  • Posts: 28
  • Karma: +0/-0
    • View Profile
    • Email
Re: Looking for an ASCII artist...
« Reply #2 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.

RogueMaster

  • Rogueliker
  • ***
  • Posts: 65
  • Karma: +0/-0
    • View Profile
Re: Looking for an ASCII artist...
« Reply #3 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.

Rabiat

  • Rogueliker
  • ***
  • Posts: 88
  • Karma: +0/-0
    • View Profile
Re: Looking for an ASCII artist...
« Reply #4 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.

RogueMaster

  • Rogueliker
  • ***
  • Posts: 65
  • Karma: +0/-0
    • View Profile
Re: Looking for an ASCII artist...
« Reply #5 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).

Fenrir

  • Rogueliker
  • ***
  • Posts: 473
  • Karma: +1/-2
  • The Monstrous Wolf
    • View Profile
Re: Looking for an ASCII artist...
« Reply #6 on: October 29, 2010, 05:46:50 PM »
The Doryen library has this capability.

RogueMaster

  • Rogueliker
  • ***
  • Posts: 65
  • Karma: +0/-0
    • View Profile
Re: Looking for an ASCII artist...
« Reply #7 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.