[508] | 1 | // ---------------------------------------------------------------------------
|
---|
| 2 | // Includes for all the program files to see
|
---|
| 3 | // ---------------------------------------------------------------------------
|
---|
| 4 | #include <string.h>
|
---|
| 5 | #include <stdlib.h>
|
---|
| 6 | #include <iostream>
|
---|
| 7 | #include <xercesc/util/PlatformUtils.hpp>
|
---|
| 8 |
|
---|
| 9 | // ---------------------------------------------------------------------------
|
---|
| 10 | // Includes
|
---|
| 11 | // ---------------------------------------------------------------------------
|
---|
| 12 | #include <xercesc/framework/StdInInputSource.hpp>
|
---|
| 13 | #include <xercesc/parsers/SAXParser.hpp>
|
---|
| 14 | #include <xercesc/util/OutOfMemoryException.hpp>
|
---|
| 15 |
|
---|
| 16 | // ---------------------------------------------------------------------------
|
---|
| 17 | // Includes
|
---|
| 18 | // ---------------------------------------------------------------------------
|
---|
| 19 | #include <xercesc/sax/AttributeList.hpp>
|
---|
| 20 | #include <xercesc/sax/SAXParseException.hpp>
|
---|
| 21 | #include <xercesc/sax/SAXException.hpp>
|
---|
| 22 |
|
---|
| 23 | #include "ViewCellsParser.h"
|
---|
| 24 |
|
---|
| 25 | #include "ViewCellsParserXerces.h"
|
---|
| 26 | #include "Mesh.h"
|
---|
| 27 | #include "VspBspTree.h"
|
---|
| 28 | #include "ViewCellBsp.h"
|
---|
| 29 | #include "ViewCellsManager.h"
|
---|
[971] | 30 | #include "GzFileInputSource.h"
|
---|
[1233] | 31 | #include "OspTree.h"
|
---|
| 32 | #include "VspTree.h"
|
---|
[1201] | 33 | #include "KdTree.h"
|
---|
[1263] | 34 | #include "BvHierarchy.h"
|
---|
[1278] | 35 | #include "HierarchyManager.h"
|
---|
[508] | 36 |
|
---|
[1022] | 37 |
|
---|
[2176] | 38 | using namespace std;
|
---|
| 39 |
|
---|
[863] | 40 | namespace GtpVisibilityPreprocessor {
|
---|
[860] | 41 |
|
---|
| 42 |
|
---|
[508] | 43 | // ---------------------------------------------------------------------------
|
---|
| 44 | // Local data
|
---|
| 45 | //
|
---|
| 46 | // doNamespaces
|
---|
| 47 | // Indicates whether namespace processing should be enabled or not.
|
---|
| 48 | // The default is no, but -n overrides that.
|
---|
| 49 | //
|
---|
| 50 | // doSchema
|
---|
| 51 | // Indicates whether schema processing should be enabled or not.
|
---|
| 52 | // The default is no, but -s overrides that.
|
---|
| 53 | //
|
---|
| 54 | // schemaFullChecking
|
---|
| 55 | // Indicates whether full schema constraint checking should be enabled or not.
|
---|
| 56 | // The default is no, but -s overrides that.
|
---|
| 57 | //
|
---|
| 58 | // valScheme
|
---|
| 59 | // Indicates what validation scheme to use. It defaults to 'auto', but
|
---|
| 60 | // can be set via the -v= command.
|
---|
| 61 | // ---------------------------------------------------------------------------
|
---|
| 62 | static bool doNamespaces = false;
|
---|
| 63 | static bool doSchema = false;
|
---|
| 64 | static bool schemaFullChecking = false;
|
---|
| 65 | static SAXParser::ValSchemes valScheme = SAXParser::Val_Auto;
|
---|
| 66 |
|
---|
[2093] | 67 | // hack for loading bvh nodes
|
---|
[2063] | 68 | #define PVS_HACK 0
|
---|
[2123] | 69 | #define USE_HASH_COMPARE 1
|
---|
[508] | 70 |
|
---|
[2123] | 71 |
|
---|
[1197] | 72 | inline static bool ilt(Intersectable *obj1, Intersectable *obj2)
|
---|
| 73 | {
|
---|
| 74 | return obj1->mId < obj2->mId;
|
---|
| 75 | }
|
---|
[508] | 76 |
|
---|
| 77 |
|
---|
| 78 | // ---------------------------------------------------------------------------
|
---|
| 79 | // StdInParseHandlers: Constructors and Destructor
|
---|
| 80 | // ---------------------------------------------------------------------------
|
---|
[2113] | 81 | ViewCellsParseHandlers::ViewCellsParseHandlers(ObjectContainer &pvsObjects,
|
---|
| 82 | ObjectContainer &preprocessorObjects,
|
---|
| 83 | BoundingBoxConverter *bconverter
|
---|
| 84 | ):
|
---|
[508] | 85 | mElementCount(0)
|
---|
| 86 | , mAttrCount(0)
|
---|
| 87 | , mCharacterCount(0)
|
---|
| 88 | , mSpaceCount(0)
|
---|
[577] | 89 | , mViewCellsManager(NULL)
|
---|
| 90 | , mVspBspTree(NULL)
|
---|
| 91 | , mBspTree(NULL)
|
---|
[651] | 92 | , mViewCellsTree(NULL)
|
---|
[1263] | 93 | , mCurrentState(PARSE_OPTIONS)
|
---|
[651] | 94 | , mCurrentViewCell(NULL)
|
---|
| 95 | , mCurrentBspNode(NULL)
|
---|
[1201] | 96 | , mCurrentVspNode(NULL)
|
---|
[1286] | 97 | , mCurrentOspNode(NULL)
|
---|
| 98 | , mCurrentBvhNode(NULL)
|
---|
[2113] | 99 | , mPvsObjects(pvsObjects)
|
---|
| 100 | , mPreprocessorObjects(preprocessorObjects)
|
---|
[931] | 101 | , mBoundingBoxConverter(bconverter)
|
---|
[1278] | 102 | , mHierarchyManager(NULL)
|
---|
[1623] | 103 | , nViewCells(0)
|
---|
[2005] | 104 | , nObjects(0)
|
---|
[975] | 105 | {
|
---|
[508] | 106 | }
|
---|
| 107 |
|
---|
[575] | 108 |
|
---|
[508] | 109 | ViewCellsParseHandlers::~ViewCellsParseHandlers()
|
---|
| 110 | {
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 |
|
---|
[2123] | 114 | void ViewCellsParseHandlers::CreateHashVector()
|
---|
| 115 | {
|
---|
| 116 | ObjectContainer::const_iterator oit, oit_end = mPvsObjects.end();
|
---|
| 117 |
|
---|
| 118 | for (oit = mPvsObjects.begin(); oit != oit_end; ++ oit)
|
---|
| 119 | {
|
---|
| 120 | mHashPvs[(*oit)->GetId()] = (*oit);
|
---|
| 121 | }
|
---|
| 122 | //Debug<<"\nhsize: " << mHashPvs.size() << endl;
|
---|
| 123 | }
|
---|
| 124 | /*
|
---|
| 125 | void ViewCellsParseHandlers::CreateHashVector2()
|
---|
| 126 | {
|
---|
| 127 | ObjectContainer::const_iterator oit, oit_end = mPvsObjects.end();
|
---|
| 128 |
|
---|
| 129 | for (oit = mPvsObjects.begin(); oit != oit_end; ++ oit)
|
---|
| 130 | {
|
---|
| 131 | mHashPvs[(*oit)->GetId()] = (*oit);
|
---|
| 132 | }
|
---|
| 133 | Debug<<"\nhsize: " << mHashPvs.size() << endl;
|
---|
| 134 | }
|
---|
| 135 | */
|
---|
[508] | 136 | // ---------------------------------------------------------------------------
|
---|
| 137 | // StdInParseHandlers: Implementation of the SAX DocumentHandler interface
|
---|
| 138 | // ---------------------------------------------------------------------------
|
---|
| 139 |
|
---|
| 140 |
|
---|
| 141 | void ViewCellsParseHandlers::endElement(const XMLCh* const name)
|
---|
| 142 | {
|
---|
[1262] | 143 | StrX lname(name);
|
---|
| 144 | string element(lname.LocalForm());
|
---|
[651] | 145 |
|
---|
[1264] | 146 | if (element == "BoundingBoxes")
|
---|
[1286] | 147 | {
|
---|
[1264] | 148 | EndBoundingBoxes();
|
---|
[1286] | 149 | }
|
---|
[2123] | 150 | else if (element == "ViewCells")
|
---|
[1286] | 151 | {
|
---|
[1262] | 152 | EndViewCells();
|
---|
[2123] | 153 | Debug << "view cell hierarchy parsed" << endl;
|
---|
[1286] | 154 | }
|
---|
[2123] | 155 | else if (element == "ObjectSpaceHierarchy")
|
---|
[1262] | 156 | {
|
---|
[1286] | 157 | EndObjectSpaceHierarchy();
|
---|
[2123] | 158 | Debug << "object space hierarchy parsed" << endl;
|
---|
| 159 | mObjectTimer.Exit();
|
---|
[1262] | 160 | }
|
---|
[2123] | 161 | // finished paring, create view cells manager
|
---|
| 162 | else if (element == "VisibilitySolution")
|
---|
[1286] | 163 | {
|
---|
[1264] | 164 | CreateViewCellsManager();
|
---|
[2123] | 165 |
|
---|
| 166 | Debug << "pvs time: " << mPvsTimer.TotalTime() << endl;
|
---|
| 167 | Debug << "object time: " << mObjectTimer.TotalTime() << endl;
|
---|
| 168 | Debug << "box time: " << mBoxTimer.TotalTime() << endl;
|
---|
| 169 |
|
---|
[1286] | 170 | }
|
---|
[2123] | 171 | else if (element == "Interior")
|
---|
[1286] | 172 | {
|
---|
| 173 | switch (mCurrentState)
|
---|
| 174 | {
|
---|
| 175 | case PARSE_VIEWCELLS:
|
---|
| 176 | EndViewCellInterior();
|
---|
| 177 | break;
|
---|
| 178 | case PARSE_OBJECTSPACE_HIERARCHY:
|
---|
| 179 | EndObjectSpaceHierarchyInterior();
|
---|
| 180 | break;
|
---|
| 181 | case PARSE_VIEWSPACE_HIERARCHY:
|
---|
| 182 | EndViewSpaceHierarchyInterior();
|
---|
| 183 | break;
|
---|
| 184 | default:
|
---|
| 185 | break;
|
---|
| 186 | }
|
---|
| 187 | }
|
---|
[508] | 188 | }
|
---|
| 189 |
|
---|
| 190 |
|
---|
[1286] | 191 | void ViewCellsParseHandlers::EndObjectSpaceHierarchy()
|
---|
| 192 | {
|
---|
| 193 | if (mObjectSpaceHierarchyType == OSP)
|
---|
| 194 | {
|
---|
[1287] | 195 | // for a spatial subdivision, it is not necessary to store
|
---|
[1667] | 196 | // the objects with the leaves, they can be classified geometrically
|
---|
| 197 | mHierarchyManager->mOspTree->
|
---|
[2113] | 198 | InsertObjects(mHierarchyManager->mOspTree->mRoot, mPvsObjects);
|
---|
[1286] | 199 | }
|
---|
| 200 | }
|
---|
| 201 |
|
---|
| 202 |
|
---|
| 203 | void ViewCellsParseHandlers::EndViewSpaceHierarchyInterior()
|
---|
| 204 | {
|
---|
| 205 | switch (mViewSpaceHierarchyType)
|
---|
| 206 | {
|
---|
| 207 | case BSP:
|
---|
| 208 | EndBspInterior();
|
---|
| 209 | break;
|
---|
| 210 | case VSP:
|
---|
| 211 | EndVspInterior();
|
---|
| 212 | break;
|
---|
| 213 | default:
|
---|
| 214 | Debug << "not implemented view space hierarchy type " << mViewSpaceHierarchyType << endl;
|
---|
| 215 | break;
|
---|
| 216 | }
|
---|
| 217 | }
|
---|
| 218 |
|
---|
| 219 |
|
---|
| 220 | void ViewCellsParseHandlers::EndObjectSpaceHierarchyInterior()
|
---|
| 221 | {
|
---|
| 222 | switch (mObjectSpaceHierarchyType)
|
---|
| 223 | {
|
---|
| 224 | case OSP:
|
---|
| 225 | EndOspInterior();
|
---|
| 226 | break;
|
---|
| 227 | case BVH:
|
---|
| 228 | EndBvhInterior();
|
---|
| 229 | break;
|
---|
| 230 | default:
|
---|
| 231 | Debug << "not implemented object space hierarchy type " << mViewSpaceHierarchyType << endl;
|
---|
| 232 | break;
|
---|
| 233 | }
|
---|
| 234 | }
|
---|
| 235 |
|
---|
| 236 |
|
---|
[575] | 237 | void ViewCellsParseHandlers::EndBspInterior()
|
---|
[508] | 238 | {
|
---|
| 239 | // go one up in the tree
|
---|
[590] | 240 | if (mCurrentBspNode->GetParent())
|
---|
[2005] | 241 | { //cout << "]";
|
---|
[590] | 242 | mCurrentBspNode = mCurrentBspNode->GetParent();
|
---|
[508] | 243 | }
|
---|
| 244 | }
|
---|
| 245 |
|
---|
| 246 |
|
---|
[1286] | 247 | void ViewCellsParseHandlers::EndBvhInterior()
|
---|
| 248 | {
|
---|
| 249 | // go one up in the tree
|
---|
| 250 | if (mCurrentBvhNode->GetParent())
|
---|
[2005] | 251 | { //cout << "]";
|
---|
[1286] | 252 | mCurrentBvhNode = mCurrentBvhNode->GetParent();
|
---|
| 253 | }
|
---|
| 254 | }
|
---|
| 255 |
|
---|
| 256 |
|
---|
| 257 | void ViewCellsParseHandlers::EndOspInterior()
|
---|
| 258 | {
|
---|
| 259 | // go one up in the tree
|
---|
| 260 | if (mCurrentOspNode->mParent)
|
---|
[2005] | 261 | {
|
---|
| 262 | //cout << "]";
|
---|
[1286] | 263 | mCurrentOspNode = mCurrentOspNode->mParent;
|
---|
| 264 | }
|
---|
| 265 | }
|
---|
| 266 |
|
---|
| 267 |
|
---|
[1201] | 268 | void ViewCellsParseHandlers::EndVspInterior()
|
---|
| 269 | {
|
---|
| 270 | // go one up in the tree
|
---|
| 271 | if (mCurrentVspNode->GetParent())
|
---|
[2005] | 272 | {
|
---|
| 273 | //cout << "]";
|
---|
[1201] | 274 | mCurrentVspNode = mCurrentVspNode->GetParent();
|
---|
| 275 | }
|
---|
| 276 | }
|
---|
| 277 |
|
---|
[1262] | 278 |
|
---|
[651] | 279 | void ViewCellsParseHandlers::EndViewCellInterior()
|
---|
| 280 | {
|
---|
| 281 | // go one up in the tree
|
---|
| 282 | if (mCurrentViewCell->GetParent())
|
---|
[2005] | 283 | {
|
---|
| 284 | //cout << "]";
|
---|
[651] | 285 | mCurrentViewCell = mCurrentViewCell->GetParent();
|
---|
| 286 | }
|
---|
| 287 | }
|
---|
| 288 |
|
---|
[931] | 289 |
|
---|
[863] | 290 | inline static bool vlt(ViewCell *v1, ViewCell *v2)
|
---|
[508] | 291 | {
|
---|
| 292 | return v1->mId < v2->mId;
|
---|
| 293 | }
|
---|
| 294 |
|
---|
| 295 |
|
---|
| 296 | void ViewCellsParseHandlers::EndViewCells()
|
---|
| 297 | {
|
---|
[575] | 298 | // sort view cells to help associating view cells according to their id
|
---|
[2114] | 299 | sort(mViewCells.begin(), mViewCells.end(), vlt);
|
---|
[1201] | 300 |
|
---|
| 301 | // not parsing view cells anymore
|
---|
[1263] | 302 | mCurrentState = PARSE_OPTIONS;
|
---|
[508] | 303 | }
|
---|
| 304 |
|
---|
| 305 |
|
---|
[931] | 306 | void ViewCellsParseHandlers::EndBoundingBoxes()
|
---|
| 307 | {
|
---|
[1616] | 308 | const long startTime = GetTime();
|
---|
[2113] | 309 |
|
---|
[2123] | 310 | mBoxTimer.Entry();
|
---|
| 311 |
|
---|
[931] | 312 | if (mBoundingBoxConverter)
|
---|
[2113] | 313 | {
|
---|
[2114] | 314 | // all bounding boxes gathered in this step =>
|
---|
| 315 | // associate object ids with bounding boxes
|
---|
[2113] | 316 | mBoundingBoxConverter->IdentifyObjects(mIBoundingBoxes, mPvsObjects);
|
---|
[1595] | 317 | }
|
---|
[944] | 318 |
|
---|
[2123] | 319 | if (USE_HASH_COMPARE)
|
---|
| 320 | {
|
---|
| 321 | CreateHashVector();
|
---|
| 322 | }
|
---|
| 323 | else
|
---|
| 324 | {
|
---|
| 325 | sort(mPvsObjects.begin(), mPvsObjects.end(), ilt);
|
---|
| 326 |
|
---|
| 327 | /*ObjectContainer::const_iterator oit, oit_end = mPvsObjects.end();
|
---|
| 328 |
|
---|
| 329 | int id = 0;
|
---|
| 330 | for (oit = mPvsObjects.begin(); oit != oit_end; ++ oit, ++ id)
|
---|
| 331 | {
|
---|
| 332 | if ((*oit)->GetId() != id)
|
---|
| 333 | Debug << "error" << endl;
|
---|
| 334 | }*/
|
---|
| 335 | }
|
---|
| 336 |
|
---|
[975] | 337 | Debug << "\nconverted bounding boxes to objects in "
|
---|
[2123] | 338 | << TimeDiff(startTime, GetTime()) * 1e-6 << " secs" << endl;
|
---|
| 339 | mBoxTimer.Exit();
|
---|
[931] | 340 | }
|
---|
[575] | 341 |
|
---|
[931] | 342 |
|
---|
[1201] | 343 | void ViewCellsParseHandlers::StartBspElement(string element,
|
---|
[575] | 344 | AttributeList& attributes)
|
---|
| 345 | {
|
---|
[508] | 346 | if (element == "Interior")
|
---|
| 347 | {
|
---|
[2005] | 348 | //cout << "[";
|
---|
[575] | 349 | StartBspInterior(attributes);
|
---|
[508] | 350 | }
|
---|
| 351 |
|
---|
| 352 | if (element == "Leaf")
|
---|
| 353 | {
|
---|
[2005] | 354 | //cout << "l";
|
---|
[575] | 355 | StartBspLeaf(attributes);
|
---|
[508] | 356 | }
|
---|
[575] | 357 | }
|
---|
[508] | 358 |
|
---|
[575] | 359 |
|
---|
[1201] | 360 | void ViewCellsParseHandlers::StartVspElement(string element,
|
---|
| 361 | AttributeList& attributes)
|
---|
| 362 | {
|
---|
| 363 | if (element == "Interior")
|
---|
| 364 | {
|
---|
[2005] | 365 | //cout << "[";
|
---|
[1201] | 366 | StartVspInterior(attributes);
|
---|
| 367 | }
|
---|
| 368 | if (element == "Leaf")
|
---|
| 369 | {
|
---|
[2005] | 370 | //cout << "l";
|
---|
[1201] | 371 | StartVspLeaf(attributes);
|
---|
| 372 | }
|
---|
| 373 | }
|
---|
| 374 |
|
---|
| 375 |
|
---|
| 376 | void ViewCellsParseHandlers::StartOspElement(string element,
|
---|
| 377 | AttributeList& attributes)
|
---|
| 378 | {
|
---|
| 379 | if (element == "Interior")
|
---|
| 380 | {
|
---|
[2005] | 381 | //cout << "[";
|
---|
[1201] | 382 | StartOspInterior(attributes);
|
---|
| 383 | }
|
---|
| 384 |
|
---|
| 385 | if (element == "Leaf")
|
---|
| 386 | {
|
---|
[2005] | 387 | //cout << "l";
|
---|
[1201] | 388 | StartOspLeaf(attributes);
|
---|
| 389 | }
|
---|
| 390 | }
|
---|
| 391 |
|
---|
[1264] | 392 |
|
---|
| 393 | void ViewCellsParseHandlers::StartBvhElement(string element,
|
---|
| 394 | AttributeList& attributes)
|
---|
| 395 | {
|
---|
| 396 | if (element == "Interior")
|
---|
| 397 | {
|
---|
[2005] | 398 | //cout << "[";
|
---|
[1264] | 399 | StartBvhInterior(attributes);
|
---|
| 400 | }
|
---|
| 401 |
|
---|
| 402 | if (element == "Leaf")
|
---|
| 403 | {
|
---|
[2005] | 404 | //cout << "l";
|
---|
[1264] | 405 | StartBvhLeaf(attributes);
|
---|
| 406 | }
|
---|
| 407 | }
|
---|
| 408 |
|
---|
| 409 |
|
---|
[1233] | 410 | void ViewCellsParseHandlers::StartViewSpaceHierarchyElement(const std::string &element,
|
---|
[1201] | 411 | AttributeList& attributes)
|
---|
| 412 | {
|
---|
[1264] | 413 | //-- use cell type according to the chosen method
|
---|
| 414 | switch (mViewSpaceHierarchyType)
|
---|
[1201] | 415 | {
|
---|
[1286] | 416 | case BSP:
|
---|
| 417 | StartBspElement(element, attributes);
|
---|
| 418 | break;
|
---|
| 419 | case VSP:
|
---|
| 420 | StartVspElement(element, attributes);
|
---|
| 421 | break;
|
---|
| 422 | default:
|
---|
| 423 | Debug << "not implemented" << endl;
|
---|
| 424 | break;
|
---|
[1201] | 425 | }
|
---|
| 426 | }
|
---|
| 427 |
|
---|
| 428 |
|
---|
[1233] | 429 | void ViewCellsParseHandlers::StartObjectSpaceHierarchyElement(const std::string &element,
|
---|
[1201] | 430 | AttributeList& attributes)
|
---|
| 431 | {
|
---|
[1264] | 432 | //-- use cell type according to the chosen method
|
---|
| 433 | switch (mObjectSpaceHierarchyType)
|
---|
[1201] | 434 | {
|
---|
[1264] | 435 | case OSP:
|
---|
[1201] | 436 | StartOspElement(element, attributes);
|
---|
| 437 | break;
|
---|
[1264] | 438 | case BVH:
|
---|
| 439 | StartBvhElement(element, attributes);
|
---|
| 440 | break;
|
---|
[1201] | 441 | default:
|
---|
| 442 | Debug << "not implemented" << endl;
|
---|
| 443 | break;
|
---|
| 444 | }
|
---|
| 445 | }
|
---|
| 446 |
|
---|
| 447 |
|
---|
| 448 | void ViewCellsParseHandlers::StartViewCellHierarchyElement(const std::string &element,
|
---|
| 449 | AttributeList& attributes)
|
---|
| 450 | {
|
---|
| 451 | // interiors + leaves interpreted view cells else
|
---|
| 452 | if (element == "Interior")
|
---|
| 453 | {
|
---|
[1551] | 454 | StartViewCell(attributes, false);
|
---|
[2123] | 455 | return;
|
---|
[1201] | 456 | }
|
---|
| 457 |
|
---|
| 458 | if (element == "Leaf")
|
---|
| 459 | {
|
---|
[1551] | 460 | StartViewCell(attributes, true);
|
---|
[2123] | 461 | return;
|
---|
[1201] | 462 | }
|
---|
[2123] | 463 |
|
---|
| 464 | Debug << "StartViewCellHierarchyElement: should not come here: " << element << endl;
|
---|
[1201] | 465 | }
|
---|
| 466 |
|
---|
| 467 |
|
---|
[575] | 468 | void ViewCellsParseHandlers::startElement(const XMLCh* const name,
|
---|
| 469 | AttributeList& attributes)
|
---|
[975] | 470 | {
|
---|
[575] | 471 | StrX lname(name);
|
---|
| 472 | string element(lname.LocalForm());
|
---|
[971] | 473 |
|
---|
[651] | 474 | if (element == "ViewCells")
|
---|
| 475 | {
|
---|
[2005] | 476 | cout << "\nparsing view cells" << endl;
|
---|
[2113] | 477 | Debug << "\nparsing view cells" << endl;
|
---|
[1264] | 478 |
|
---|
[1263] | 479 | mCurrentState = PARSE_VIEWCELLS;
|
---|
[1264] | 480 |
|
---|
| 481 | // create new view cells hierarchy
|
---|
| 482 | mViewCellsTree = new ViewCellsTree();
|
---|
[651] | 483 | }
|
---|
[1201] | 484 | // decides about the view cell hierarchy
|
---|
[2123] | 485 | else if (element == "ViewSpaceHierarchy")
|
---|
[1264] | 486 | {
|
---|
[2113] | 487 | Debug << "\nparsing view space hierarchy" << endl;
|
---|
[2115] | 488 | cout << "\nparsing view space hierarchy" << endl;
|
---|
| 489 |
|
---|
[1264] | 490 | mCurrentState = PARSE_VIEWSPACE_HIERARCHY;
|
---|
| 491 | StartViewSpaceHierarchy(attributes);
|
---|
[1201] | 492 | }
|
---|
| 493 | // decides about the view cell hierarchy
|
---|
[2123] | 494 | else if (element == "ObjectSpaceHierarchy")
|
---|
[1201] | 495 | {
|
---|
[2115] | 496 | cout << "\nparsing object space hierarchy" << endl;
|
---|
[2113] | 497 | Debug << "\nparsing object space hierarchy" << endl;
|
---|
| 498 |
|
---|
[1264] | 499 | mCurrentState = PARSE_OBJECTSPACE_HIERARCHY;
|
---|
[2123] | 500 | mObjectTimer.Entry();
|
---|
[1264] | 501 | StartObjectSpaceHierarchy(attributes);
|
---|
[1201] | 502 | }
|
---|
[577] | 503 | // decides the used view cell hierarchy
|
---|
[2123] | 504 | else if (element == "BoundingBox")
|
---|
[931] | 505 | {
|
---|
| 506 | StartBoundingBox(attributes);
|
---|
| 507 | }
|
---|
[2123] | 508 | else
|
---|
[577] | 509 | {
|
---|
[2123] | 510 | // parse view space hierarchy
|
---|
| 511 | switch (mCurrentState)
|
---|
| 512 | {
|
---|
| 513 | case PARSE_VIEWSPACE_HIERARCHY:
|
---|
| 514 | if ((++ nViewCells % 1000) == 0)
|
---|
| 515 | {
|
---|
| 516 | cout << "\r" << nViewCells << " view cells parsed\r";
|
---|
| 517 | Debug << nViewCells << " view cells parsed" << endl;
|
---|
| 518 | }
|
---|
| 519 | StartViewSpaceHierarchyElement(element, attributes);
|
---|
| 520 | break;
|
---|
| 521 | case PARSE_OBJECTSPACE_HIERARCHY:
|
---|
| 522 | if ((++ nObjects % 1000) == 0)
|
---|
| 523 | cout <<"\r" << nObjects << " objects parsed\r";
|
---|
[2005] | 524 |
|
---|
[2123] | 525 | StartObjectSpaceHierarchyElement(element, attributes);
|
---|
| 526 | break;
|
---|
| 527 | case PARSE_VIEWCELLS:
|
---|
| 528 | StartViewCellHierarchyElement(element, attributes);
|
---|
| 529 | break;
|
---|
| 530 | default:
|
---|
| 531 | break;
|
---|
| 532 | }
|
---|
[1201] | 533 | }
|
---|
[575] | 534 |
|
---|
[508] | 535 | ++ mElementCount;
|
---|
| 536 | mAttrCount += attributes.getLength();
|
---|
| 537 | }
|
---|
| 538 |
|
---|
| 539 |
|
---|
[1551] | 540 | void ViewCellsParseHandlers::StartViewCellPvs(ObjectPvs &pvs, const char *ptr)
|
---|
[508] | 541 | {
|
---|
[1551] | 542 | // handle obect indices
|
---|
[508] | 543 | vector<int> objIndices;
|
---|
[1551] | 544 | char *endptr;
|
---|
[508] | 545 |
|
---|
[1551] | 546 | while (1)
|
---|
| 547 | { // read object ids
|
---|
| 548 | const int index = strtol(ptr, &endptr, 10);
|
---|
| 549 | if (ptr == endptr)
|
---|
| 550 | break;
|
---|
| 551 | objIndices.push_back(index);
|
---|
| 552 | ptr = endptr;
|
---|
| 553 | }
|
---|
[508] | 554 |
|
---|
[2123] | 555 | Intersectable::NewMail();
|
---|
| 556 |
|
---|
| 557 | mPvsTimer.Entry();
|
---|
| 558 |
|
---|
[1551] | 559 | // TODO:
|
---|
| 560 | // 1) find objects and add them to pvs
|
---|
| 561 | // 2) get view cell with specified id
|
---|
| 562 | MeshInstance dummyInst(NULL);
|
---|
[508] | 563 |
|
---|
[1551] | 564 | vector<int>::const_iterator it, it_end = objIndices.end();
|
---|
[2115] | 565 |
|
---|
| 566 | pair<ObjectContainer::const_iterator, ObjectContainer::const_iterator> result;
|
---|
| 567 |
|
---|
[1551] | 568 | for (it = objIndices.begin(); it != it_end; ++ it)
|
---|
| 569 | {
|
---|
[2115] | 570 | const int objId = *it;
|
---|
[2123] | 571 |
|
---|
| 572 | #if USE_HASH_COMPARE
|
---|
| 573 | pvs_hash::iterator oit = mHashPvs.find(objId);
|
---|
[2115] | 574 |
|
---|
[2123] | 575 | if ((oit != mHashPvs.end()) && ((*oit).second->GetId() == objId))
|
---|
[2114] | 576 | {
|
---|
[2123] | 577 | pvs.AddSample((*oit).second, 1.0f);
|
---|
[2114] | 578 | }
|
---|
[2115] | 579 | #else
|
---|
[2123] | 580 | #if 0
|
---|
[2115] | 581 | dummyInst.SetId(objId);
|
---|
| 582 |
|
---|
| 583 | ObjectContainer::iterator oit =
|
---|
| 584 | lower_bound(mPvsObjects.begin(),
|
---|
| 585 | mPvsObjects.end(),
|
---|
| 586 | (Intersectable *)&dummyInst, ilt);
|
---|
| 587 |
|
---|
| 588 | if ((oit != mPvsObjects.end()) && ((*oit)->GetId() == objId))
|
---|
| 589 | {
|
---|
| 590 | pvs.AddSample(*oit, 1.0f);
|
---|
[508] | 591 | }
|
---|
[2123] | 592 | #else
|
---|
| 593 | pvs.AddSample(mPvsObjects[objId], 1.0f);
|
---|
| 594 | #endif
|
---|
| 595 | #endif
|
---|
[508] | 596 | }
|
---|
[2123] | 597 |
|
---|
| 598 | mPvsTimer.Exit();
|
---|
[508] | 599 | }
|
---|
| 600 |
|
---|
| 601 |
|
---|
[1264] | 602 | void ViewCellsParseHandlers::StartViewSpaceHierarchy(AttributeList& attributes)
|
---|
[577] | 603 | {
|
---|
| 604 | int len = attributes.getLength();
|
---|
| 605 |
|
---|
| 606 | Vector3 bmin, bmax;
|
---|
| 607 |
|
---|
| 608 | for (int i = 0; i < len; ++ i)
|
---|
| 609 | {
|
---|
| 610 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 611 | StrX attrValue(attributes.getValue(i));
|
---|
| 612 | const char *ptr = attrValue.LocalForm();
|
---|
| 613 |
|
---|
[1264] | 614 | // hierarchy type
|
---|
| 615 | if (attrName == "type")
|
---|
[577] | 616 | {
|
---|
[1264] | 617 | if (strcmp(ptr, "bsp") == 0)
|
---|
| 618 | {
|
---|
[1623] | 619 | Debug << "\nview space hierarchy: Bsp" << endl;
|
---|
[1264] | 620 | mViewSpaceHierarchyType = BSP;
|
---|
| 621 | }
|
---|
| 622 | else if (strcmp(ptr, "vsp") == 0)
|
---|
| 623 | {
|
---|
[1623] | 624 | Debug << "\nview space hierarchy: Vsp" << endl;
|
---|
[1264] | 625 | mViewSpaceHierarchyType = VSP;
|
---|
| 626 | }
|
---|
| 627 | }
|
---|
| 628 | else if (attrName == "min") // the view space extent
|
---|
| 629 | {
|
---|
[577] | 630 | sscanf(ptr, "%f %f %f",
|
---|
| 631 | &bmin.x, &bmin.y, &bmin.z);
|
---|
| 632 | }
|
---|
| 633 | else if (attrName == "max")
|
---|
| 634 | {
|
---|
| 635 | sscanf(ptr, "%f %f %f",
|
---|
| 636 | &bmax.x, &bmax.y, &bmax.z);
|
---|
| 637 | }
|
---|
| 638 | }
|
---|
| 639 |
|
---|
| 640 | mViewSpaceBox = AxisAlignedBox3(bmin, bmax);
|
---|
| 641 |
|
---|
[1264] | 642 | // create the hierarchy based on this information
|
---|
| 643 | CreateViewSpaceHierarchy();
|
---|
[577] | 644 | }
|
---|
| 645 |
|
---|
| 646 |
|
---|
[1264] | 647 | void ViewCellsParseHandlers::StartObjectSpaceHierarchy(AttributeList& attributes)
|
---|
| 648 | {
|
---|
[1286] | 649 | const int len = attributes.getLength();
|
---|
| 650 | Vector3 bmin, bmax;
|
---|
[1264] | 651 |
|
---|
| 652 | for (int i = 0; i < len; ++ i)
|
---|
| 653 | {
|
---|
| 654 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 655 | StrX attrValue(attributes.getValue(i));
|
---|
| 656 | const char *ptr = attrValue.LocalForm();
|
---|
| 657 |
|
---|
| 658 | // hierarchy type
|
---|
| 659 | if (attrName == "type")
|
---|
| 660 | {
|
---|
[1278] | 661 | if (strcmp(ptr, "osp") == 0)
|
---|
[1264] | 662 | {
|
---|
[1623] | 663 | Debug << "\nobject space hierarchy: Osp" << endl;
|
---|
[1286] | 664 |
|
---|
[1284] | 665 | mHierarchyManager =
|
---|
[1421] | 666 | new HierarchyManager(HierarchyManager::KD_BASED_OBJ_SUBDIV);
|
---|
[1286] | 667 |
|
---|
[1421] | 668 | DEL_PTR(mHierarchyManager->mVspTree);
|
---|
| 669 | mHierarchyManager->mVspTree = mVspTree;
|
---|
| 670 |
|
---|
[1286] | 671 | mObjectSpaceHierarchyType = OSP;
|
---|
| 672 |
|
---|
| 673 | //std::stable_sort(objects.begin(), objects.end(), ilt);
|
---|
| 674 | mHierarchyManager->mOspTree->mBoundingBox.Initialize();
|
---|
[2113] | 675 | ObjectContainer::const_iterator oit, oit_end = mPvsObjects.end();
|
---|
[1286] | 676 |
|
---|
| 677 | //-- compute bounding box
|
---|
[2113] | 678 | for (oit = mPvsObjects.begin(); oit != oit_end; ++ oit)
|
---|
[1286] | 679 | {
|
---|
| 680 | Intersectable *obj = *oit;
|
---|
| 681 | // compute bounding box of view space
|
---|
| 682 | mHierarchyManager->mOspTree->mBoundingBox.Include(obj->GetBox());
|
---|
| 683 | }
|
---|
[1264] | 684 | }
|
---|
[1278] | 685 | else if (strcmp(ptr, "bvh") == 0)
|
---|
[1264] | 686 | {
|
---|
[1623] | 687 | Debug << "\nobject space hierarchy: Bvh" << endl;
|
---|
[1286] | 688 | mObjectSpaceHierarchyType = BVH;
|
---|
[1284] | 689 | mHierarchyManager =
|
---|
[1421] | 690 | new HierarchyManager(HierarchyManager::BV_BASED_OBJ_SUBDIV);
|
---|
| 691 |
|
---|
| 692 | DEL_PTR(mHierarchyManager->mVspTree);
|
---|
| 693 | mHierarchyManager->mVspTree = mVspTree;
|
---|
[1264] | 694 | }
|
---|
| 695 | }
|
---|
| 696 | }
|
---|
| 697 | }
|
---|
| 698 |
|
---|
| 699 |
|
---|
[931] | 700 | void ViewCellsParseHandlers::StartBoundingBox(AttributeList& attributes)
|
---|
| 701 | {
|
---|
| 702 | int len = attributes.getLength();
|
---|
| 703 |
|
---|
| 704 | Vector3 bmin, bmax;
|
---|
| 705 | int id;
|
---|
| 706 |
|
---|
| 707 | for (int i = 0; i < len; ++ i)
|
---|
| 708 | {
|
---|
| 709 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 710 | StrX attrValue(attributes.getValue(i));
|
---|
| 711 | const char *ptr = attrValue.LocalForm();
|
---|
| 712 |
|
---|
| 713 | if (attrName == "id")
|
---|
| 714 | {
|
---|
| 715 | sscanf(ptr, "%d", &id);
|
---|
| 716 | }
|
---|
| 717 | if (attrName == "min")
|
---|
| 718 | {
|
---|
[1264] | 719 | sscanf(ptr, "%f %f %f", &bmin.x, &bmin.y, &bmin.z);
|
---|
[931] | 720 | }
|
---|
| 721 | else if (attrName == "max")
|
---|
| 722 | {
|
---|
[1264] | 723 | sscanf(ptr, "%f %f %f", &bmax.x, &bmax.y, &bmax.z);
|
---|
[931] | 724 | }
|
---|
| 725 | }
|
---|
| 726 |
|
---|
| 727 | AxisAlignedBox3 box(bmin, bmax);
|
---|
| 728 | mIBoundingBoxes.push_back(IndexedBoundingBox(id, box));
|
---|
[1623] | 729 | //Debug << "bbox: " << box << endl;
|
---|
[931] | 730 | }
|
---|
| 731 |
|
---|
| 732 |
|
---|
[575] | 733 | void ViewCellsParseHandlers::StartBspLeaf(AttributeList& attributes)
|
---|
[508] | 734 | {
|
---|
[1287] | 735 | BspLeaf * leaf;
|
---|
[508] | 736 |
|
---|
[590] | 737 | if (mCurrentBspNode) // replace front or (if not NULL) back child
|
---|
[508] | 738 | {
|
---|
[2017] | 739 | BspInterior *interior = static_cast<BspInterior *>(mCurrentBspNode);
|
---|
[1287] | 740 |
|
---|
| 741 | leaf = new BspLeaf(interior);
|
---|
| 742 | interior->ReplaceChildLink(NULL, leaf);
|
---|
[508] | 743 | }
|
---|
| 744 | else
|
---|
| 745 | {
|
---|
[1287] | 746 | leaf = new BspLeaf();
|
---|
[1264] | 747 | mVspBspTree->mRoot = leaf;
|
---|
[508] | 748 | }
|
---|
| 749 |
|
---|
[1551] | 750 | ///////////
|
---|
[508] | 751 | //-- find associated view cell
|
---|
[1264] | 752 |
|
---|
[508] | 753 | int viewCellId;
|
---|
[1558] | 754 | const int len = attributes.getLength();
|
---|
[508] | 755 |
|
---|
| 756 | for (int i = 0; i < len; ++ i)
|
---|
| 757 | {
|
---|
| 758 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 759 | StrX attrValue(attributes.getValue(i));
|
---|
| 760 |
|
---|
| 761 | const char *ptr = attrValue.LocalForm();
|
---|
| 762 | char *endptr = NULL;
|
---|
| 763 |
|
---|
| 764 | if (attrName == "viewCellId")
|
---|
| 765 | {
|
---|
| 766 | viewCellId = strtol(ptr, &endptr, 10);
|
---|
| 767 | }
|
---|
| 768 | }
|
---|
[590] | 769 |
|
---|
[1264] | 770 | if (viewCellId >= 0) // valid view cell found
|
---|
[508] | 771 | {
|
---|
| 772 | // TODO: get view cell with specified id
|
---|
[1623] | 773 | ViewCellInterior dummyVc;
|
---|
| 774 | dummyVc.SetId(viewCellId);
|
---|
| 775 |
|
---|
| 776 | ViewCellContainer::iterator vit =
|
---|
| 777 | lower_bound(mViewCells.begin(), mViewCells.end(), &dummyVc, vlt);
|
---|
| 778 |
|
---|
| 779 | //ViewCellsMap::iterator vit = mViewCells.find(viewCellId);
|
---|
[2017] | 780 | // BspViewCell *viewCell = static_cast<BspViewCell *>((*vit).second);
|
---|
[2053] | 781 |
|
---|
[2017] | 782 | BspViewCell *viewCell = static_cast<BspViewCell *>(*vit);
|
---|
[508] | 783 | if (viewCell->GetId() == viewCellId)
|
---|
| 784 | {
|
---|
[1284] | 785 | // create new view cell for bsp nodes
|
---|
[651] | 786 | leaf->SetViewCell(viewCell);
|
---|
[1551] | 787 | viewCell->mLeaves.push_back(leaf);
|
---|
[508] | 788 | }
|
---|
| 789 | else
|
---|
| 790 | {
|
---|
[2005] | 791 | cerr << "error: view cell does not exist" << endl;
|
---|
[508] | 792 | }
|
---|
| 793 | }
|
---|
| 794 | else
|
---|
| 795 | {
|
---|
[863] | 796 | // add to invalid view space
|
---|
[1286] | 797 | leaf->SetViewCell(mVspBspTree->GetOrCreateOutOfBoundsCell());
|
---|
| 798 | leaf->SetTreeValid(false);
|
---|
| 799 | mVspBspTree->PropagateUpValidity(leaf);
|
---|
[654] | 800 | }
|
---|
[508] | 801 | }
|
---|
| 802 |
|
---|
| 803 |
|
---|
[575] | 804 | void ViewCellsParseHandlers::StartBspInterior(AttributeList& attributes)
|
---|
[508] | 805 | {
|
---|
| 806 | Plane3 plane;
|
---|
| 807 | int len = attributes.getLength();
|
---|
| 808 |
|
---|
| 809 | for (int i = 0; i < len; ++ i)
|
---|
| 810 | {
|
---|
| 811 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 812 | StrX attrValue(attributes.getValue(i));
|
---|
| 813 | const char *ptr = attrValue.LocalForm();
|
---|
| 814 |
|
---|
| 815 | if (attrName == "plane")
|
---|
| 816 | {
|
---|
| 817 | sscanf(ptr, "%f %f %f %f",
|
---|
| 818 | &plane.mNormal.x, &plane.mNormal.y, &plane.mNormal.z, &plane.mD);
|
---|
| 819 | }
|
---|
| 820 | }
|
---|
| 821 |
|
---|
| 822 | BspInterior* interior = new BspInterior(plane);
|
---|
| 823 |
|
---|
[590] | 824 | if (mCurrentBspNode) // replace NULL child of parent with current node
|
---|
[508] | 825 | {
|
---|
[2017] | 826 | BspInterior *parent = static_cast<BspInterior *>(mCurrentBspNode);
|
---|
[508] | 827 |
|
---|
[1287] | 828 | parent->ReplaceChildLink(NULL, interior);
|
---|
| 829 | interior->SetParent(parent);
|
---|
[508] | 830 | }
|
---|
| 831 | else
|
---|
| 832 | {
|
---|
[1264] | 833 | mVspBspTree->mRoot = interior;
|
---|
[508] | 834 | }
|
---|
| 835 |
|
---|
[590] | 836 | mCurrentBspNode = interior;
|
---|
[508] | 837 | }
|
---|
| 838 |
|
---|
| 839 |
|
---|
[1551] | 840 | void ViewCellsParseHandlers::StartViewCell(AttributeList& attributes, const bool isLeaf)
|
---|
[651] | 841 | {
|
---|
[1551] | 842 | ViewCell *viewCell = NULL;
|
---|
| 843 | const int len = attributes.getLength();
|
---|
| 844 | float mergeCost;
|
---|
[2093] | 845 |
|
---|
[1705] | 846 | if (isLeaf)
|
---|
| 847 | {
|
---|
| 848 | viewCell = new ViewCellLeaf();
|
---|
| 849 | }
|
---|
| 850 | else
|
---|
| 851 | {
|
---|
| 852 | viewCell = new ViewCellInterior();
|
---|
| 853 | }
|
---|
| 854 |
|
---|
[1551] | 855 | for (int i = 0; i < len; ++ i)
|
---|
[651] | 856 | {
|
---|
[1551] | 857 | const string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 858 |
|
---|
| 859 | if (attrName == "id")
|
---|
| 860 | {
|
---|
| 861 | const StrX attrValue(attributes.getValue(i));
|
---|
| 862 | const char *ptr = attrValue.LocalForm();
|
---|
| 863 | char *endptr = NULL;
|
---|
| 864 | const int id = strtol(ptr, &endptr, 10);
|
---|
[651] | 865 |
|
---|
[1551] | 866 | // create new view cell, otherwise use reference.
|
---|
[1623] | 867 | viewCell->SetId(id);
|
---|
| 868 |
|
---|
[2123] | 869 | if (mCurrentViewCell)
|
---|
| 870 | { // replace front or (if not NULL) back child
|
---|
[1551] | 871 | ViewCellInterior *interior =
|
---|
[2017] | 872 | static_cast<ViewCellInterior *>(mCurrentViewCell);
|
---|
[1551] | 873 | interior->SetupChildLink(viewCell);
|
---|
| 874 | }
|
---|
| 875 | else
|
---|
| 876 | { // set the new root
|
---|
| 877 | mViewCellsTree->SetRoot(viewCell);
|
---|
| 878 | }
|
---|
| 879 |
|
---|
| 880 | if (!isLeaf)
|
---|
| 881 | {
|
---|
| 882 | mCurrentViewCell = viewCell;
|
---|
| 883 | }
|
---|
| 884 | }
|
---|
| 885 | if (attrName == "pvs")
|
---|
[2071] | 886 | {
|
---|
[1551] | 887 | StrX attrValue(attributes.getValue(i));
|
---|
| 888 | const char *ptr = attrValue.LocalForm();
|
---|
| 889 |
|
---|
[2123] | 890 | // hack: assume that view cell id comes before pvs
|
---|
[1551] | 891 | // otherwise view cell is undefined
|
---|
[1623] | 892 |
|
---|
[2048] | 893 | StartViewCellPvs(viewCell->GetPvs(), ptr);
|
---|
[1623] | 894 | //StartViewCellPvs(pvs, ptr);
|
---|
[1551] | 895 | }
|
---|
| 896 | else if (attrName == "active")
|
---|
| 897 | {
|
---|
| 898 | StrX attrValue(attributes.getValue(i));
|
---|
| 899 | const char *ptr = attrValue.LocalForm();
|
---|
| 900 | char *endptr = NULL;
|
---|
| 901 | const bool isActive = (bool)strtol(ptr, &endptr, 10);
|
---|
| 902 |
|
---|
| 903 | if (isActive)
|
---|
| 904 | {
|
---|
| 905 | // TODO
|
---|
| 906 | }
|
---|
| 907 | }
|
---|
| 908 | else if (attrName == "mergecost")
|
---|
| 909 | {
|
---|
| 910 | StrX attrValue(attributes.getValue(i));
|
---|
| 911 |
|
---|
| 912 | const char *ptr = attrValue.LocalForm();
|
---|
| 913 | char *endptr = NULL;
|
---|
| 914 | mergeCost = (float)strtod(ptr, &endptr);
|
---|
| 915 | }
|
---|
[651] | 916 | }
|
---|
| 917 |
|
---|
[1551] | 918 | viewCell->SetMergeCost(mergeCost);
|
---|
[1623] | 919 | //viewCell->SetPvs(pvs);
|
---|
| 920 | mViewCells.push_back(viewCell);
|
---|
[651] | 921 | }
|
---|
| 922 |
|
---|
| 923 |
|
---|
[1264] | 924 | void ViewCellsParseHandlers::CreateViewSpaceHierarchy()
|
---|
[575] | 925 | {
|
---|
[1264] | 926 | if (mViewSpaceHierarchyType == BSP)
|
---|
[575] | 927 | {
|
---|
[1623] | 928 | Debug << "hierarchy type: Bsp" << endl;
|
---|
[1264] | 929 | mVspBspTree = new VspBspTree();
|
---|
[575] | 930 |
|
---|
[1264] | 931 | // set view space box
|
---|
[1563] | 932 | mVspBspTree->mBoundingBox = mViewSpaceBox;
|
---|
[1284] | 933 |
|
---|
[1623] | 934 | //ViewCellsMap::iterator vit, vit_end = mViewCells.end();
|
---|
| 935 | ViewCellContainer::iterator vit, vit_end = mViewCells.end();
|
---|
[1284] | 936 |
|
---|
[1999] | 937 | int i = 0;
|
---|
[1551] | 938 | // remove view cells and exchange them with the
|
---|
| 939 | // view cells specialized for the current hierarchy node type
|
---|
[1623] | 940 | for (vit = mViewCells.begin(); vit != vit_end; ++ vit, ++ i)
|
---|
[1284] | 941 | {
|
---|
[1623] | 942 | ViewCell *vc = (*vit);
|
---|
[1622] | 943 |
|
---|
[1551] | 944 | if (!vc->IsLeaf()) // exchange only leaves
|
---|
| 945 | continue;
|
---|
[1622] | 946 |
|
---|
[1284] | 947 | BspViewCell *bspVc = new BspViewCell();
|
---|
[1622] | 948 |
|
---|
[1551] | 949 | bspVc->SetId(vc->GetId());
|
---|
[1623] | 950 | //bspVc->GetPvs().reserve(vc->GetPvs().size());
|
---|
[1284] | 951 | bspVc->SetPvs(vc->GetPvs());
|
---|
| 952 |
|
---|
| 953 | if (vc->IsRoot())
|
---|
| 954 | {
|
---|
| 955 | mViewCellsTree->mRoot = bspVc;
|
---|
| 956 | }
|
---|
| 957 | else
|
---|
| 958 | {
|
---|
[1286] | 959 | vc->GetParent()->ReplaceChildLink(vc, bspVc);
|
---|
[1284] | 960 | }
|
---|
| 961 |
|
---|
[1999] | 962 | // delete old view cell
|
---|
[1284] | 963 | DEL_PTR(vc);
|
---|
[1999] | 964 |
|
---|
[2332] | 965 | //(*vit).second = bspVc;
|
---|
[1623] | 966 | (*vit) = bspVc;
|
---|
[1284] | 967 | }
|
---|
[2005] | 968 | cout << "finished creating view space hierarchy" << endl;
|
---|
[1264] | 969 | }
|
---|
| 970 | else if (mViewSpaceHierarchyType == VSP)
|
---|
[975] | 971 | {
|
---|
[1623] | 972 | Debug << "hierarchy type: Vsp" << endl;
|
---|
[1264] | 973 | mVspTree = new VspTree();
|
---|
[1278] | 974 |
|
---|
[1264] | 975 | // set view space box
|
---|
| 976 | mVspTree->mBoundingBox = mViewSpaceBox;
|
---|
[1278] | 977 |
|
---|
[1999] | 978 | // ViewCellsMap::iterator vit, vit_end = mViewCells.end();
|
---|
| 979 | ViewCellContainer::iterator vit, vit_end = mViewCells.end();
|
---|
| 980 |
|
---|
[1284] | 981 | // reset view cells using the current node type
|
---|
| 982 | for (vit = mViewCells.begin(); vit != vit_end; ++ vit)
|
---|
| 983 | {
|
---|
[1623] | 984 | //ViewCell *vc = (*vit).second;
|
---|
[1999] | 985 | ViewCell *vc = (*vit);
|
---|
| 986 |
|
---|
| 987 | if (!vc->IsLeaf()) // exchange only leaves
|
---|
| 988 | continue;
|
---|
| 989 |
|
---|
[1284] | 990 | VspViewCell *vspVc = new VspViewCell();
|
---|
[1999] | 991 |
|
---|
[1284] | 992 | vspVc->SetPvs(vc->GetPvs());
|
---|
| 993 | vspVc->SetId(vc->GetId());
|
---|
| 994 |
|
---|
| 995 | if (vc->IsRoot())
|
---|
| 996 | {
|
---|
| 997 | mViewCellsTree->mRoot = vspVc;
|
---|
| 998 | }
|
---|
| 999 | else
|
---|
| 1000 | {
|
---|
[1286] | 1001 | vc->GetParent()->ReplaceChildLink(vc, vspVc);
|
---|
[1284] | 1002 | }
|
---|
| 1003 |
|
---|
[1999] | 1004 | // exchange view cell with new one
|
---|
| 1005 | DEL_PTR(vc);
|
---|
| 1006 |
|
---|
[1623] | 1007 | //(*vit).second = vspVc;
|
---|
| 1008 | (*vit) = vspVc;
|
---|
[1284] | 1009 | }
|
---|
| 1010 |
|
---|
[1278] | 1011 | if (mHierarchyManager)
|
---|
| 1012 | {
|
---|
[1622] | 1013 | // come here only if object space hierarchy already constructed
|
---|
[1278] | 1014 | mHierarchyManager->mVspTree = mVspTree;
|
---|
| 1015 | mVspTree->mHierarchyManager = mHierarchyManager;
|
---|
| 1016 | }
|
---|
[1264] | 1017 | }
|
---|
| 1018 | }
|
---|
[577] | 1019 |
|
---|
[1264] | 1020 |
|
---|
[1421] | 1021 | void ViewCellsParseHandlers::CreateViewCellsManager()
|
---|
[1264] | 1022 | {
|
---|
[1286] | 1023 | if (mViewSpaceHierarchyType == BSP)
|
---|
[1264] | 1024 | {
|
---|
[1928] | 1025 | Debug << "\ncreating view cells manager: VspBsp" << endl;
|
---|
[1264] | 1026 | mViewCellsManager = new VspBspViewCellsManager(mViewCellsTree, mVspBspTree);
|
---|
[1022] | 1027 | }
|
---|
[1264] | 1028 | else if (mViewSpaceHierarchyType == VSP)
|
---|
| 1029 | {
|
---|
[1928] | 1030 | Debug << "\ncreating view cells manager: VspOsp" << endl;
|
---|
[1278] | 1031 | mViewCellsManager = new VspOspViewCellsManager(mViewCellsTree, mHierarchyManager);
|
---|
[1264] | 1032 | }
|
---|
[1263] | 1033 |
|
---|
[577] | 1034 | mViewCellsManager->SetViewSpaceBox(mViewSpaceBox);
|
---|
[575] | 1035 | }
|
---|
| 1036 |
|
---|
| 1037 |
|
---|
[508] | 1038 | void ViewCellsParseHandlers::characters(const XMLCh* const chars,
|
---|
| 1039 | const unsigned int length)
|
---|
| 1040 | {
|
---|
| 1041 | mCharacterCount += length;
|
---|
| 1042 | }
|
---|
| 1043 |
|
---|
| 1044 |
|
---|
| 1045 | void ViewCellsParseHandlers::ignorableWhitespace(const XMLCh* const chars,
|
---|
| 1046 | const unsigned int length)
|
---|
| 1047 | {
|
---|
| 1048 | mSpaceCount += length;
|
---|
| 1049 | }
|
---|
| 1050 |
|
---|
| 1051 |
|
---|
| 1052 | void ViewCellsParseHandlers::resetDocument()
|
---|
| 1053 | {
|
---|
| 1054 | mAttrCount = 0;
|
---|
| 1055 | mCharacterCount = 0;
|
---|
| 1056 | mElementCount = 0;
|
---|
| 1057 | mSpaceCount = 0;
|
---|
| 1058 | }
|
---|
| 1059 |
|
---|
| 1060 |
|
---|
[1201] | 1061 | void ViewCellsParseHandlers::StartVspLeaf(AttributeList& attributes)
|
---|
| 1062 | {
|
---|
[1287] | 1063 | VspLeaf * leaf;
|
---|
| 1064 |
|
---|
[1201] | 1065 | if (mCurrentVspNode) // replace front or (if not NULL) back child
|
---|
| 1066 | {
|
---|
[2017] | 1067 | VspInterior *interior = static_cast<VspInterior *>(mCurrentVspNode);
|
---|
[1287] | 1068 | leaf = new VspLeaf(interior);
|
---|
| 1069 | interior->ReplaceChildLink(NULL, leaf);
|
---|
[1201] | 1070 | }
|
---|
| 1071 | else
|
---|
| 1072 | {
|
---|
[1287] | 1073 | leaf = new VspLeaf();
|
---|
[1201] | 1074 | mVspTree->mRoot = leaf;
|
---|
| 1075 | }
|
---|
| 1076 |
|
---|
[1551] | 1077 | /////////////
|
---|
| 1078 | //-- find view cell associated with the id
|
---|
| 1079 |
|
---|
[1201] | 1080 | int viewCellId;
|
---|
[1586] | 1081 | const int len = attributes.getLength();
|
---|
[1201] | 1082 |
|
---|
| 1083 | for (int i = 0; i < len; ++ i)
|
---|
| 1084 | {
|
---|
| 1085 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 1086 | StrX attrValue(attributes.getValue(i));
|
---|
| 1087 |
|
---|
| 1088 | const char *ptr = attrValue.LocalForm();
|
---|
| 1089 | char *endptr = NULL;
|
---|
| 1090 |
|
---|
| 1091 | if (attrName == "viewCellId")
|
---|
| 1092 | {
|
---|
| 1093 | viewCellId = strtol(ptr, &endptr, 10);
|
---|
| 1094 | }
|
---|
| 1095 | }
|
---|
| 1096 |
|
---|
[1551] | 1097 | if (viewCellId >= 0) // valid view cell found
|
---|
[1201] | 1098 | {
|
---|
| 1099 | // TODO: get view cell with specified id
|
---|
[1623] | 1100 | ViewCellInterior dummyVc;
|
---|
[1201] | 1101 | dummyVc.SetId(viewCellId);
|
---|
| 1102 |
|
---|
| 1103 | ViewCellContainer::iterator vit =
|
---|
| 1104 | lower_bound(mViewCells.begin(), mViewCells.end(), &dummyVc, vlt);
|
---|
[1623] | 1105 |
|
---|
| 1106 | //ViewCellsMap::iterator vit = mViewCells.find(viewCellId);
|
---|
[1284] | 1107 | if (vit == mViewCells.end())
|
---|
[1623] | 1108 | Debug << "error: view cell " << viewCellId << " not found" << endl;
|
---|
[1286] | 1109 |
|
---|
[2017] | 1110 | //VspViewCell *viewCell = static_cast<VspViewCell *>((*vit).second);
|
---|
| 1111 | VspViewCell *viewCell = static_cast<VspViewCell *>(*vit);
|
---|
[1286] | 1112 |
|
---|
[1201] | 1113 | if (viewCell->GetId() == viewCellId)
|
---|
| 1114 | {
|
---|
| 1115 | leaf->SetViewCell(viewCell);
|
---|
[1551] | 1116 | viewCell->mLeaves.push_back(leaf);
|
---|
[1201] | 1117 | }
|
---|
| 1118 | else
|
---|
| 1119 | {
|
---|
[1623] | 1120 | Debug << "error: view cell does not exist" << endl;
|
---|
[1201] | 1121 | }
|
---|
| 1122 | }
|
---|
| 1123 | else
|
---|
[1286] | 1124 | {
|
---|
[1201] | 1125 | // add to invalid view space
|
---|
| 1126 | leaf->SetViewCell(mVspTree->GetOrCreateOutOfBoundsCell());
|
---|
| 1127 | leaf->SetTreeValid(false);
|
---|
| 1128 | mVspTree->PropagateUpValidity(leaf);
|
---|
| 1129 | }
|
---|
| 1130 | }
|
---|
| 1131 |
|
---|
| 1132 |
|
---|
| 1133 | void ViewCellsParseHandlers::StartVspInterior(AttributeList& attributes)
|
---|
| 1134 | {
|
---|
| 1135 | AxisAlignedPlane plane;
|
---|
[1586] | 1136 | const int len = attributes.getLength();
|
---|
[1201] | 1137 |
|
---|
| 1138 | for (int i = 0; i < len; ++ i)
|
---|
| 1139 | {
|
---|
| 1140 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 1141 | StrX attrValue(attributes.getValue(i));
|
---|
| 1142 | const char *ptr = attrValue.LocalForm();
|
---|
| 1143 |
|
---|
| 1144 | if (attrName == "plane")
|
---|
| 1145 | {
|
---|
[1286] | 1146 | sscanf(ptr, "%f %d", &plane.mPosition, &plane.mAxis);
|
---|
[1201] | 1147 | }
|
---|
| 1148 | }
|
---|
| 1149 |
|
---|
| 1150 | VspInterior* interior = new VspInterior(plane);
|
---|
| 1151 |
|
---|
| 1152 | if (mCurrentVspNode) // replace NULL child of parent with current node
|
---|
| 1153 | {
|
---|
[2017] | 1154 | VspInterior *parent = static_cast<VspInterior *>(mCurrentVspNode);
|
---|
[1201] | 1155 |
|
---|
[1286] | 1156 | parent->ReplaceChildLink(NULL, interior);
|
---|
| 1157 | interior->SetParent(parent);
|
---|
| 1158 |
|
---|
| 1159 | AxisAlignedBox3 frontBox, backBox;
|
---|
| 1160 |
|
---|
[1287] | 1161 | parent->GetBoundingBox().Split(
|
---|
| 1162 | parent->GetPlane().mAxis,
|
---|
| 1163 | parent->GetPlane().mPosition,
|
---|
| 1164 | frontBox,
|
---|
| 1165 | backBox);
|
---|
| 1166 |
|
---|
[1286] | 1167 | if (parent->GetFront() == interior)
|
---|
| 1168 | interior->SetBoundingBox(frontBox);
|
---|
| 1169 | else
|
---|
| 1170 | interior->SetBoundingBox(backBox);
|
---|
[1201] | 1171 | }
|
---|
| 1172 | else
|
---|
| 1173 | {
|
---|
| 1174 | mVspTree->mRoot = interior;
|
---|
[1286] | 1175 | interior->SetBoundingBox(mVspTree->GetBoundingBox());
|
---|
[1201] | 1176 | }
|
---|
| 1177 |
|
---|
| 1178 | mCurrentVspNode = interior;
|
---|
| 1179 | }
|
---|
| 1180 |
|
---|
| 1181 |
|
---|
| 1182 | void ViewCellsParseHandlers::StartOspInterior(AttributeList& attributes)
|
---|
| 1183 | {
|
---|
| 1184 | AxisAlignedPlane plane;
|
---|
| 1185 | int len = attributes.getLength();
|
---|
| 1186 |
|
---|
| 1187 | for (int i = 0; i < len; ++ i)
|
---|
| 1188 | {
|
---|
| 1189 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 1190 | StrX attrValue(attributes.getValue(i));
|
---|
| 1191 | const char *ptr = attrValue.LocalForm();
|
---|
| 1192 |
|
---|
| 1193 | if (attrName == "plane")
|
---|
| 1194 | {
|
---|
[1286] | 1195 | sscanf(ptr, "%f %d", &plane.mPosition, &plane.mAxis);
|
---|
[1201] | 1196 | }
|
---|
| 1197 | }
|
---|
| 1198 |
|
---|
| 1199 | KdInterior* interior = new KdInterior(NULL);
|
---|
| 1200 |
|
---|
| 1201 | interior->mAxis = plane.mAxis;
|
---|
| 1202 | interior->mPosition = plane.mPosition;
|
---|
| 1203 |
|
---|
[1286] | 1204 | if (mCurrentOspNode) // replace NULL child of parent with current node
|
---|
[1201] | 1205 | {
|
---|
[2017] | 1206 | KdInterior *parent = static_cast<KdInterior *>(mCurrentOspNode);
|
---|
[1201] | 1207 | parent->ReplaceChildLink(NULL, interior);
|
---|
| 1208 | interior->mParent = parent;
|
---|
[1286] | 1209 |
|
---|
| 1210 | AxisAlignedBox3 frontBox, backBox;
|
---|
| 1211 |
|
---|
| 1212 | parent->mBox.Split(parent->mAxis, parent->mPosition, frontBox, backBox);
|
---|
[1287] | 1213 |
|
---|
[1286] | 1214 | if (parent->mFront == interior)
|
---|
| 1215 | interior->mBox = frontBox;
|
---|
| 1216 | else
|
---|
| 1217 | interior->mBox = backBox;
|
---|
[1201] | 1218 | }
|
---|
| 1219 | else
|
---|
| 1220 | {
|
---|
[1278] | 1221 | mHierarchyManager->mOspTree->mRoot = interior;
|
---|
[1286] | 1222 | interior->mBox = mHierarchyManager->mOspTree->mBoundingBox;
|
---|
[1201] | 1223 | }
|
---|
| 1224 |
|
---|
[1286] | 1225 | mCurrentOspNode = interior;
|
---|
[1201] | 1226 | }
|
---|
| 1227 |
|
---|
| 1228 |
|
---|
| 1229 | void ViewCellsParseHandlers::StartOspLeaf(AttributeList& attributes)
|
---|
| 1230 | {
|
---|
[2017] | 1231 | KdLeaf * leaf = new KdLeaf(static_cast<KdInterior *>(mCurrentOspNode), NULL);
|
---|
[1201] | 1232 |
|
---|
[1667] | 1233 | if (mCurrentOspNode)
|
---|
[1201] | 1234 | {
|
---|
[1667] | 1235 | // replace front or (if not NULL) back child
|
---|
[2017] | 1236 | static_cast<KdInterior *>(mCurrentOspNode)->ReplaceChildLink(NULL, leaf);
|
---|
[1201] | 1237 | }
|
---|
| 1238 | else
|
---|
| 1239 | {
|
---|
[1278] | 1240 | mHierarchyManager->mOspTree->mRoot = leaf;
|
---|
[1201] | 1241 | }
|
---|
| 1242 | }
|
---|
| 1243 |
|
---|
| 1244 |
|
---|
[1264] | 1245 | void ViewCellsParseHandlers::StartBvhLeaf(AttributeList& attributes)
|
---|
[1286] | 1246 | {
|
---|
| 1247 | const int len = attributes.getLength();
|
---|
| 1248 | Vector3 minBox, maxBox;
|
---|
[1201] | 1249 |
|
---|
[1286] | 1250 | ObjectContainer objects;
|
---|
| 1251 |
|
---|
| 1252 | for (int i = 0; i < len; ++ i)
|
---|
[1264] | 1253 | {
|
---|
[1286] | 1254 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 1255 | StrX attrValue(attributes.getValue(i));
|
---|
| 1256 | const char *ptr = attrValue.LocalForm();
|
---|
| 1257 |
|
---|
| 1258 | if (attrName == "min")
|
---|
| 1259 | {
|
---|
[1287] | 1260 | sscanf(ptr, "%f %f %f", &minBox.x, &minBox.y, &minBox.z);
|
---|
[1286] | 1261 | }
|
---|
| 1262 | if (attrName == "max")
|
---|
| 1263 | {
|
---|
[1287] | 1264 | sscanf(ptr, "%f %f %f", &maxBox.x, &maxBox.y, &maxBox.z);
|
---|
[1286] | 1265 | }
|
---|
| 1266 | if (attrName == "objects")
|
---|
| 1267 | {
|
---|
[2115] | 1268 | if (!mPreprocessorObjects.empty())
|
---|
| 1269 | StartBvhLeafObjects(objects, ptr);
|
---|
[1286] | 1270 | }
|
---|
[1264] | 1271 | }
|
---|
[1286] | 1272 |
|
---|
[1287] | 1273 | AxisAlignedBox3 box = AxisAlignedBox3(minBox, maxBox);
|
---|
[1286] | 1274 |
|
---|
[1287] | 1275 | BvhLeaf *leaf;
|
---|
[1286] | 1276 |
|
---|
| 1277 | if (mCurrentBvhNode) // replace front or (if not NULL) back child
|
---|
| 1278 | {
|
---|
[2017] | 1279 | BvhInterior *interior = static_cast<BvhInterior *>(mCurrentBvhNode);
|
---|
[2115] | 1280 |
|
---|
[1287] | 1281 | leaf = new BvhLeaf(box, interior, (int)objects.size());
|
---|
| 1282 | interior->ReplaceChildLink(NULL, leaf);
|
---|
[1286] | 1283 | }
|
---|
[1264] | 1284 | else
|
---|
| 1285 | {
|
---|
[1287] | 1286 | leaf = new BvhLeaf(box, NULL, (int)objects.size());
|
---|
[1278] | 1287 | mHierarchyManager->mBvHierarchy->mRoot = leaf;
|
---|
[1286] | 1288 | }
|
---|
[1287] | 1289 |
|
---|
| 1290 | leaf->mObjects = objects;
|
---|
[2048] | 1291 | BvHierarchy::AssociateObjectsWithLeaf(leaf);
|
---|
[1264] | 1292 | }
|
---|
[1201] | 1293 |
|
---|
[1264] | 1294 |
|
---|
[1286] | 1295 | void ViewCellsParseHandlers::StartBvhLeafObjects(ObjectContainer &objects,
|
---|
| 1296 | const char *ptr)
|
---|
| 1297 | {
|
---|
| 1298 | vector<int> objIndices;
|
---|
| 1299 | char *endptr;
|
---|
| 1300 |
|
---|
| 1301 | while (1)
|
---|
| 1302 | {
|
---|
| 1303 | const int index = strtol(ptr, &endptr, 10);
|
---|
| 1304 | if (ptr == endptr) break;
|
---|
| 1305 |
|
---|
| 1306 | objIndices.push_back(index);
|
---|
| 1307 | ptr = endptr;
|
---|
| 1308 | }
|
---|
| 1309 |
|
---|
| 1310 | MeshInstance dummyInst(NULL);
|
---|
| 1311 | vector<int>::const_iterator it, it_end = objIndices.end();
|
---|
| 1312 |
|
---|
| 1313 | for (it = objIndices.begin(); it != it_end; ++ it)
|
---|
| 1314 | {
|
---|
| 1315 | const int objId = *it;
|
---|
| 1316 | dummyInst.SetId(objId);
|
---|
| 1317 |
|
---|
[2115] | 1318 | ObjectContainer::const_iterator oit =
|
---|
| 1319 | lower_bound(mPreprocessorObjects.begin(),
|
---|
| 1320 | mPreprocessorObjects.end(),
|
---|
[1287] | 1321 | (Intersectable *)&dummyInst,
|
---|
| 1322 | ilt);
|
---|
[1286] | 1323 |
|
---|
[2115] | 1324 | if ((oit != mPreprocessorObjects.end()) && ((*oit)->GetId() == objId))
|
---|
[1286] | 1325 | {
|
---|
[1486] | 1326 | objects.push_back(*oit);
|
---|
[1286] | 1327 | }
|
---|
| 1328 | else
|
---|
| 1329 | {
|
---|
[2113] | 1330 | //cerr << "StartBvhLeafObjects error: object with id " << objId << " does not exist" << endl;
|
---|
[1286] | 1331 | }
|
---|
| 1332 | }
|
---|
| 1333 | }
|
---|
| 1334 |
|
---|
| 1335 |
|
---|
[1264] | 1336 | void ViewCellsParseHandlers::StartBvhInterior(AttributeList& attributes)
|
---|
[1286] | 1337 | {
|
---|
| 1338 | const int len = attributes.getLength();
|
---|
| 1339 | Vector3 minBox, maxBox;
|
---|
[1264] | 1340 |
|
---|
| 1341 | for (int i = 0; i < len; ++ i)
|
---|
| 1342 | {
|
---|
| 1343 | string attrName(StrX(attributes.getName(i)).LocalForm());
|
---|
| 1344 | StrX attrValue(attributes.getValue(i));
|
---|
| 1345 | const char *ptr = attrValue.LocalForm();
|
---|
| 1346 |
|
---|
[1286] | 1347 | if (attrName == "min")
|
---|
[1294] | 1348 | {
|
---|
[1287] | 1349 | sscanf(ptr, "%f %f %f", &minBox.x, &minBox.y, &minBox.z);
|
---|
[1264] | 1350 | }
|
---|
[1286] | 1351 | if (attrName == "max")
|
---|
[1294] | 1352 | {
|
---|
[1287] | 1353 | sscanf(ptr, "%f %f %f", &maxBox.x, &maxBox.y, &maxBox.z);
|
---|
[1286] | 1354 | }
|
---|
[1264] | 1355 | }
|
---|
| 1356 |
|
---|
[1286] | 1357 | BvhInterior* interior = new BvhInterior(AxisAlignedBox3(minBox, maxBox));
|
---|
[1264] | 1358 |
|
---|
[1286] | 1359 | if (mCurrentBvhNode) // replace NULL child of parent with current node
|
---|
[1264] | 1360 | {
|
---|
[2017] | 1361 | BvhInterior *parent = static_cast<BvhInterior *>(mCurrentBvhNode);
|
---|
[1264] | 1362 | parent->ReplaceChildLink(NULL, interior);
|
---|
[1286] | 1363 | interior->SetParent(parent);
|
---|
[1264] | 1364 | }
|
---|
| 1365 | else
|
---|
[1294] | 1366 | {
|
---|
[1287] | 1367 | mHierarchyManager->mBvHierarchy->mRoot = interior;
|
---|
[1264] | 1368 | }
|
---|
[1294] | 1369 |
|
---|
[1286] | 1370 | mCurrentBvhNode = interior;
|
---|
[1264] | 1371 | }
|
---|
| 1372 |
|
---|
| 1373 |
|
---|
[508] | 1374 | // ---------------------------------------------------------------------------
|
---|
| 1375 | // StdInParseHandlers: Overrides of the SAX ErrorHandler interface
|
---|
| 1376 | // ---------------------------------------------------------------------------
|
---|
[1201] | 1377 |
|
---|
| 1378 |
|
---|
[508] | 1379 | void
|
---|
| 1380 | ViewCellsParseHandlers::error(const SAXParseException& e)
|
---|
| 1381 | {
|
---|
| 1382 | XERCES_STD_QUALIFIER cerr << "\nError at (file " << StrX(e.getSystemId())
|
---|
| 1383 | << ", line " << e.getLineNumber()
|
---|
| 1384 | << ", char " << e.getColumnNumber()
|
---|
| 1385 | << "): " << StrX(e.getMessage()) << XERCES_STD_QUALIFIER endl;
|
---|
| 1386 | }
|
---|
| 1387 |
|
---|
| 1388 | void
|
---|
| 1389 | ViewCellsParseHandlers::fatalError(const SAXParseException& e)
|
---|
| 1390 | {
|
---|
| 1391 | XERCES_STD_QUALIFIER cerr << "\nFatal Error at (file " << StrX(e.getSystemId())
|
---|
| 1392 | << ", line " << e.getLineNumber()
|
---|
| 1393 | << ", char " << e.getColumnNumber()
|
---|
| 1394 | << "): " << StrX(e.getMessage()) << XERCES_STD_QUALIFIER endl;
|
---|
| 1395 | }
|
---|
| 1396 |
|
---|
| 1397 | void
|
---|
| 1398 | ViewCellsParseHandlers::warning(const SAXParseException& e)
|
---|
| 1399 | {
|
---|
| 1400 | XERCES_STD_QUALIFIER cerr << "\nWarning at (file " << StrX(e.getSystemId())
|
---|
| 1401 | << ", line " << e.getLineNumber()
|
---|
| 1402 | << ", char " << e.getColumnNumber()
|
---|
| 1403 | << "): " << StrX(e.getMessage()) << XERCES_STD_QUALIFIER endl;
|
---|
| 1404 | }
|
---|
| 1405 |
|
---|
| 1406 |
|
---|
[2113] | 1407 | bool ViewCellsParser::ParseViewCellsFile(const string &filename,
|
---|
[1221] | 1408 | ViewCellsManager **viewCells,
|
---|
[2113] | 1409 | ObjectContainer &pvsObjects,
|
---|
| 1410 | ObjectContainer &preprocessorObjects,
|
---|
[1221] | 1411 | BoundingBoxConverter *bconverter)
|
---|
[508] | 1412 | {
|
---|
[2114] | 1413 | // Initialize the XML4C system
|
---|
| 1414 | try {
|
---|
| 1415 | XMLPlatformUtils::Initialize();
|
---|
| 1416 | }
|
---|
[1715] | 1417 |
|
---|
[2114] | 1418 | catch (const XMLException& toCatch)
|
---|
| 1419 | {
|
---|
| 1420 | XERCES_STD_QUALIFIER cerr << "Error during initialization! Message:\n"
|
---|
| 1421 | << StrX(toCatch.getMessage()) << XERCES_STD_QUALIFIER endl;
|
---|
| 1422 | return false;
|
---|
| 1423 | }
|
---|
[1715] | 1424 |
|
---|
[2114] | 1425 | // cout<<"parsing started"<<endl<<flush;
|
---|
[508] | 1426 |
|
---|
[2114] | 1427 | //
|
---|
| 1428 | // Create a SAX parser object. Then, according to what we were told on
|
---|
| 1429 | // the command line, set the options.
|
---|
| 1430 | //
|
---|
| 1431 | SAXParser* parser = new SAXParser;
|
---|
| 1432 | parser->setValidationScheme(valScheme);
|
---|
| 1433 | parser->setDoNamespaces(doNamespaces);
|
---|
| 1434 | parser->setDoSchema(doSchema);
|
---|
| 1435 | parser->setValidationSchemaFullChecking(schemaFullChecking);
|
---|
| 1436 |
|
---|
| 1437 |
|
---|
| 1438 | //
|
---|
| 1439 | // Create our SAX handler object and install it on the parser, as the
|
---|
| 1440 | // document and error handler. We are responsible for cleaning them
|
---|
| 1441 | // up, but since its just stack based here, there's nothing special
|
---|
| 1442 | // to do.
|
---|
| 1443 | //
|
---|
| 1444 | ViewCellsParseHandlers handler(pvsObjects, preprocessorObjects, bconverter);
|
---|
| 1445 | parser->setDocumentHandler(&handler);
|
---|
| 1446 | parser->setErrorHandler(&handler);
|
---|
| 1447 |
|
---|
| 1448 | unsigned long duration;
|
---|
| 1449 | int errorCount = 0;
|
---|
| 1450 | // create a faux scope so that 'src' destructor is called before
|
---|
| 1451 | // XMLPlatformUtils::Terminate
|
---|
[1264] | 1452 | {
|
---|
[2114] | 1453 | //
|
---|
| 1454 | // Kick off the parse and catch any exceptions. Create a standard
|
---|
| 1455 | // input input source and tell the parser to parse from that.
|
---|
| 1456 | //
|
---|
| 1457 | // StdInInputSource src;
|
---|
| 1458 | try
|
---|
| 1459 | {
|
---|
| 1460 | const unsigned long startMillis = XMLPlatformUtils::getCurrentMillis();
|
---|
[1264] | 1461 |
|
---|
[1201] | 1462 | #if USE_GZLIB
|
---|
[2114] | 1463 | XMLCh *myFilePath = XMLString::transcode(filename.c_str());
|
---|
| 1464 |
|
---|
| 1465 | GzFileInputSource isource(myFilePath);
|
---|
| 1466 | parser->parse(isource);
|
---|
[971] | 1467 | #else
|
---|
[2114] | 1468 | parser->parse(filename.c_str());
|
---|
[2048] | 1469 |
|
---|
[971] | 1470 | #endif
|
---|
| 1471 |
|
---|
[2114] | 1472 | //if (mCreatePvsObjects)
|
---|
| 1473 | // handler.ReplacePvs();
|
---|
[2048] | 1474 |
|
---|
[2114] | 1475 | const unsigned long endMillis = XMLPlatformUtils::getCurrentMillis();
|
---|
| 1476 | duration = endMillis - startMillis;
|
---|
| 1477 | errorCount = parser->getErrorCount();
|
---|
| 1478 | }
|
---|
| 1479 | catch (const OutOfMemoryException&)
|
---|
| 1480 | {
|
---|
| 1481 | XERCES_STD_QUALIFIER cerr << "OutOfMemoryException" << XERCES_STD_QUALIFIER endl;
|
---|
| 1482 | errorCount = 2;
|
---|
| 1483 | return false;
|
---|
| 1484 | }
|
---|
| 1485 | catch (const XMLException& e)
|
---|
| 1486 | {
|
---|
[870] | 1487 | XERCES_STD_QUALIFIER cerr << "\nError during parsing: \n"
|
---|
[2114] | 1488 | << StrX(e.getMessage())
|
---|
| 1489 | << "\n" << XERCES_STD_QUALIFIER endl;
|
---|
[870] | 1490 | errorCount = 1;
|
---|
| 1491 | return false;
|
---|
[2114] | 1492 | }
|
---|
[508] | 1493 |
|
---|
[2114] | 1494 |
|
---|
| 1495 | // Print out the stats that we collected and time taken
|
---|
| 1496 | if (!errorCount)
|
---|
| 1497 | {
|
---|
| 1498 | XERCES_STD_QUALIFIER cerr << filename << ": " << duration << " ms ("
|
---|
[508] | 1499 | << handler.GetElementCount() << " elems, "
|
---|
| 1500 | << handler.GetAttrCount() << " attrs, "
|
---|
| 1501 | << handler.GetSpaceCount() << " spaces, "
|
---|
| 1502 | << handler.GetCharacterCount() << " chars)" << XERCES_STD_QUALIFIER endl;
|
---|
[2114] | 1503 | }
|
---|
| 1504 | }
|
---|
[1715] | 1505 |
|
---|
[2114] | 1506 | //
|
---|
| 1507 | // Delete the parser itself. Must be done prior to calling Terminate, below.
|
---|
| 1508 | //
|
---|
| 1509 | delete parser;
|
---|
| 1510 |
|
---|
| 1511 | XMLPlatformUtils::Terminate();
|
---|
| 1512 |
|
---|
| 1513 | //-- assign new view cells manager
|
---|
| 1514 | *viewCells = handler.mViewCellsManager;
|
---|
| 1515 |
|
---|
| 1516 | if (errorCount > 0)
|
---|
| 1517 | return false;
|
---|
| 1518 | else
|
---|
| 1519 | return true;
|
---|
[556] | 1520 | }
|
---|
[860] | 1521 |
|
---|
[2114] | 1522 | } |
---|