-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
156 lines (147 loc) · 4.11 KB
/
main.cpp
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#include<iostream>
#include<time.h>
#include<conio.h>
#include<windows.h>
#define L 50
#define N 6
#define N2 6
#define DA 25
#define A 21
using namespace std;
bool GameOver,flag;
char jump;
int x,y,score,distanza,bin,timejump;
int xW[N],yW[N];
int xW2[N2],yW2[N2];
void Setup()
{
x=5;
y=1;
xW[0]=L-1;
yW[0]=1;
score=0;
srand(time(NULL));
distanza=DA+rand()%A;
bin=rand()%2;
timejump=0;
GameOver=false;
flag=false;
}
void Intro()
{
system("color A");
cout<<"\n\nÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ JUMP ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»\n";
cout<<" \n";
cout<<" Prodotto da: Antonio Ferraiuolo \n";
cout<<" \n";
cout<<" Versione: 1.0 \n";
cout<<" \n";
cout<<"ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ\n\n";
system("pause");
system("cls");
cout<<"\n\nÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ JUMP ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»\n";
cout<<" ------ Ferrax ------- \n";
cout<<" Regolamento di Gioco: \n";
cout<<" \n";
cout<<" Salta il maggior numero di pareti utilizzando la freccia <sopra> \n";
cout<<" e ottieni il miglior punteggio!! \n";
cout<<" Se dovessi scontrarti con una di esse il gioco avra' termine. \n";
cout<<" \n";
cout<<" Buon divertimento!! \n";
cout<<" \n";
cout<<"ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ\n\n";
system("pause");
system("cls");
}
void Draw()
{
system("cls");
cout<<"Score: "<<score;
cout<<"\n\n\n\n\n\n\n\n\n\n";
cout<<"\n\n\n\n\n";
for(int i=0;i<3;i++)
{
for(int j=0;j<L;j++)
{
if(i==y && j==x) cout<<"Ü";
for(int k=0;k<N;k++)
{
if(i==yW[k] && j==xW[k])
{
cout<<"±";
xW[k]--;
}
}
if(i!=2) cout<<" ";
else cout<<"°";
}
cout<<endl;
}
}
void Logic()
{
if (timejump==5)
{
y=1;
timejump=0;
flag=false;
}
if(kbhit())
{
jump=getch();
if(jump==72)
{
y--;
flag=true;
}
}
if(y<0) y=0;
if(flag) timejump++;
for(int i=1;i<N;i++)
{
if(x==xW[i] && y==yW[i]) GameOver=true;
}
score++;
}
void Wall()
{
if(xW[0]==distanza)
{
distanza=DA+rand()%A;
for(int i=N;i>0;i--)
{
xW[i]=xW[i-1];
yW[i]=yW[i-1];
}
xW[0]=L-1;
}
}
void Outro()
{
system("cls");
system("color A");
cout<<"\n\nÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ JUMP ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»\n";
cout<<" \n";
cout<<" Punteggio finale: "<<score<<" \n";
cout<<" \n";
cout<<" Grazie per aver giocato!! \n";
cout<<" \n";
cout<<" A presto!! (sfigato) \n";
cout<<" \n";
cout<<"ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ\n\n";
system("pause");
}
int main()
{
Intro();
Setup();
while(!GameOver)
{
Draw();
Logic();
Wall();
Sleep(20);
}
Outro();
return 0;
}