In a console app, an ascii spinner can be used, like the GUI wait cursor, to indicate that work is being done. A common spinner cycles through these 4 characters: '|', '/', '-', '\'
What are some other cyclical animation sequences to spice up a console application?
If you have more than one character worth of space, you can use animated ASCII art. For example, you can do a progress bar like:
or a "bouncing ball" progress indicator (that moves back and forth) like:
Something more advanced like this loading animation might also work.
Edit: There's also the "executive desk toy"
And of course there's the ultimate example of animated ASCII art, if you had the time to implement something similar (it would take "spicing up a console application" to the extreme).
Edit: If your console supports color, you can also spice up an otherwise-boring standard spinner by cycling through colors as you spin. Start off with a red line, then slowly fade through the rainbow up to violet as you spin. This can look especially cool with the "bouncing ball" indicator above if you have the ball "paint" the bar a different color on every pass.
All taken from:
http://llizard.cwahi.net/animals.html
Bats Flying!
Flap flap!
Wow wow An Archer!
Super Cyclist
Wheeeee!
Flying a Kite
This fishing one is pretty hillarious as well
http://asciimator.net/kangaroo/fishing.html
I'm glad I'm not the only one crazy enough to waste time on this!
Here are my favourites (some using dos ascii codes):
In one application, I saw 1,2,3,4,5,6,7,8,9,0.
Balloons...
I wrote one that cycled through the standard \ | / - but the left a _ and moved on to the next position. It was intended to look as though there were a series of spinners, each dropping to the floor before the next one started. The need for this was that my program was repeatedly trying something and waiting for a certain result. I wanted to represent each time it tried and also how many times it had tried without using up a lot of screen space (or count).
After I wrote it it looked a lot less cool than I thought it would, but it served its purpose.