1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
/******************************************************************************
* SOFA, Simulation Open-Framework Architecture, version 1.0 beta 4 *
* (c) 2006-2009 MGH, INRIA, USTL, UJF, CNRS *
* *
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 2.1 of the License, or (at *
* your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, but WITHOUT *
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License *
* for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
*******************************************************************************
* SOFA :: Modules *
* *
* Authors: The SOFA Team and external contributors (see Authors.txt) *
* *
* Contact information: contact@sofa-framework.org *
******************************************************************************/
#include <sofa/component/collision/SpatialGridPointModel.h>
#include <sofa/component/collision/CubeModel.h>
#include <sofa/core/ObjectFactory.h>
#include <vector>
#include <sofa/helper/system/gl.h>
namespace sofa
{
namespace component
{
namespace collision
{
SOFA_DECL_CLASS(SpatialGridPointModel)
int SpatialGridPointModelClass = core::RegisterObject("Collision model which represents a set of points, spatially grouped using a SpatialGridContainer")
.add< SpatialGridPointModel >()
;
SpatialGridPointModel::SpatialGridPointModel()
: d_leafScale(initData(&d_leafScale,0,"leafScale","at which level should the first cube layer be constructed.\nNote that this must not be greater than GRIDDIM_LOG2"))
, grid(NULL)
{
}
void SpatialGridPointModel::init()
{
this->PointModel::init();
this->getContext()->get(grid);
if (grid==NULL)
{
serr <<"SpatialGridPointModel requires a Vec3 SpatialGridContainer" << sendl;
return;
}
}
bool SpatialGridPointModel::OctreeSorter::operator()(const Grid::Key& k1, const Grid::Key& k2)
{
for (int scale = root_shift; scale >= 0; --scale)
{
for (int c=k1.size()-1;c>=0;--c)
{
if ((k1[c]>>scale) < (k2[c]>>scale))
return true;
if ((k1[c]>>scale) > (k2[c]>>scale))
return false;
}
}
// they are equal
return false;
}
void SpatialGridPointModel::computeBoundingTree(int maxDepth)
{
if (!grid)
{
this->PointModel::computeBoundingTree(maxDepth);
return;
}
const bool verbose = this->f_printLog.getValue();
int lscale = d_leafScale.getValue();
if (lscale > Grid::GRIDDIM_LOG2) lscale = Grid::GRIDDIM_LOG2;
int ldim = (1<<lscale);
int nleaf = Grid::GRIDDIM/ldim;
CubeModel* cubeModel = createPrevious<CubeModel>();
const int npoints = mstate->getX()->size();
bool updated = false;
if (npoints != size)
{
resize(npoints);
updated = true;
}
if (updated) cubeModel->resize(0);
if (!isMoving() && !cubeModel->empty() && !updated) return; // No need to recompute BBox if immobile
std::vector<OctreeCell> cells;
Grid* g = grid->getGrid();
Grid::const_iterator itgbegin = g->gridBegin();
Grid::const_iterator itgend = g->gridEnd();
//sout << "input: ";
bool sorted = true;
for (Grid::const_iterator itg = itgbegin; itg != itgend; ++itg)
{
Grid::Key k = itg->first;
Grid::Grid* g = itg->second;
if (g->empty) continue;
for (int z0 = 0; z0<nleaf; z0++)
for (int y0 = 0; y0<nleaf; y0++)
for (int x0 = 0; x0<nleaf; x0++)
{
int pfirst = -1;
int plast = -1;
Grid::Key k2;
k2[0] = k[0]*nleaf + x0;
k2[1] = k[1]*nleaf + y0;
k2[2] = k[2]*nleaf + z0;
for (int z = 0; z<ldim; z++)
for (int y = 0; y<ldim; y++)
for (int x = 0; x<ldim; x++)
{
Grid::Cell* c = g->cell+((z0*ldim+z)*Grid::DZ+(y0*ldim+y)*Grid::DY+(x0*ldim+x)*Grid::DX);
if (!c->plist.empty())
{
if (pfirst==-1)
pfirst = c->plist.front().index;
else if (c->plist.front().index != plast+1)
sorted = false;
plast = c->plist.back().index;
if (c->plist.back().index - c->plist.front().index +1 != (int)c->plist.size())
sorted = false;
}
}
if (pfirst == -1) continue;
cells.push_back(OctreeCell(k2, pfirst, plast));
//sout << " " << k2;
}
/*
int pfirst = -1;
int plast = -1;
for (int i=0; i<Grid::NCELL; ++i)
{
Grid::Cell* c = g->cell+i;
if (!c->plist.empty())
{
pfirst = c->plist.front().index;
break;
}
}
if (pfirst == -1) continue; // empty
for (int i=Grid::NCELL-1; i>=0; --i)
{
Grid::Cell* c = g->cell+i;
if (!c->plist.empty())
{
plast = c->plist.back().index;
break;
}
}
cells.push_back(OctreeCell(k, pfirst, plast));
//sout << " " << k;
*/
}
if (!sorted)
{
serr << "ERROR(SpatialGridPointModel): points are not sorted in spatial grid."<<sendl;
}
//sout << sendl;
cubeModel->resize(cells.size());
if (cells.empty()) return;
OctreeSorter s(maxDepth);
Vector3::value_type cellSize = g->getCellWidth()*ldim; // *GRIDDIM;
std::sort(cells.begin(), cells.end(), s);
//sout << "sorted: ";
for (unsigned int i=0;i<cells.size();i++)
{
Grid::Key k = cells[i].k;
//sout << " " << k;
int pfirst = cells[i].pfirst;
int plast = cells[i].plast;
Vector3 minElem, maxElem;
for (unsigned int c=0;c<k.size();++c)
{
minElem[c] = k[c]*cellSize;
maxElem[c] = (k[c]+1)*cellSize;
}
cubeModel->setLeafCube(i, std::make_pair(Iterator(this,pfirst),Iterator(this,plast+1)), minElem, maxElem); // define the bounding box of the current cell
}
//sout << sendl;
//cubeModel->computeBoundingTree(maxDepth);
int depth = 0;
while (depth < maxDepth && cells.size() > 8)
{
if (verbose) sout << "SpatialGridPointModel: cube depth "<<depth<<": "<<cells.size()<<" cells ("<<(size*100/cells.size())*0.01<<" points/cell)."<<sendl;
// compact cells inplace
int parent = -1;
for (unsigned int i=0;i<cells.size();++i)
{
Grid::Key k = cells[i].k;
//sout << " " << k;
for (unsigned int c=0;c<k.size();++c)
k[c] >>= 1;
if (parent == -1 || !(k == cells[parent].k))
{ // new parent
//sout << "->"<<k;
++parent;
cells[parent].k = k;
cells[parent].pfirst = i;
cells[parent].plast = i;
}
else
{ // continuing
cells[parent].plast = i;
}
}
//sout << sendl;
if (cells.size() > (unsigned int)parent+1)
{
cells.resize(parent+1);
CubeModel* prevCubeModel = cubeModel;
cubeModel = cubeModel->createPrevious<CubeModel>();
cubeModel->resize(0);
for (unsigned int i=0;i<cells.size();++i)
{
Grid::Key k = cells[i].k;
int pfirst = cells[i].pfirst;
int plast = cells[i].plast;
Cube cfirst(prevCubeModel, pfirst);
Cube clast(prevCubeModel, plast);
cubeModel->addCube(Cube(prevCubeModel,pfirst),Cube(prevCubeModel,plast+1));
}
}
++depth;
}
CubeModel* root = cubeModel->createPrevious<CubeModel>();
while (dynamic_cast<CubeModel*>(root->getPrevious()) != NULL)
{
root = dynamic_cast<CubeModel*>(root->getPrevious());
}
root->resize(0);
root->addCube(Cube(cubeModel,0), Cube(cubeModel,cubeModel->getSize()));
}
} // namespace collision
} // namespace component
} // namespace sofa
|