forked from GianImpedovo/Algo2_tp2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.h
28 lines (22 loc) · 767 Bytes
/
menu.h
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
#include <iostream>
#include "mapa.h"
using namespace std;
int const CONSTRUIR_EDIFICIO = 1;
int const LISTAR_EDIFICIOS_CONSTRUIDOS = 2;
int const LISTAR_TODOS_EDIFICIOS = 3;
int const DEMOLER_EDIFICIO = 4;
int const MOSTRAR_MAPA = 5;
int const CONSULTAR_COORDENADA = 6;
int const MOSTRAR_INVENTARIO = 7;
int const RECOLECTAR_RECURSOS = 8;
int const LLUVIA_RECURSOS = 9;
int const GUARDAR_SALIR = 10;
// Pre: -
// Pos: Imprime por terminal el menu de opciones
void mostrar_menu();
// Pre: -
// Pos: Devuelve la opcion elegida , ya validada , del usuario.
int elegir_opcion();
// Pre: 0 < opcion < 6 , y la ciudad andynopolis con los archivos ya procesados
// Pos: Se dirige a la opcion elegida por el usuario.
void procesar_opcion(int opcion, Mapa * mapa);