I'm currently working on a "hang man"-esque game written in java. The program as a whole works fine (the core is very simple) but i want to do something fancy with the terminal output. In most versions of hangman, you draw a little stick figure body-part-by-body-part after each incorrect guess. When the stick figure is completely drawn, it means you have used all of your guesses and you lose. Is there any way to accomplish this in java without having to println a bunch of white spaces to "clear the board?" I've been messing around with basic java animations (i forget which package this comes with) but don't understand it well enough to do something large scale such as a hangman figure.
for anyone who's curious, this is how the output should look when it's "game over"
________
| |
| *_*
| --+--
| |
| / \\
|--------
...and this is how the default board should appear
________
|
|
|
|
|
|--------
i want to do a line by line animation of the figure starting with the head and ending with the feet. All i know how to do with basic animation is animate a single character sequence (i.e., i can do a loading animation by animating the characters "|/-\")
edit 1: spelling/grammar