-
Notifications
You must be signed in to change notification settings - Fork 0
/
constantes.hpp
81 lines (62 loc) · 1.67 KB
/
constantes.hpp
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
#ifndef __CONSTANTES_H_
#define __CONSTANTES_H_
#include <string>
using namespace std;
const int MIN_EDAD = 0;
const int MAX_EDAD = 100;
const int MIN_HAMBRE = 0;
const int MAX_HAMBRE = 100;
const int MIN_HIGIENE = 0;
const int MAX_HIGIENE = 100;
//const int MAX_DIMINUTO = 2;
//const int MAX_PEQUENIO = 10;
const int MIN_MEDIANO = 10;
const int MIN_GRANDE = 20;
const int MIN_GIGANTE = 50;
const char PERRO = 'P';
const char GATO = 'G';
const char CABALLO = 'C';
const char ROEDOR = 'R';
const char CONEJO = 'O';
const char ERIZO = 'E';
const char LAGARTIJA = 'L';
const string VOLVER_V1 = "*";
const int VOLVER_V2 = -1;
const char LETRA_ERROR = '#';
enum Posiciones_especies{
POSICION_PERRO,
POSICION_GATO,
POSICION_CABALLO,
POSICION_ROEDOR,
POSICION_CONEJO,
POSICION_ERIZO,
POSICION_LAGARTIJA
};
enum Posiciones_tamanios{
POSICION_DIMINUTO,
POSICION_PEQUENIO,
POSICION_MEDIANO,
POSICION_GRANDE,
POSICION_GIGANTE
};
enum Posiciones_personalidades{
POSICION_DORMILON,
POSICION_JUGUETON,
POSICION_SOCIABLE,
POSICION_TRAVIESO
};
enum Posiciones_alimetos{
POSICION_HUESOS,
POSICION_ATUN,
POSICION_MANZANAS,
POSICION_QUESO,
POSICION_LECHUGA,
POSICION_INSECTO
};
const string NOMBRES_ESPECIES[7] = {"PERRO", "GATO", "CABALLO", "ROEDOR", "CONEJO", "ERIZO", "LAGARTIJA"};
const string TAMANIOS[5] = {"diminuto", "pequeño", "mediano", "grande" , "gigante"};
const string PERSONALIDADES[4] = {"dormilon", "jugueton", "sociable", "travieso"};
const string ALIMENTOS[6] = {"huesos", "atun", "manzanas", "queso", "lechuga", "insecto"};
const int HAMBRE = 10;
const int SUCIEDAD = 10;
#endif //__CONSTANTES_H_