Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
4  
should be community wiki – roe Apr 21 '10 at 18:11
16  
seems like a perfectly valid question to me. – Raj More Apr 21 '10 at 18:16
4  
Closing this question seems quite unwarranted. While console text mode UIs are less fashionalbe than GUI's, they are still on topic. Furthermore, the question has been upvoted and has garnered serveral useful answers (also upvoted). – Stephen C. Steel Apr 21 '10 at 19:46
6  
It should be wiki because there is no correct answer and no real way to choose one. – Nick Apr 21 '10 at 19:55
5  
@Juliet: Once again, the formal meaning of CW has---for most of the site's history---been supplemented with a community norm that "fun", non-technical, and poll-like content should be made CW and may be closed if there are not. Blithely ignoring this fact does not make it go away, nor does endlessly repeating your mantra that CW isn't needed on soft content. This question is balanced every so delicately on the cusp, but I'm for giving it a pass. – dmckee Apr 22 '10 at 0:06
show 6 more comments

18 Answers

up vote 47 down vote accepted

Balloons...

. o O @ *
share|improve this answer
8  
you get extra points if you can make a popping sound with they system speaker! – RCIX Apr 22 '10 at 1:51
1  
@RCIX I just did that with the '\a' character :) – wim Feb 12 at 6:39

Lots of choices with Unicode, including ⌚ and ⌛!

  • ← ↖ ↑ ↗ → ↘ ↓ ↙

  • ▁ ▃ ▄ ▅ ▆ ▇ █ ▇ ▆ ▅ ▄ ▃

  • ▉▊▋▌▍▎▏▎▍▌▋▊▉

  • ▖ ▘ ▝ ▗

  • ┤ ┘ ┴ └ ├ ┌ ┬ ┐

  • ◢ ◣ ◤ ◥

  • ◰ ◳ ◲ ◱

  • ◴ ◷ ◶ ◵

  • ◐ ◓ ◑ ◒

  • ◡◡ ⊙⊙ ◠◠

  • ⣾⣽⣻⢿⡿⣟⣯⣷ ⠁⠂⠄⡀⢀⠠⠐⠈ The entire braille block, even in random order http://www.fileformat.info/info/unicode/block/braille_patterns/images.htm

share|improve this answer
2  
Can you count on your console supporting Unicode? – Ori Pessach Apr 21 '10 at 20:52
6  
No, but it got the most votes. :-) (Or should I say ☺) – uosɐſ Apr 21 '10 at 21:08
13  
I would not consider this an answer for a question called Cooler ASCII Spinners? I mean, it is cool, but... – Andreas Rejbrand Apr 21 '10 at 21:23
2  
I understand completely! ☮ – Joe Koberg Apr 21 '10 at 21:45
2  
This one is so awesome: ◡◡ ⊙⊙ ◠◠ – Harmen Apr 30 '10 at 19:42
show 3 more comments

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:

(-*--------) // moving -->
(-----*----) // moving -->
(---------*) // moving -->
(--------*-) // moving <--
(---*------) // moving <--
(*---------) // moving <--

Something more advanced like this loading animation might also work.

Edit: There's also the "executive desk toy"

╔════╤╤╤╤════╗    ╔════╤╤╤╤════╗    ╔════╤╤╤╤════╗    ╔════╤╤╤╤════╗
║    │││ \   ║    ║    ││││    ║    ║   / │││    ║    ║    ││││    ║
║    │││  O  ║ -> ║    ││││    ║ -> ║  O  │││    ║ -> ║    ││││    ║
║    OOO     ║    ║    OOOO    ║    ║     OOO    ║    ║    OOOO    ║

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.

share|improve this answer
@Thorbjørn - Thanks for catching that, I'll update my answer and post an alternate link. – bta Feb 16 '12 at 0:35

Definitely LOLLERSKATES!

    /\O    |    _O    |      O
     /\/   |   //|_   |     /_
    /\     |    |     |     |\
   /  \    |   /|     |    / |
 LOL  LOL  |   LLOL   |  LOLLOL
-----------+----------+-----------
  Frame 0  | Frame 1  |  Frame 2   
share|improve this answer
1  
This made me ROFLCOPTER. – Auguste Apr 26 '10 at 11:28
The "OMGWTFBBQ!!!1" is a little to big for this: kreativekorp.com/miscpages/omgwtfbbq/omgwtfbbq.gif , so is its extended version: i234.photobucket.com/albums/ee298/davidshek/omgwtfbbq.gif – Harmen Apr 26 '10 at 15:40
This one made my chuckle! – Shervin May 7 '10 at 9:05
Hah, excellent! – Sorin Comanescu May 13 '10 at 15:33

There used to be a a DOS linker named blinker, by Blink Inc. It would display an animation similar to this while it was working:

(o)(o)

(-)(-)

(_)(_)

With the first frame displaying for about a second, and the other two animating briefly once a second or two, making the command line appear to blink its eyes. The effect was pretty cool, actually.

The linker even had options to blink one eye, and you could choose which eye would blink.

share|improve this answer
This looks awesome, took it for my site :) – serg May 30 '10 at 20:46

I've used a cycle of

Working. 
Working..
Working...

Inspirational I know

share|improve this answer
Simple, yet clean. I've done similar. – Finglas Apr 24 '10 at 20:25

fish is a Python module that animates an ASCII fish going back and forth, and who doesn't like the rare console fish?

>))'>
    >))'>
        >))'>
    <'((<
<'((<
share|improve this answer
That's a great one! – Harmen May 14 '10 at 7:12

All taken from:

http://llizard.cwahi.net/animals.html

Bats Flying!

                   /^v^\
         /^v^\                      /^v^\
                /^v^\

  /^v^\

Flap flap!

                   \^v^/
         \^v^/                      \^v^/
                \^v^/

  \^v^/

Wow wow An Archer!

       /\
      /__\_{)
     |--<<)__\
      \  /  (
       \/   )
           /|
           \ \
           ~ ~

         /|   \
        /_|_{)/
---<<   | |  )
        \ |  (
         \|  )
            /|
            \ \
            ~ ~
             \
         /|{)/
---<<   +-|-)
         \| (
            )
           /|
           \ \
           ~ ~

       /\
      /__\_{)
     |--<<)__\
      \  /  (
       \/ __)
           \ |__
          ~    ~

         /|   \
        /_|_{)/
---<<   | |  )
        \ |  (
         \|__)
           \ |__
           ~    ~


             \
         /|{)/
---<<   +-|-)
         \| (
          __)
           \ |__
          ~    ~

Super Cyclist

                        ---------- __o
                       --------  _ \<,_
                     -------    (*)/ (*)

Wheeeee!

Flying a Kite

                                                /\
                                               '\/
                                              '  +
                                             '     +
                                           '      +
                                         '         +
                                       '             +
                                     '                  +
                                   '
                                 '
                               '
                             '
                           '
                        '
                    '
                '
__          '
\o  .   '
 \\/
 /\
/ /

This fishing one is pretty hillarious as well

http://asciimator.net/kangaroo/fishing.html

share|improve this answer
We can't stop here, this is bat country. – rickster Feb 12 at 7:14

If you know how far through the process you are I like the percentage bar. It looks nice, feels intuitive and is easy to implement:

| 0%

||||| 5%

|||||||||||||||||||||| 26%

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| 100%

(Examples above are not exact)

share|improve this answer

In Javascript using one jQuery selectors:

var spins = [
    "←↖↑↗→↘↓↙",
    "▁▃▄▅▆▇█▇▆▅▄▃",
    "▉▊▋▌▍▎▏▎▍▌▋▊▉",
    "▖▘▝▗",
    "┤┘┴└├┌┬┐",
    "◢◣◤◥",
    "◰ ◳ ◲ ◱",
    "◴◷◶◵",
    "◐◓◑◒",
    "|/-\\"];

    var spin = spins[0],
        title$ = $('title'),
        i=0;

    setInterval(function() {
        i = i==spin.length-1 ? 0 : ++i;
        title$.text('('+ spin[i] +') Loading...');
    },300);
share|improve this answer
2  
javascript is available in very few consoles – NewAlexandria Mar 15 '12 at 19:25
1  
see it in action: jsfiddle.net/mnbayazit/CgkQJ/1 – Mark Sep 6 '12 at 17:09

Try these

  • '+', 'x'
  • 'v', '<', '^', '>'
share|improve this answer

Courtesy of a co-worker of mine, here's a nifty implementation in C:

#define COW 2172
char* moo = "MO ";
void wrap() {
    int i,j;
    for(i=0;doSomething(i);i++)
        j=COW-moo[i&3],fputs(&j,stderr);
}

From my analysis, it only works on a little-endian machine with at least 32-bit words and the ASCII character set. But it's rather diabolically clever.

share|improve this answer
that is really cool. works on my machine, although I implemented doSomething() to just sleep for 1ms and it animates very slowly... I hope the operation you're doing is quick. – rmeador Apr 21 '10 at 20:17
11  
For the lazy: So what's the effect, then? – uosɐſ Apr 21 '10 at 21:10
1  
@Jason: Nothing terribly fancy. But where's the fun in just telling you what it looks like? :-) – Daniel Pryden Apr 22 '10 at 16:56
1  
Didn't compile for me on VS2010 without a cast: fputs((const char*)&j,stderr); ... and it was a bit of a disappointment when it did. – EMP Apr 30 '10 at 0:05
1  
@Evgeny: Yeah, the original was in C; if you use a C++ compiler you'll need a cast. And I never said it was an exciting display, just that the implementation was rather nifty. – Daniel Pryden Apr 30 '10 at 1:11

Makes a cute "rain" effect:

using System;
using System.Text;
using System.Threading;

namespace CSharpSandbox
{
    class Program
    {
        static Random rnd = new Random();
        static char[,] Step(char[,] matrix)
        {
            int width = matrix.GetUpperBound(0) + 1;
            int height = matrix.GetUpperBound(1) + 1;

            char[,] res = new char[width, height];
            for (int h = 0; h < height; h++)
            {
                for (int w = 0; w < width; w++)
                {
                    char c;
                    if (h == 0)
                        c = rnd.Next(2) == 0 ? ' ' : '*';
                    else
                        c = matrix[w, h - 1];

                    res[w, h] = c;
                }
            }

            return res;
        }

        static string ToString(char[,] matrix)
        {
            int width = matrix.GetUpperBound(0) + 1;
            int height = matrix.GetUpperBound(1) + 1;
            StringBuilder sb = new StringBuilder();

            for (int h = 0; h < height; h++)
            {
                for (int w = 0; w < width; w++)
                {
                    sb.Append(matrix[w, h]);
                }
                sb.AppendLine();
            }
            return sb.ToString();
        }

        static Timer timer;
        static void Spinner()
        {
            char[,] matrix = new char[10, 5];
            timer = new Timer(_ =>
                {
                    string s = ToString(matrix);

                    Console.SetCursorPosition(0, 0);
                    Console.Write(s);

                    matrix = Step(matrix);
                },
                null,
                0,
                200);
        }

        static void Main(string[] args)
        {
            Spinner();
            Console.ReadLine();
        }
    }
}
share|improve this answer
Very nice! It looks great with char[,] matrix = new char[Console.WindowWidth-1, Console.WindowHeight-1]; in Spinner() – Callum Rogers Apr 21 '10 at 22:25
Change * with , for a blizzard. – Sorin Comanescu May 13 '10 at 15:38

In one application, I saw 1,2,3,4,5,6,7,8,9,0.

share|improve this answer
-1 laaaaaaaaame – wim Feb 12 at 6:56

I have seen

 echo -e "\033[41;1m$1 \033[0m"

In bash to continually build a progress bar based on a block character.

share|improve this answer

Watch them in action here: http://jsfiddle.net/mnbayazit/CgkQJ/3/

share|improve this answer

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.

share|improve this answer

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):

             classic: "/-\\|";
       bouncing ball: ".oOo";
better bouncing ball: [46, 111, 79, 248, 79, 111]; // (.oO°Oo.)

[180, 217, 193, 192, 195, 218, 194, 191];  // ┤ ┘ ┴ └ ├ ┌ ┬ ┐
[185, 188, 202, 200, 204, 201, 203, 187];  // double piped version of that 
[219, 220, 223];                           // block colours
share|improve this answer

Your Answer

 
discard

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

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