forked from goupix/Projet_EColi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCase.cpp
executable file
·162 lines (108 loc) · 2.04 KB
/
Case.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
//==============================
// INCLUDES
//==============================
#include "Case.h"
#include <iostream>
using namespace std;
//==============================
// DEFINITION STATIC ATTRIBUTES
//==============================
//==============================
// CONSTRUCTORS
//==============================
Case::Case(int a, int b, float A_init, Bacterie* cible){
x=a;
y=b;
A=A_init;
B=0;
C=0;
ptr=cible;
}
Case::Case(const Case& c){
x=c.x;
y=c.y;
A=c.A;
B=c.B;
C=c.C;
ptr=nullptr;
}
//==============================
// DESTRUCTOR
//==============================
Case::~Case(){
delete(ptr);
}
//==============================
// PUBLIC METHODS
//==============================
float Case::GetA()const{
return A;
}
float Case::GetB()const {
return B;
}
float Case::GetC()const {
return C;
}
Bacterie* Case::Getptr() const{
return ptr;
}
int Case::Getx()const{
return x;
}
int Case::Gety()const {
return y;
}
void Case::SetA(float a){
A=a;
}
void Case::SetB(float b){
B=b;
}
void Case::SetC(float c){
C=c;
}
void Case::Setptr(Bacterie* cible){
ptr=cible;
}
void Case::Describe(){
cout<<"Cette case contient les concentrations A,B et C suivante: "<<A<<", "<<B<<" et "<<C<<"."<<endl;
cout<<"Elle contient une bacterie. "<<endl;
ptr->Describe();
}
void Case::makeDie(){
if(ptr->Death()==0){
A+=ptr->GetA_int();
B+=ptr->GetB_int();
C+=ptr->GetC_int();
delete(ptr);
ptr=nullptr;
}
}
void Case::makeMute(){
if(ptr->Mute()==0){
if(ptr->Gettype()=='A'){
Lignee_B* newcell=new Lignee_B(ptr->GetA_int(), ptr->GetB_int(), ptr->GetC_int());
delete(ptr);
ptr=newcell;
}
else{
Lignee_A* newcell=new Lignee_A(ptr->GetA_int(), ptr->GetB_int(), ptr->GetC_int());
delete(ptr);
ptr=newcell;
}
}
}
void Case::makeEat(float h){
if(ptr->Gettype()=='A'){
A=ptr->absorb(A,h);
}
else{
B=ptr->absorb(B,h);
}
}
void Case::add(float a, float b, float c){
A+=a;
B+=b;
C+=c;
}