1 |
francois |
283 |
//------------------------------------------------------------ |
2 |
|
|
//------------------------------------------------------------ |
3 |
|
|
// MAGiC |
4 |
|
|
// Jean Christophe Cuilli�re et Vincent FRANCOIS |
5 |
|
|
// D�partement de G�nie M�canique - UQTR |
6 |
|
|
//------------------------------------------------------------ |
7 |
|
|
// Le projet MAGIC est un projet de recherche du d�partement |
8 |
|
|
// de g�nie m�canique de l'Universit� du Qu�bec � |
9 |
|
|
// Trois Rivi�res |
10 |
|
|
// Les librairies ne peuvent �tre utilis�es sans l'accord |
11 |
|
|
// des auteurs (contact : francois@uqtr.ca) |
12 |
|
|
//------------------------------------------------------------ |
13 |
|
|
//------------------------------------------------------------ |
14 |
|
|
// |
15 |
|
|
// main.cpp |
16 |
|
|
// |
17 |
|
|
//------------------------------------------------------------ |
18 |
|
|
//------------------------------------------------------------ |
19 |
|
|
// COPYRIGHT 2000 |
20 |
|
|
// Version du 02/03/2006 � 11H25 |
21 |
|
|
//------------------------------------------------------------ |
22 |
|
|
//------------------------------------------------------------ |
23 |
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
#include "gestionversion.h" |
28 |
|
|
#ifdef WINDOWS_VERSION |
29 |
|
|
#include "fenetre.h" |
30 |
|
|
#endif |
31 |
|
|
|
32 |
|
|
#pragma hdrstop |
33 |
|
|
#include "mg_file.h" |
34 |
|
|
#include "mgopt_simp.h" |
35 |
|
|
#include <string.h> |
36 |
|
|
//--------------------------------------------------------------------------- |
37 |
|
|
|
38 |
|
|
void affiche(char* message) |
39 |
|
|
{ |
40 |
|
|
#ifdef WINDOWS_VERSION |
41 |
|
|
Form1->Memo1->Lines->Add(message); |
42 |
|
|
#else |
43 |
|
|
std::cout << message << std::endl; |
44 |
|
|
#endif |
45 |
|
|
} |
46 |
|
|
|
47 |
|
|
|
48 |
|
|
|
49 |
|
|
#ifdef WINDOWS_VERSION |
50 |
|
|
int amain(int argc,char **argv) |
51 |
|
|
#else |
52 |
|
|
int main(int argc,char **argv) |
53 |
|
|
#endif |
54 |
|
|
{ |
55 |
|
|
|
56 |
|
|
|
57 |
|
|
char nomfichierd[500]; |
58 |
|
|
char nomfichierout[500]; |
59 |
|
|
char nomfichiernd[500]; |
60 |
|
|
char nomfichierparam[500]; |
61 |
|
|
nomfichierd[0]=0; |
62 |
|
|
nomfichierout[0]=0; |
63 |
|
|
nomfichierparam[0]=0; |
64 |
francois |
375 |
bool versioncompilee=false; |
65 |
francois |
283 |
int changeseuil=0; |
66 |
|
|
|
67 |
|
|
for (int i=0;i<argc;i++) |
68 |
|
|
{ |
69 |
francois |
375 |
if (strcmp(argv[i],"-version")==0) versioncompilee=true; |
70 |
|
|
if (strcmp(argv[i],"-design")==0) strcpy(nomfichierd,argv[i+1]); |
71 |
francois |
283 |
if (strcmp(argv[i],"-nondesign")==0) strcpy(nomfichiernd,argv[i+1]); |
72 |
|
|
if (strcmp(argv[i],"-out")==0) strcpy(nomfichierout,argv[i+1]); |
73 |
|
|
if (strcmp(argv[i],"-param")==0) strcpy(nomfichierparam,argv[i+1]); |
74 |
|
|
if (strcmp(argv[i],"-changeseuil")==0) changeseuil=1; |
75 |
|
|
} |
76 |
francois |
375 |
affiche((char*)"Optimisation de topologie"); |
77 |
|
|
if (versioncompilee) |
78 |
|
|
{ |
79 |
|
|
GESTIONVERSION v; |
80 |
|
|
char version[500]; |
81 |
|
|
v.print(version); |
82 |
|
|
affiche(version); |
83 |
|
|
} |
84 |
francois |
283 |
if (changeseuil==1) |
85 |
|
|
{ |
86 |
|
|
MGOPT_SIMP opt; |
87 |
|
|
opt.active_affichage(affiche); |
88 |
|
|
opt.adapte_resultat(nomfichierd,nomfichierparam); |
89 |
|
|
return 0 ; |
90 |
|
|
} |
91 |
|
|
if (nomfichierout[0]==0) |
92 |
|
|
strcpy(nomfichierout,nomfichierd); |
93 |
|
|
if (nomfichierd[0]==0) |
94 |
|
|
{ |
95 |
|
|
MGOPT_SIMP opt; |
96 |
|
|
opt.active_affichage(affiche); |
97 |
|
|
opt.optimise((char*)"params.txt"); |
98 |
|
|
} |
99 |
|
|
else if (nomfichiernd[0]!=0) |
100 |
|
|
{ |
101 |
|
|
MGOPT_SIMP opt; |
102 |
|
|
opt.active_affichage(affiche); |
103 |
|
|
if (nomfichierparam[0]==0) |
104 |
|
|
opt.optimise(nomfichierd,nomfichiernd,nomfichierout); |
105 |
|
|
else |
106 |
|
|
opt.optimise(nomfichierd,nomfichiernd,nomfichierout,nomfichierparam); |
107 |
|
|
} |
108 |
|
|
|
109 |
|
|
|
110 |
|
|
return 0; |
111 |
|
|
} |
112 |
|
|
|
113 |
|
|
|
114 |
|
|
|
115 |
|
|
#pragma package(smart_init) |