-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.cpp
147 lines (101 loc) · 5.19 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
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
#include <iostream>
#include "menu.h"
using namespace std;
// ------------------------------------------------------------------------------------------------------------
void mostrar_menu(){
cout << endl << endl;
cout << TAB <<NEGRITA<< MSJ_MENU_BIENVENIDA <<FIN_DE_FORMATO<< endl<<endl;
cout << TAB << "╔════════════════════════════════════════╗" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_1 << string(6, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_2 << string(3, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_3 << string(9, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_4 << string(1, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_5 << string(23, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_6 << string(15, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_7 << string(17, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_8 << string(5, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_9 << string(17, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "║ " << FONDO_COLOR_PURPURA << MSJ_MENU_OPCION_10 << string(19, ' ') << FIN_DE_FORMATO << " ║" << endl;
cout << TAB << "╚════════════════════════════════════════╝" << endl;
}
// ------------------------------------------------------------------------------------------------------------
Estado_t procesar_opcion(int opcion_elegida, Andypolis &andypolis){
Estado_t estado = OK;
string str_edificio;
string codigo_ingresado;
switch (opcion_elegida) {
case CONSTRUIR_EDIFICIO_POR_NOMBRE:
system(CLR_SCREEN);
estado = construir_edificio_por_nombre(andypolis);
break;
case LISTAR_EDIFICIOS_CONSTRUIDOS:
system(CLR_SCREEN);
andypolis.listar_edificios_construidos();
break;
case LISTAR_TODOS_LOS_EDIFICIOS:
system(CLR_SCREEN);
andypolis.mostrar_catalogo();
break;
case DEMOLER_EDIFICIO_POR_COORD:
system(CLR_SCREEN);
estado = demoler_edificio_por_coordenada(andypolis);
break;
case MOSTRAR_MAPA:
system(CLR_SCREEN);
andypolis.mostrar_andypolis();
break;
case CONSULTAR_COORDENADA:
system(CLR_SCREEN);
estado = consultar_coordenada(andypolis);
break;
case MOSTRAR_INVENTARIO:
system(CLR_SCREEN);
andypolis.mostrar_inventario();
break;
case RECOLETAR_RECURSOS_PRODUCIDOS:
system(CLR_SCREEN);
estado = andypolis.recolectar_materiales();
break;
case LLUVIA_RECURSOS:
system(CLR_SCREEN);
estado = lluvia_de_recursos(andypolis);
break;
case GUARDAR_SALIR:
system(CLR_SCREEN);
cout << endl << TAB << NEGRITA << FONDO_COLOR_AZUL << MSJ_DESPEDIDA << FIN_DE_FORMATO <<endl;
cout << endl << endl;
break;
default:
return ERROR_NUMERO_OPCION_INVALIDA;
}
return estado;
}
// ------------------------------------------------------------------------------------------------------------
Estado_t ingreso_menu(int &opcion , Andypolis &andypolis){
Estado_t estado = OK;
string opcion_elegida;
cout << TAB << SUBRAYADO << MSJ_MENU_INGRESO_OPCION << FIN_DE_FORMATO <<endl;
getline(cin, opcion_elegida);
if(!es_un_numero(opcion_elegida))
return ERROR_ENTRADA_INVALIDA;
opcion = stoi(opcion_elegida);
estado = procesar_opcion(opcion,andypolis);
return estado;
}
// ------------------------------------------------------------------------------------------------------------
void procesar_juego(Andypolis& andypolis){
// Esto lo hago para que la secuencia de la cantidad de materiales que se genera con cada corrida del programa sea mas aleatoria.
srand( (unsigned int)time(NULL) );
int opcion = 0;
Estado_t estado = OK;
while(opcion != GUARDAR_SALIR){
mostrar_menu();
estado = ingreso_menu(opcion, andypolis);
if(estado != OK)
imprimir_error(estado);
}
}
// ------------------------------------------------------------------------------------------------------------
void guardar_cambios(Andypolis& andypolis, ofstream& archivo_salida_materiales, ofstream& archivo_salida_ubicaciones){
andypolis.guardar_andypolis(archivo_salida_materiales, archivo_salida_ubicaciones);
}