forked from tyassine/CooCoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomplexe.cpp
264 lines (222 loc) · 7.83 KB
/
complexe.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#include "complexe.h"
#include "entier.h"
#include "reel.h"
#include "rationnel.h"
#include "constanteexp.h"
#include "fabriquedonnee.h"
#include <typeinfo>
Complexe::Complexe(const Donnee* donneeDepart, int typeSouhaite){
if (typeid(*donneeDepart)==typeid(Complexe))
{
const Complexe * tmp=static_cast<const Complexe*>(donneeDepart);
pRe = static_cast<Constante*>(FabriqueDonnee::getInstance()->creerDonnee(tmp->getPRe(),typeSouhaite,0));
pIm = static_cast<Constante*>(FabriqueDonnee::getInstance()->creerDonnee(tmp->getPIm(),typeSouhaite,0));
}else{
pRe = static_cast<Constante*>(FabriqueDonnee::getInstance()->creerDonnee(donneeDepart,typeSouhaite,0));
Entier ent(0);
pIm = static_cast<Constante*>(FabriqueDonnee::getInstance()->creerDonnee(&ent,typeSouhaite,0));
}
}
Complexe::Complexe(const Complexe* aComplexe)
{
// On va faire une copie des objets vers lesquels pointent pRe et pIm.
// Comme on ne sait pas de quel type ils sont, on les convertit en QString et on les passe à la factory.
FabriqueDonnee* factory = FabriqueDonnee::getInstance();
pRe = static_cast<Constante*>(factory->creerDonnee(aComplexe->getPRe()->toQString()));
pIm = static_cast<Constante*>(factory->creerDonnee(aComplexe->getPIm()->toQString()));
}
Complexe::Complexe(const Entier* aEntier)
{
pRe = new Entier(aEntier->getValeur()); // Pour en faire une copie
pIm = new Entier(0);
}
Complexe::Complexe(const Reel* aReel)
{
pRe = new Reel(aReel->getValeur()); // Pour en faire une copie
pIm = new Entier(0);
}
Complexe::Complexe(const Rationnel *aRationnel)
{
pRe = new Rationnel(aRationnel);
pIm = new Entier(0); // Ou alors faire un 0/1 si on tient vraiment à avoir un Rationnel aussi en partie imaginaire...
}
Complexe::Complexe(const QString &s)
{
QString copie(s);
FabriqueDonnee* factory = FabriqueDonnee::getInstance();
pRe=static_cast<Constante*>(factory->creerDonnee((copie.section('$', 0,0))));
pIm=static_cast<Constante*>(factory->creerDonnee((copie.section('$', 1,1))));
}
Donnee* Complexe::conj(){
Constante* pIm_sign;
pIm_sign=static_cast<Constante*>(pIm->sign());
Complexe *res =new Complexe(pRe,pIm_sign);
return res;
}
Donnee* Complexe::operator +(Donnee * t){
if (typeid(*t)==typeid(Complexe)){
Complexe *tmp=static_cast<Complexe*>(t);
if ((*pIm + (tmp->getPIm()))->toQString()=="0")
return *pRe + tmp->getPRe();
Complexe *res=new Complexe;
res->pRe= static_cast<Constante*> (*pRe + tmp->getPRe());
res->pIm= static_cast<Constante*>(*pIm + tmp->getPIm());
return res;
}
if (typeid(*t)==typeid(Entier)){
Entier *tmp=static_cast<Entier*>(t);
Donnee * res;
res=*tmp+this;
return res;
}
if (typeid(*t)==typeid(Reel)){
Reel *tmp=static_cast<Reel*>(t);
Donnee * res;
res=*tmp+this;
return res;
}
if (typeid(*t)==typeid(Rationnel)){
Rationnel *tmp=static_cast<Rationnel*>(t);
Donnee * res;
res=*tmp+this;
return res;
}
if (typeid(*t)==typeid(ConstanteExp)){
ConstanteExp *tmp=static_cast<ConstanteExp*>(t);
QString nouv;
nouv = "'" + toQString() + " "+ tmp->toQString().remove("'") + " + '";
return new ConstanteExp(nouv);
}
throw ExceptionCooCoo("erreur sur opérateur + avec un complexe");
}
Donnee* Complexe::operator /(Donnee * t)
{
if (typeid(*t)==typeid(Complexe)){
Complexe *tmp=static_cast<Complexe*>(t);
Donnee *res;
res= *(*this * (tmp->conj())) / (*tmp * (tmp->conj())) ;
return res;
}
if (typeid(*t)==typeid(Entier)){
Constante *tmp=static_cast<Entier*>(t);
if (tmp)
{
Constante* pre= static_cast<Constante*> (*pRe / tmp);
Constante* pim= static_cast<Constante*>(*pIm / tmp);
Complexe *res=new Complexe(pre,pim);
return res;
}
}
if (typeid(*t)==typeid(Reel)){
Constante *tmp=static_cast<Reel*>(t);
if (tmp)
{
Constante* pre= static_cast<Constante*> (*pRe / tmp);
Constante* pim= static_cast<Constante*>(*pIm / tmp);
Complexe *res=new Complexe(pre,pim);
return res;
}
}
if (typeid(*t)==typeid(Rationnel)){
Constante *tmp=static_cast<Rationnel*>(t);
if (tmp)
{
Constante* pre= static_cast<Constante*> (*pRe / tmp);
Constante* pim= static_cast<Constante*>(*pIm / tmp);
Complexe *res=new Complexe(pre,pim);
return res;
}
}
if (typeid(*t)==typeid(ConstanteExp)){
ConstanteExp *tmp=static_cast<ConstanteExp*>(t);
QString nouv;
nouv = "'" + toQString() + " "+ tmp->toQString().remove("'") + " / '";
return new ConstanteExp(nouv);
}
throw ExceptionCooCoo("erreur sur opérateur / avec un complexe");
}
Donnee* Complexe::operator*(Donnee* t){
if (typeid(*t)==typeid(Complexe)){
Complexe *tmp=static_cast<Complexe*>(t);
if ((*(*pRe * tmp->getPIm())+(*pIm * tmp->getPRe()))->toQString()=="0")
return FabriqueDonnee::getInstance()->creerDonnee((*(*pRe * tmp->getPRe())-(*pIm * tmp->getPIm()))->toQString());
Constante* pre= static_cast<Constante*> (*(*pRe * tmp->getPRe())-(*pIm * tmp->getPIm()));
Constante* pim= static_cast<Constante*>(*(*pRe * tmp->getPIm())+(*pIm *tmp->getPRe()));
Complexe *res=new Complexe(pre,pim);
return res;
}
if (typeid(*t)==typeid(Entier)){
Entier *tmp=static_cast<Entier*>(t);
Complexe cur(tmp);
Donnee* res;
res=cur*(this);
return res;
}
if (typeid(*t)==typeid(Reel)){
Reel *tmp=static_cast<Reel*>(t);
Complexe cur(tmp);
Donnee * res;
res=cur*(this);
return res;
}
if (typeid(*t)==typeid(Rationnel)){
Rationnel *tmp=static_cast<Rationnel*>(t);
Complexe cur(tmp);
Donnee * res;
res=cur*(this);
return res;
}
if (typeid(*t)==typeid(ConstanteExp)){
ConstanteExp *tmp=static_cast<ConstanteExp*>(t);
QString nouv;
nouv = "'" + toQString() + " "+ tmp->toQString().remove("'") + " * '";
return new ConstanteExp(nouv);
}
throw ExceptionCooCoo("erreur sur opérateur * avec un complexe");
}
Donnee* Complexe::operator-(Donnee* t){
if (typeid(*t)==typeid(Complexe)){
Complexe *tmp=static_cast<Complexe*>(t);
Constante* pre= static_cast<Constante*> (*pRe - tmp->getPRe());
Constante* pim= static_cast<Constante*>(*pIm - tmp->getPIm());
Complexe *res=new Complexe(pre,pim);
return res;
}
if (typeid(*t)==typeid(Entier)){
Entier *tmp=static_cast<Entier*>(t);
Complexe *cur=new Complexe(tmp);
Donnee * res;
res=*this-cur;
delete cur;
return res;
}
if (typeid(*t)==typeid(Reel)){
Reel *tmp=static_cast<Reel*>(t);
Complexe *cur=new Complexe(tmp);
Donnee * res;
res=*this-cur;
delete cur;
return res;
}
if (typeid(*t)==typeid(Rationnel)){
Rationnel *tmp=static_cast<Rationnel*>(t);
Complexe *cur=new Complexe(tmp);
Donnee * res;
res=*this-cur;
delete cur;
return res;
}
if (typeid(*t)==typeid(ConstanteExp)){
ConstanteExp *tmp=static_cast<ConstanteExp*>(t);
QString nouv;
nouv = "'" + toQString() + " "+ tmp->toQString().remove("'") + " - '";
return new ConstanteExp(nouv);
}
throw ExceptionCooCoo("erreur sur opérateur - avec un complexe");
}
Donnee* Complexe::mySqr()
{
}
Donnee* Complexe::myCube()
{
}