-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.cpp
73 lines (63 loc) · 1.72 KB
/
menu.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
#include "menu.hpp"
/*
PRE: -
POS: imprime el menú de opciones
*/
void mostrar_menu(){
cout << endl;
cout << "MENÚ PRINCIPAL " << endl;
cout << "1. Listar animales" << endl;
cout << "2. Rescatar animal" << endl;
cout << "3. Buscar animal" << endl;
cout << "4. Cuidar animales" << endl;
cout << "5. Adoptar animal" << endl;
cout << "6. Guardar y salir" << endl;
}
/*
PRE: -
POS: Pide una opcion del menu al usuario y la devuelve cuando sea correcta.
*/
int preguntar_opcion_usuario(){
int opcion;
do {
cout << "Ingresá una opción (Según el número que tengan en el menú): ";
cin >> opcion;
cout << endl;
} while (opcion < LISTAR_ANIMALES|| opcion > SALIR);
return opcion;
}
void aplicacion(Refugio* mi_refugio, int &estado){
switch (estado) {
case INICIO:
mostrar_menu();
estado = preguntar_opcion_usuario();
mi_refugio->actualizar_valores();
break;
case LISTAR_ANIMALES:
mi_refugio->mostrar_lista_de_mascotas();
estado = INICIO;
break;
case RESCATAR_ANIMAL:
mi_refugio->rescatar_animal();
estado = INICIO;
break;
case BUSCAR_ANIMAL:
mi_refugio->buscar_animal();
estado = INICIO;
break;
case CUIDAR_ANIMALES:
mi_refugio->cuidar_animal();
estado = INICIO;
break;
case ADOPTAR_ANIMAL:
mi_refugio->adoptar_animal();
estado = INICIO;
break;
case GUARDAR_Y_SALIR:
mi_refugio->guardar();
estado = SALIR;
break;
default:
estado = INICIO;
}
}