[1926] | 1 | /*#ifdef GTP_INTERNAL
|
---|
| 2 | #ifndef USE_QT
|
---|
[1579] | 3 | #define USE_QT 1
|
---|
[1501] | 4 | #else
|
---|
[1579] | 5 | #define USE_QT 0
|
---|
[1272] | 6 | #endif
|
---|
[1766] | 7 | #endif
|
---|
[1926] | 8 | */
|
---|
[1272] | 9 |
|
---|
[1926] | 10 | #define USE_THREADS 0
|
---|
[1457] | 11 |
|
---|
[1199] | 12 | #ifdef UNICODE
|
---|
| 13 | #undef UNICODE
|
---|
| 14 | #endif
|
---|
| 15 |
|
---|
[1151] | 16 | #include <windows.h>
|
---|
| 17 | #include <stdio.h>
|
---|
| 18 | #include <crtdbg.h>
|
---|
| 19 |
|
---|
[1486] | 20 | #include "PreprocessorFactory.h"
|
---|
[162] | 21 | #include "Parser.h"
|
---|
| 22 | #include "Environment.h"
|
---|
[170] | 23 | #include "MeshKdTree.h"
|
---|
[1486] | 24 | #include "Preprocessor.h"
|
---|
[1634] | 25 | #include "common.h"
|
---|
[1272] | 26 |
|
---|
[1457] | 27 | #include "PreprocessorThread.h"
|
---|
[1694] | 28 | #include "ObjExporter.h"
|
---|
| 29 | #include "SceneGraph.h"
|
---|
[1949] | 30 | #include "GlobalLinesRenderer.h"
|
---|
[1579] | 31 |
|
---|
[1926] | 32 | #include "ViewCellsManager.h"
|
---|
[1694] | 33 |
|
---|
[1926] | 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
|
---|
[1272] | 42 | #endif
|
---|
| 43 |
|
---|
[1001] | 44 | #include "ResourceManager.h"
|
---|
[492] | 45 | #include "GlRenderer.h"
|
---|
| 46 |
|
---|
[1272] | 47 |
|
---|
[162] | 48 | #define USE_EXE_PATH false
|
---|
| 49 |
|
---|
[372] | 50 |
|
---|
[863] | 51 | using namespace GtpVisibilityPreprocessor;
|
---|
[492] | 52 |
|
---|
[1888] | 53 | //Preprocessor *preprocessor = NULL;
|
---|
[1151] | 54 | GlRendererWidget *rendererWidget = NULL;
|
---|
[1940] | 55 | //GlobalLinesRenderer *globalLinesRenderer = NULL;
|
---|
[1145] | 56 |
|
---|
[1940] | 57 |
|
---|
[1151] | 58 | // DLL function signature
|
---|
[1153] | 59 | typedef GlRendererWidget *(*importFunction)(Preprocessor *);
|
---|
[1145] | 60 |
|
---|
[1241] | 61 |
|
---|
[1199] | 62 |
|
---|
[1145] | 63 | void Cleanup()
|
---|
| 64 | {
|
---|
[1151] | 65 | DEL_PTR(rendererWidget);
|
---|
[1145] | 66 | DEL_PTR(preprocessor);
|
---|
| 67 |
|
---|
| 68 | Environment::DelSingleton();
|
---|
| 69 | MeshManager::DelSingleton();
|
---|
| 70 | MaterialManager::DelSingleton();
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 |
|
---|
[1626] | 74 | static string ReplaceSuffix(string filename, string a, string b)
|
---|
| 75 | {
|
---|
| 76 | string result = filename;
|
---|
[1145] | 77 |
|
---|
[1626] | 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 | }
|
---|
[1145] | 84 |
|
---|
[1626] | 85 |
|
---|
[1634] | 86 | static int SplitFilenames(const string str, vector<string> &filenames)
|
---|
[1272] | 87 | {
|
---|
[1634] | 88 | int pos = 0;
|
---|
[1633] | 89 |
|
---|
[1634] | 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;
|
---|
[1633] | 97 | }
|
---|
[1634] | 98 |
|
---|
| 99 | filenames.push_back(string(str, pos, str.size() - pos));
|
---|
| 100 | return (int)filenames.size();
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 |
|
---|
[1695] | 104 | static string GetInternFilename(const string &filename, const string newSuffix)
|
---|
[1634] | 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)
|
---|
[1633] | 114 | {
|
---|
[1634] | 115 | string currentFile = *sit;
|
---|
| 116 | string strippedFilename;
|
---|
[1633] | 117 |
|
---|
[1634] | 118 | if (i == 0)
|
---|
| 119 | {
|
---|
| 120 | strippedFilename = currentFile;
|
---|
| 121 | }
|
---|
| 122 | else
|
---|
| 123 | {
|
---|
[1640] | 124 | char *str = StripPath(currentFile.c_str());
|
---|
| 125 | strippedFilename = string(str);
|
---|
| 126 |
|
---|
[1695] | 127 | delete [] str;
|
---|
[1634] | 128 | }
|
---|
| 129 |
|
---|
| 130 | string suffix("_");
|
---|
| 131 |
|
---|
| 132 | if (i == (int)filenames.size() - 1)
|
---|
| 133 | {
|
---|
[1695] | 134 | suffix = newSuffix;
|
---|
[1634] | 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 | {
|
---|
[1658] | 147 | kdFilename += ReplaceSuffix(strippedFilename, ".obj", suffix);
|
---|
[1634] | 148 | }
|
---|
| 149 | else
|
---|
| 150 | {
|
---|
| 151 | cerr << "Error: Currently unsupported format for kd, filename " << currentFile << endl;
|
---|
| 152 | }
|
---|
[1626] | 153 | }
|
---|
[1272] | 154 |
|
---|
[1634] | 155 | //cout << "kdfilename: " << kdFilename << endl;
|
---|
| 156 | return kdFilename;
|
---|
[1272] | 157 | }
|
---|
| 158 |
|
---|
[1926] | 159 |
|
---|
[162] | 160 | int
|
---|
[492] | 161 | main(int argc, char **argv)
|
---|
[997] | 162 | {
|
---|
[1145] | 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() {
|
---|
[1696] | 168 | #if 1
|
---|
[1272] | 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
|
---|
[997] | 173 |
|
---|
[1145] | 174 | int returnCode = 0;
|
---|
[1926] | 175 |
|
---|
[1145] | 176 | InitTiming();
|
---|
[997] | 177 |
|
---|
[1145] | 178 | Debug.open("debug.log");
|
---|
[1199] | 179 |
|
---|
[1145] | 180 | Environment::GetSingleton()->Parse(argc, argv, USE_EXE_PATH);
|
---|
| 181 | MeshKdTree::ParseEnvironment();
|
---|
[1002] | 182 |
|
---|
[1145] | 183 | char buff[128];
|
---|
| 184 | Environment::GetSingleton()->GetStringValue("Preprocessor.type", buff);
|
---|
| 185 | string preprocessorType(buff);
|
---|
| 186 |
|
---|
[1486] | 187 | if (!(preprocessor = PreprocessorFactory::CreatePreprocessor(preprocessorType)))
|
---|
[1328] | 188 | {
|
---|
[1486] | 189 | Environment::DelSingleton();
|
---|
| 190 | cerr << "Unknown preprocessor type" << endl;
|
---|
| 191 | exit(1);
|
---|
[1328] | 192 | }
|
---|
[997] | 193 |
|
---|
[1415] | 194 | /////////////
|
---|
[1145] | 195 | //-- load scene
|
---|
[492] | 196 |
|
---|
[1145] | 197 | Environment::GetSingleton()->GetStringValue("Scene.filename", buff);
|
---|
| 198 | string filename(buff);
|
---|
[1695] | 199 |
|
---|
[1328] | 200 |
|
---|
| 201 | if (!preprocessor->LoadScene(filename))
|
---|
| 202 | {
|
---|
| 203 | cout << "loading file " << filename << " failed" << endl;
|
---|
| 204 | Cleanup();
|
---|
| 205 | exit(1);
|
---|
| 206 | }
|
---|
[1926] | 207 |
|
---|
[1626] | 208 | const string externKdTree = ReplaceSuffix(filename, ".obj", ".kdf");
|
---|
[1695] | 209 | const string internKdTree = GetInternFilename(filename, preprocessor->mLoadMeshes ? ".kdm" : ".kdt");
|
---|
[1418] | 210 |
|
---|
[1697] | 211 | ////////////
|
---|
| 212 | //-- initialize external ray caster
|
---|
[1695] | 213 |
|
---|
[1418] | 214 | if (preprocessor->InitRayCast(externKdTree, internKdTree))
|
---|
[1328] | 215 | {
|
---|
[1926] | 216 | cout << "ray casting initialized!" << endl;
|
---|
[1328] | 217 | }
|
---|
[1221] | 218 | else
|
---|
| 219 | {
|
---|
| 220 | cout << "ray casting initialization failed" << endl;
|
---|
[1328] | 221 | Cleanup();
|
---|
[1221] | 222 | exit(1);
|
---|
| 223 | }
|
---|
[1344] | 224 |
|
---|
[1695] | 225 | // export objects as obj
|
---|
| 226 | if (preprocessor->mExportObj)
|
---|
| 227 | {
|
---|
| 228 | if (strstr(filename.c_str(), ".obj"))
|
---|
| 229 | {
|
---|
| 230 | cerr << "already in obj format" << endl;
|
---|
[1701] | 231 | if (0) preprocessor->ExportObj("test.obj", preprocessor->mObjects);
|
---|
[1695] | 232 | }
|
---|
| 233 | else
|
---|
| 234 | {
|
---|
| 235 | const string objname = GetInternFilename(filename, ".obj");
|
---|
| 236 |
|
---|
[1701] | 237 | cout << "exporting scene to " << objname << endl;
|
---|
[1695] | 238 | bool success = preprocessor->ExportObj(objname, preprocessor->mObjects);
|
---|
| 239 |
|
---|
| 240 | if (success)
|
---|
| 241 | {
|
---|
| 242 | cout << "finished exporting obj" << endl;
|
---|
| 243 | }
|
---|
| 244 | else
|
---|
| 245 | {
|
---|
| 246 | cerr << "error exporting " << objname << endl;
|
---|
| 247 | }
|
---|
| 248 | }
|
---|
| 249 | }
|
---|
[1713] | 250 |
|
---|
[1145] | 251 | // parse view cells related options
|
---|
[1522] | 252 | if (!preprocessor->PrepareViewCells())
|
---|
| 253 | {
|
---|
[1926] | 254 | cerr << "error: view cells could not be loaded" << endl;
|
---|
| 255 |
|
---|
[1522] | 256 | Cleanup();
|
---|
| 257 | exit(1);
|
---|
| 258 | }
|
---|
[1723] | 259 |
|
---|
[1968] | 260 |
|
---|
| 261 | bool useHwGlobalLines;
|
---|
| 262 | Environment::GetSingleton()->GetBoolValue("Preprocessor.useHwGlobalLines",
|
---|
| 263 | useHwGlobalLines);
|
---|
| 264 |
|
---|
| 265 | if (useHwGlobalLines)
|
---|
| 266 | preprocessor->PrepareHwGlobalLines();
|
---|
| 267 |
|
---|
[1239] | 268 | // create a preprocessor thread (note: capsulates calls to boost fuctions!)
|
---|
[1926] | 269 | PreprocessorThread *pt = NULL;
|
---|
[1387] | 270 |
|
---|
[1940] | 271 | #ifdef TRY_GLOBAL_LINES
|
---|
[1968] | 272 |
|
---|
[1969] | 273 | preprocessor->PrepareHwGlobalLines();
|
---|
[1970] | 274 |
|
---|
[1940] | 275 | globalLinesRenderer->Run();
|
---|
| 276 |
|
---|
| 277 | #else
|
---|
| 278 |
|
---|
[1926] | 279 | #ifdef USE_QT
|
---|
| 280 |
|
---|
[1715] | 281 | // create a qt application first (must be created before any opengl widget ...)
|
---|
| 282 | QApplication *app = new QApplication(argc, NULL);
|
---|
[1926] | 283 |
|
---|
[1387] | 284 | pt = new QtPreprocessorThread(preprocessor);
|
---|
[1926] | 285 |
|
---|
[1387] | 286 | #else
|
---|
[1926] | 287 |
|
---|
| 288 | //#if USE_THREADS
|
---|
| 289 | // pt = new BoostPreprocessorThread(preprocessor);
|
---|
| 290 | //#else
|
---|
| 291 | // use a dummy thread
|
---|
| 292 | pt = new DummyPreprocessorThread(preprocessor);
|
---|
| 293 | //#endif
|
---|
[1272] | 294 | #endif
|
---|
[1387] | 295 |
|
---|
[1926] | 296 | preprocessor->SetThread(pt);
|
---|
| 297 |
|
---|
[1248] | 298 | bool guiSupported = false;
|
---|
[1926] | 299 |
|
---|
[1145] | 300 | if (preprocessor->mUseGlRenderer || preprocessor->mUseGlDebugger)
|
---|
[1926] | 301 | {
|
---|
| 302 | #ifdef USE_QT
|
---|
[1241] | 303 | cout << "using gl widget" << endl;
|
---|
[1153] | 304 | // create and run the preprocessor application in a parallel thread
|
---|
[1926] | 305 |
|
---|
[1387] | 306 | pt->InitThread();
|
---|
[1926] | 307 | pt->RunThread();
|
---|
| 308 |
|
---|
[1248] | 309 | // display the render widget
|
---|
[1344] | 310 | if (!rendererWidget)
|
---|
| 311 | {
|
---|
[1926] | 312 | if (!QGLFormat::hasOpenGL() || !QGLPixelBuffer::hasOpenGLPbuffers()) {
|
---|
| 313 | QMessageBox::information(0, "OpenGL pbuffers",
|
---|
| 314 | "This system does not support OpenGL/pbuffers.",
|
---|
| 315 | QMessageBox::Ok);
|
---|
| 316 | return NULL;
|
---|
| 317 | }
|
---|
[1613] | 318 |
|
---|
[1926] | 319 | rendererWidget =
|
---|
| 320 | new QtGlRendererWidget(preprocessor->mSceneGraph,
|
---|
| 321 | preprocessor->mViewCellsManager,
|
---|
| 322 | preprocessor->mKdTree);
|
---|
| 323 |
|
---|
| 324 | rendererWidget->Show();
|
---|
| 325 |
|
---|
| 326 | QtGlViewer *viewer =
|
---|
| 327 | new QtGlViewer(NULL, (QtGlRendererWidget *)rendererWidget);
|
---|
| 328 |
|
---|
| 329 | viewer->show();
|
---|
| 330 | guiSupported = true;
|
---|
[1272] | 331 | }
|
---|
[1344] | 332 |
|
---|
[1785] | 333 | int frames;
|
---|
| 334 | Environment::GetSingleton()->GetIntValue("Preprocessor.pvsRenderErrorSamples", frames);
|
---|
[1926] | 335 |
|
---|
| 336 | if (frames)
|
---|
| 337 | {
|
---|
| 338 | // NOTE: render texture should be power of 2 and square
|
---|
| 339 | // renderer must be initialised
|
---|
| 340 | // $$matt
|
---|
| 341 | preprocessor->renderer =
|
---|
| 342 | new QtGlRendererBuffer(512, 512,
|
---|
| 343 | preprocessor->mSceneGraph,
|
---|
| 344 | preprocessor->mViewCellsManager,
|
---|
| 345 | preprocessor->mKdTree);
|
---|
[1785] | 346 | }
|
---|
[1926] | 347 |
|
---|
[1785] | 348 | qApp->exec();
|
---|
[1387] | 349 | #endif
|
---|
[1926] | 350 | }
|
---|
[1785] | 351 |
|
---|
[1926] | 352 | // no gui available
|
---|
| 353 | if (!guiSupported)
|
---|
| 354 | {
|
---|
[1940] | 355 | if (preprocessor->mUseGlRenderer || preprocessor->mUseGlDebugger)
|
---|
| 356 | cout << "warning: gui not supported!" << endl;
|
---|
[1926] | 357 |
|
---|
| 358 | preprocessor->mUseGlRenderer = false;
|
---|
| 359 | preprocessor->mUseGlDebugger = false;
|
---|
[1005] | 360 | }
|
---|
[1696] | 361 |
|
---|
[1926] | 362 | if (!(preprocessor->mUseGlRenderer || preprocessor->mUseGlDebugger))
|
---|
| 363 | {
|
---|
| 364 | cout << "executing main thread" << endl;
|
---|
[1696] | 365 | // just call the mail method -> will be executed in the main thread
|
---|
| 366 | pt->Main();
|
---|
| 367 | }
|
---|
[1940] | 368 | #endif
|
---|
[1415] | 369 | // release memory
|
---|
[1145] | 370 | Cleanup();
|
---|
[1926] | 371 |
|
---|
[1145] | 372 | return returnCode;
|
---|
[162] | 373 | }
|
---|
| 374 |
|
---|