ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/app/topo_optis/src/main.cpp
Revision: 283
Committed: Tue Sep 13 21:11:20 2011 UTC (13 years, 11 months ago) by francois
File size: 2865 byte(s)
Log Message:
structure de l'écriture

File Contents

# User Rev Content
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    
65     int changeseuil=0;
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     if (strcmp(argv[i],"-changeseuil")==0) changeseuil=1;
74     }
75     if (changeseuil==1)
76     {
77     MGOPT_SIMP opt;
78     opt.active_affichage(affiche);
79     opt.adapte_resultat(nomfichierd,nomfichierparam);
80     return 0 ;
81     }
82     if (nomfichierout[0]==0)
83     strcpy(nomfichierout,nomfichierd);
84     if (nomfichierd[0]==0)
85     {
86     MGOPT_SIMP opt;
87     opt.active_affichage(affiche);
88     opt.optimise((char*)"params.txt");
89     }
90     else if (nomfichiernd[0]!=0)
91     {
92     MGOPT_SIMP opt;
93     opt.active_affichage(affiche);
94     if (nomfichierparam[0]==0)
95     opt.optimise(nomfichierd,nomfichiernd,nomfichierout);
96     else
97     opt.optimise(nomfichierd,nomfichiernd,nomfichierout,nomfichierparam);
98     }
99    
100    
101     return 0;
102     }
103    
104    
105    
106     #pragma package(smart_init)