-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCellule.cpp
46 lines (40 loc) · 1.26 KB
/
Cellule.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
#include <iostream>
#include <string>
#include <cmath>
#include "Cellule.h"
Cellule::Cellule()
{
position_x = -1;
position_y = -1;
couleur = blanc;
representant = NULL;
}
Cellule::Cellule(int x, int y, Cellule::couleur_case coul, Cellule* ptr)
{
position_x = x;
position_y = y;
couleur = coul;
representant = ptr;
}
Cellule Cellule::get_representant()
{
if(representant == NULL)
{
return *this;
}
else
{
return *representant;
}
}
Cellule::Cellule(Cellule const& cellulecopie): position_x(cellulecopie.position_x), position_y(cellulecopie.position_y),
couleur(cellulecopie.couleur), nb_possibilite_cellule(cellulecopie.nb_possibilite_cellule), representant(cellulecopie.representant){}
int Cellule::get_position_x(){return position_x;}
int Cellule::get_position_y(){return position_y;}
Cellule::couleur_case Cellule::get_couleur(){return couleur;}
void Cellule::set_couleur(Cellule::couleur_case coul){couleur = coul;}
void Cellule::set_position_x(int x){position_x = x;}
void Cellule::set_position_y(int y){position_y = y;}
int Cellule::get_nb_possibilite_cellule(){return nb_possibilite_cellule;}
void Cellule::set_nb_possibilite_cellule(int nombre){nb_possibilite_cellule = nombre;}
void Cellule::set_representant(Cellule* cellule_ile){representant = cellule_ile;}