Ignore:
Timestamp:
03/22/07 18:51:14 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreOctreeHierarchyInterface.cpp

    r2280 r2281  
    5858        Octree *octree = static_cast<Octree *>(root); 
    5959 
    60         int mask = (int) (rand() * 8.0f); 
    61          
    6260        // random decision 
    6361        Octree *child = NULL; 
    6462         
    65         while (!child) 
     63        std::vector<Octree *> nodes; 
     64 
     65        //LogManager::getSingleton().logMessage("***"); 
     66        for (int i = 0; i < 8; ++ i) 
     67        { 
     68                int x = (i & 4) / 4; 
     69                int y = (i & 2) / 2; 
     70                int z = i & 1; 
     71         
     72                if ((child = octree->mChildren[x][y][z]) != NULL) 
     73                { 
     74                        nodes.push_back(child); 
     75                } 
     76        } 
     77 
     78        if (nodes.empty()) 
     79                return NULL; 
     80 
     81        int r = (int) (rand() * (float)nodes.size()); 
     82 
     83        return GetRandomLeaf(nodes[r]); 
     84        // assume that at least one child is not NULL ... 
     85        /*while (!child) 
     86        { 
     87                int mask = (int) (rand() * 8.0f); 
    6688                child = octree->mChildren[(mask & 4) / 4][(mask & 2) / 2][mask & 1]; 
    67  
    68         return GetRandomLeaf(child); 
     89        } 
     90 
     91        return GetRandomLeaf(child);*/ 
    6992} 
    7093//----------------------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.