1 |
francois |
239 |
//------------------------------------------------------------
|
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 |
|
|
|
65 |
|
|
|
66 |
|
|
|
67 |
|
|
for (int i=0;i<argc;i++)
|
68 |
|
|
{
|
69 |
|
|
if (strcmp(argv[i],"-design")==0) strcpy(nomfichierd,argv[i+1]);
|
70 |
|
|
if (strcmp(argv[i],"-nondesign")==0) strcpy(nomfichiernd,argv[i+1]);
|
71 |
|
|
if (strcmp(argv[i],"-out")==0) strcpy(nomfichierout,argv[i+1]);
|
72 |
|
|
if (strcmp(argv[i],"-param")==0) strcpy(nomfichierparam,argv[i+1]);
|
73 |
|
|
}
|
74 |
|
|
if (nomfichierout[0]==0)
|
75 |
|
|
strcpy(nomfichierout,nomfichierd);
|
76 |
|
|
if (nomfichierd[0]==0)
|
77 |
|
|
{
|
78 |
|
|
MGOPT_SIMP opt;
|
79 |
|
|
opt.active_affichage(affiche);
|
80 |
|
|
opt.optimise("params.txt");
|
81 |
|
|
}
|
82 |
|
|
else if (nomfichiernd[0]!=0)
|
83 |
|
|
{
|
84 |
|
|
MGOPT_SIMP opt;
|
85 |
|
|
opt.active_affichage(affiche);
|
86 |
|
|
if (nomfichierparam[0]==0)
|
87 |
|
|
opt.optimise(nomfichierd,nomfichiernd,nomfichierout);
|
88 |
|
|
else
|
89 |
|
|
opt.optimise(nomfichierd,nomfichiernd,nomfichierout,nomfichierparam);
|
90 |
|
|
}
|
91 |
|
|
|
92 |
|
|
|
93 |
|
|
return 0;
|
94 |
|
|
}
|
95 |
|
|
|
96 |
|
|
|
97 |
|
|
|
98 |
|
|
#pragma package(smart_init)
|