Animation Creation...

Hello and thank you for looking at this post. I need some help with this program. I am trying to make a (What looks like) a veteran who is saluting. This is what I have so far:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <iostream>
#include <windows.h>
using namespace std;
HANDLE hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
WORD wOldColorAttrs = csbiInfo.wAttributes;
void solute1()
{
cout<<"\n\n\n\n\n\n\t\t\t\t\t\t -------\n"
      "\t\t\t\t\t\t| 0  0 |\n"
      "\t\t\t\t\t\t|   b  |\n"
      "\t\t\t\t\t\t|  --- |\n"
      "\t\t\t\t\t\t \\    /\n"
      "\t\t\t\t\t\t   |  |";
}
void solute2()
{
cout<<"";
}
void solute3()
{
cout<<"";
}
int main()
{
system("color 5c");
int v=1;
while(v!=0){
for(v=1;v!=4;v++){
cout<<"\t\t\t\t\tWe Solute to Veterans!"<<endl;
if(v==1)
{
solute1();
}else
if(v==2)
{
solute2();
}else
if(v==3)
{
solute3();
}
Sleep(500);
system("cls");
}
v=1;
}
}

I would prefer to keep the background colors the same. Thank you!
that is the worst face that I could have ever possibly made...
I second that.
there needs o be a like button for posts
Or, more helpful in this case, a dislike button ^_-
You can always contact the developers(at the bottom of the page). Hehe...
you may want to lookup gotoxy() non-standard function.

Aceix.
Last edited on
thx aceix will do but I am looking for a person who is good at making art with only the keys on a keyboard and i am not good at doing that
Topic archived. No new replies allowed.