-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
76 lines (66 loc) · 1.65 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
///Programmeurs: KARDACHE Noor, TAN Benjamin, ZHANG Simon
///Bibliotheques qu'on inclut
#include <iostream>
#include <vector>
#include <ctime>
#include <algorithm>
#include "./interface/interface.h"
///Menu permettant l'utilisateur de:
///Dessiner un paysage, Creer un paysage,
///Afficher les elements des plans du paysage
///Et d'en detruire des plans
int main()
{
srand(time(NULL));
Plan Arriere;
Plan SemiArr;
Plan Median;
Plan Avant;
char choix =10;
do
{
afficherMenu();
std::cout<<"Saisir votre action: ";
do
{
choix = '9';
choix = getch();
}
while (choix != '0' && choix != '1' && choix != '2' && choix != '3' && choix != '4' && choix != '5');
std::cout<<choix<<std::endl<<std::endl;
switch(choix)
{
case '0':
break;
case '1':
{
dessinerPlan(Arriere, SemiArr, Median, Avant);
break;
}
case '2':
{
CreerOeuvre(Arriere, SemiArr, Median, Avant);
break;
}
case '3':
{
GenererOeuvre(Arriere, SemiArr, Median, Avant);
break;
}
case '4':
{
afficherPlan(Arriere, SemiArr, Median, Avant);
break;
}
case '5':
{
detruirePlan(Arriere, SemiArr, Median, Avant);
break;
}
default :
std::cout << "Choix Invalide" << std::endl << std::endl;
}
}
while (choix!='0');
return 0;
}