-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasillero.cpp
98 lines (46 loc) · 2.08 KB
/
casillero.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
#include <iostream>
#include "casillero.h"
// ------------------------------------------------------------------------------------------------------------
Casillero::Casillero(Superficie* superficie, int coord_x, int coord_y, bool ocupado){
this -> superficie = superficie;
this -> coord_x = coord_x;
this -> coord_y = coord_y;
this -> ocupado = ocupado;
}
// ------------------------------------------------------------------------------------------------------------
Casillero::Casillero(){
this -> coord_x = -1; // 0,0 ES una posicion valida en el mapa.
this -> coord_y = -1;
this -> ocupado = false;
}
// ------------------------------------------------------------------------------------------------------------
Casillero::~Casillero(){
if(superficie!=nullptr){
delete superficie;
superficie=nullptr;
}
}
// ------------------------------------------------------------------------------------------------------------
int Casillero::obtener_coordenada_x(){
return coord_x;
}
// ------------------------------------------------------------------------------------------------------------
int Casillero::obtener_coordenada_y(){
return coord_y;
}
// ------------------------------------------------------------------------------------------------------------
bool Casillero::esta_ocupado(){
return this -> ocupado;
}
// ------------------------------------------------------------------------------------------------------------
bool Casillero::es_casillero_transitable(){
return superficie -> es_transitable();
}
// ------------------------------------------------------------------------------------------------------------
bool Casillero::es_casillero_construible(){
return superficie -> es_construible();
}
// ------------------------------------------------------------------------------------------------------------
bool Casillero::es_casillero_accesible(){
return superficie -> es_accesible();
}