source: GTP/trunk/Lib/Vis/Preprocessing/src/main.cpp @ 2017

Revision 2017, 9.1 KB checked in by mattausch, 17 years ago (diff)

changed to static cast

Line 
1/*#ifdef GTP_INTERNAL
2#ifndef USE_QT
3#define USE_QT 1
4#else
5#define USE_QT 0
6#endif
7#endif
8*/
9
10#define USE_THREADS 0
11
12#ifdef UNICODE
13#undef UNICODE
14#endif
15
16#include <windows.h>
17#include <stdio.h>
18#include <crtdbg.h>
19
20#include "PreprocessorFactory.h"
21#include "Parser.h"
22#include "Environment.h"
23#include "MeshKdTree.h"
24#include "Preprocessor.h"
25#include "common.h"
26
27#include "PreprocessorThread.h"
28#include "ObjExporter.h"
29#include "SceneGraph.h"
30#include "GlobalLinesRenderer.h"
31
32#include "ViewCellsManager.h"
33
34#ifdef USE_QT 
35        #include "QtPreprocessorThread.h"
36        #include "QtGlViewer.h"
37        #include "QtGlRenderer.h"
38#else
39        #if USE_THREADS
40                #include "BoostPreprocessorThread.h"
41        #endif
42#endif
43
44#include "ResourceManager.h"
45#include "GlRenderer.h"
46
47
48#define USE_EXE_PATH false
49
50
51using namespace GtpVisibilityPreprocessor;
52
53//Preprocessor *preprocessor = NULL;
54GlRendererWidget *rendererWidget = NULL;
55//GlobalLinesRenderer *globalLinesRenderer = NULL;
56
57
58// DLL function signature
59typedef GlRendererWidget *(*importFunction)(Preprocessor *);
60
61
62
63void Cleanup()
64{
65        DEL_PTR(rendererWidget);
66        DEL_PTR(preprocessor);
67
68        Environment::DelSingleton();
69        MeshManager::DelSingleton();
70        MaterialManager::DelSingleton();
71}
72
73
74static string ReplaceSuffix(string filename, string a, string b)
75{
76        string result = filename;
77
78        int pos = (int)filename.rfind(a, (int)filename.size() - 1);
79        if (pos == filename.size() - a.size()) {
80                result.replace(pos, a.size(), b);
81        }
82        return result;
83}
84
85
86static int SplitFilenames(const string str, vector<string> &filenames)
87{
88        int pos = 0;
89
90        while(1) {
91                int npos = (int)str.find(';', pos);
92               
93                if (npos < 0 || npos - pos < 1)
94                        break;
95                filenames.push_back(string(str, pos, npos - pos));
96                pos = npos + 1;
97        }
98       
99        filenames.push_back(string(str, pos, str.size() - pos));
100        return (int)filenames.size();
101}
102
103
104static string GetInternFilename(const string &filename, const string newSuffix)
105{
106        vector<string> filenames;
107        const int files = SplitFilenames(filename, filenames);
108
109        vector<string>::const_iterator sit, sit_end = filenames.end();
110        string kdFilename;
111
112        int i = 0;
113        for (sit = filenames.begin(); sit != sit_end; ++ sit, ++ i)
114        {
115                string currentFile = *sit;
116                string strippedFilename;
117
118                if (i == 0)
119                {       
120                        strippedFilename = currentFile;
121                }
122                else
123                {
124                        char *str = StripPath(currentFile.c_str());
125                        strippedFilename = string(str);
126
127                        delete [] str;
128                }
129               
130                string suffix("_");
131
132                if (i == (int)filenames.size() - 1)
133                {
134                        suffix = newSuffix;
135                }
136
137                if (strstr(strippedFilename.c_str(), ".x3d"))
138                {
139                        kdFilename += ReplaceSuffix(strippedFilename, ".x3d", suffix);
140                }
141        else if (strstr(strippedFilename.c_str(), ".dat"))
142                {
143                        kdFilename += ReplaceSuffix(strippedFilename, ".dat", suffix);
144                }
145                else if (strstr(strippedFilename.c_str(), ".obj"))
146                {
147                        kdFilename += ReplaceSuffix(strippedFilename, ".obj", suffix);
148                }
149                else
150                {
151                        cerr << "Error: Currently unsupported format for kd, filename " << currentFile << endl;
152                }
153        }
154
155        //cout << "kdfilename: " << kdFilename << endl;
156        return kdFilename;
157}
158
159
160int
161main(int argc, char **argv)
162{
163        //Now just call this function at the start of your program and if you're
164        //compiling in debug mode (F5), any leaks will be displayed in the Output
165        //window when the program shuts down. If you're not in debug mode this will
166        //be ignored. Use it as you will!
167        //note: from GDNet Direct [3.8.04 - 3.14.04] void detectMemoryLeaks() {
168#if 1
169  _CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
170  _CrtSetReportMode(_CRT_ASSERT,_CRTDBG_MODE_FILE);
171  _CrtSetReportFile(_CRT_ASSERT,_CRTDBG_FILE_STDERR);
172#endif
173
174        int returnCode = 0;
175
176        InitTiming();
177
178        Debug.open("debug.log");
179 
180        Environment::GetSingleton()->Parse(argc, argv, USE_EXE_PATH);
181        MeshKdTree::ParseEnvironment();
182
183        char buff[128];
184        Environment::GetSingleton()->GetStringValue("Preprocessor.type", buff);
185        string preprocessorType(buff);
186
187        if (!(preprocessor = PreprocessorFactory::CreatePreprocessor(preprocessorType)))
188        {
189                Environment::DelSingleton();
190                cerr << "Unknown preprocessor type" << endl;
191                exit(1);
192        }
193
194        Environment::GetSingleton()->GetStringValue("Scene.filename", buff);
195        string filename(buff);
196       
197        const string externKdTree = ReplaceSuffix(filename, ".obj", ".kdf");
198        const string internKdTree = GetInternFilename(filename, preprocessor->mLoadMeshes ? ".kdm" : ".kdt");
199
200        if (preprocessor->InitRayCast(externKdTree, internKdTree))
201        {
202                cout << "ray casting initialized!" << endl;
203        }
204        else
205        {
206                cout << "ray casting initialization failed!" << endl;
207                Cleanup();
208                exit(1);
209        }
210
211
212        /////////////
213        //-- load scene
214
215        if (!preprocessor->LoadScene(filename))
216        {
217                cout << "loading file " << filename << " failed" << endl;
218                Cleanup();
219                exit(1);
220        }
221       
222        ////////////
223        //-- initialize external ray caster
224
225        if (preprocessor->LoadInternKdTree(internKdTree))
226        {
227                cout << "intern kd tree loaded!" << endl;
228        }
229        else
230        {
231                cout << "loading intern kd tree failed!" << endl;
232                Cleanup();
233                exit(1);
234        }
235
236        // export objects as obj
237        if (preprocessor->mExportObj)
238        {
239                if (strstr(filename.c_str(), ".obj"))
240                {
241                        cerr << "already in obj format" << endl;
242                        if (0)  preprocessor->ExportObj("test.obj", preprocessor->mObjects);
243                }
244                else
245                {
246                        const string objname = GetInternFilename(filename, ".obj");
247
248                        cout << "exporting scene to " << objname << endl;
249                        bool success = preprocessor->ExportObj(objname, preprocessor->mObjects);
250
251                        if (success)
252                        {
253                                cout << "finished exporting obj" << endl;
254                        }
255                        else
256                        {
257                                cerr << "error exporting " << objname << endl;
258                        }
259                }
260        }
261       
262        // parse view cells related options
263        if (!preprocessor->PrepareViewCells())
264        {
265                cerr << "error: view cells could not be loaded" << endl;
266
267                Cleanup();
268                exit(1);
269        }
270
271        const string viewCellsFile = ReplaceSuffix(filename, ".obj", ".vc");
272        const int numViewCells = 2;
273        const int numViewPoints = 2;
274
275        bool useHwGlobalLines;
276        Environment::GetSingleton()->GetBoolValue("Preprocessor.useHwGlobalLines",
277                                                                                           useHwGlobalLines);
278
279        if (useHwGlobalLines)
280                preprocessor->PrepareHwGlobalLines();
281
282        // create a preprocessor thread (note: capsulates calls to boost fuctions!)
283        PreprocessorThread *pt = NULL;
284
285#ifdef TRY_GLOBAL_LINES
286       
287        preprocessor->PrepareHwGlobalLines();
288        globalLinesRenderer->Run();
289
290#else
291
292#ifdef USE_QT
293       
294        // create a qt application first (must be created before any opengl widget ...)
295        QApplication *app = new QApplication(argc, NULL);
296
297        pt = new QtPreprocessorThread(preprocessor);
298
299#else
300
301        //#if USE_THREADS
302        //      pt = new BoostPreprocessorThread(preprocessor);
303        //#else
304                // use a dummy thread
305                pt = new DummyPreprocessorThread(preprocessor);
306        //#endif
307#endif
308
309        preprocessor->SetThread(pt);
310
311        bool guiSupported = false;
312       
313        if (preprocessor->mUseGlRenderer || preprocessor->mUseGlDebugger)
314        {
315#ifdef USE_QT
316                cout << "using gl widget" << endl;
317                // create and run the preprocessor application in a parallel thread
318               
319                pt->InitThread();
320                pt->RunThread();
321
322                // display the render widget
323                if (!rendererWidget)
324                {
325                        if (!QGLFormat::hasOpenGL() || !QGLPixelBuffer::hasOpenGLPbuffers()) {
326                                QMessageBox::information(0, "OpenGL pbuffers",
327                                        "This system does not support OpenGL/pbuffers.",
328                                        QMessageBox::Ok);
329                                return NULL;
330                        }
331
332                        rendererWidget =
333                                new QtGlRendererWidget(preprocessor->mSceneGraph,
334                                                                           preprocessor->mViewCellsManager,
335                                                                           preprocessor->mKdTree);
336
337                        rendererWidget->Show();
338
339                        QtGlViewer *viewer =
340                                new QtGlViewer(NULL, (QtGlRendererWidget *)rendererWidget);
341
342                        viewer->show();
343                        guiSupported = true;
344                }
345
346                int frames;
347                Environment::GetSingleton()->GetIntValue("Preprocessor.pvsRenderErrorSamples", frames);
348               
349                if (frames)
350                {
351                        // NOTE: render texture should be power of 2 and square
352                        // renderer must be initialised
353                        // $$matt
354                        preprocessor->renderer =
355                                new QtGlRendererBuffer(1024, 1024,
356                                                                           preprocessor->mSceneGraph,
357                                                                           preprocessor->mViewCellsManager,
358                                                                           preprocessor->mKdTree);
359                }
360
361        /*      vector<ViewCellPoints *> myViewCells;
362
363                preprocessor->mViewCellsManager->GenerateRandomViewCells(myViewCells, numViewCells, numViewPoints);
364                cout << "exporting random view cells" << endl;
365                preprocessor->mViewCellsManager->ExportRandomViewCells(viewCellsFile, myViewCells);
366
367                //preprocessor->mViewCellsManager->ImportRandomViewCells(viewCellsFile, myViewCells);
368                CLEAR_CONTAINER(myViewCells);
369*/
370                qApp->exec();
371#endif
372        }
373
374        // no gui available
375        if (!guiSupported)
376        {
377                if (preprocessor->mUseGlRenderer || preprocessor->mUseGlDebugger)
378                        cout << "warning: gui not supported!" << endl;
379               
380                preprocessor->mUseGlRenderer = false;
381                preprocessor->mUseGlDebugger = false;
382        }
383
384        if (!(preprocessor->mUseGlRenderer || preprocessor->mUseGlDebugger))
385        {
386                cout << "executing main thread" << endl;
387                // just call the mail method -> will be executed in the main thread
388                pt->Main();
389        }       
390#endif
391
392        // release memory
393        Cleanup();
394       
395        delete pt;
396
397        return returnCode;
398}
399
Note: See TracBrowser for help on using the repository browser.