This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-zoom-plusplus/BSPTree.cpp

165 lines
4.8 KiB
C++
Raw Normal View History

2009-12-14 13:54:34 +01:00
/*
* BSPTree.cpp
*
* Copyright (C) 2009 Matthias Schiffer <matthias@gamezock.de>
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
*/
2009-12-13 18:49:36 +01:00
2009-12-14 13:54:34 +01:00
#include "BSPTree.h"
2009-12-13 18:49:36 +01:00
namespace Zoom {
vmml::vec3f BSPTree::Plane::intersection(const vmml::vec3f &p, const vmml::vec3f &dir) const {
float r = (d - p.dot(normal))/dir.dot(normal);
return p + r*dir;
}
2009-12-14 13:54:34 +01:00
void BSPTree::Plane::partition(const TriangleRecord &t, std::list<TriangleRecord> *front, std::list<TriangleRecord> *back) const {
2009-12-13 18:49:36 +01:00
for(int i = 0; i < 3; ++i) {
2009-12-14 13:54:34 +01:00
if(contains(t.triangle.getVertex(i))) {
const vmml::vec3f *v[3] = {&t.triangle.getVertex(i), &t.triangle.getVertex((i+1)%3), &t.triangle.getVertex((i+2)%3)};
2009-12-13 18:49:36 +01:00
vmml::vec3f is = intersection(*v[1], *v[2]-*v[1]);
if(isInFront(*v[1])) {
2009-12-14 13:54:34 +01:00
front->push_back(TriangleRecord(Triangle(*v[0], *v[1], is, t.triangle.getColor()), t.data));
back->push_back(TriangleRecord(Triangle(*v[0], is, *v[2], t.triangle.getColor()), t.data));
2009-12-13 18:49:36 +01:00
}
else {
2009-12-14 13:54:34 +01:00
back->push_back(TriangleRecord(Triangle(*v[0], *v[1], is, t.triangle.getColor()), t.data));
front->push_back(TriangleRecord(Triangle(*v[0], is, *v[2], t.triangle.getColor()), t.data));
2009-12-13 18:49:36 +01:00
}
return;
}
}
for(int i = 0; i < 3; ++i) {
2009-12-14 13:54:34 +01:00
const vmml::vec3f *v[3] = {&t.triangle.getVertex(i), &t.triangle.getVertex((i+1)%3), &t.triangle.getVertex((i+2)%3)};
2009-12-13 18:49:36 +01:00
if((isInFront(*v[0]) && isBehind(*v[1]) && isBehind(*v[2]))
|| (isBehind(*v[0]) && isInFront(*v[1]) && isInFront(*v[2]))) {
vmml::vec3f is1 = intersection(*v[0], *v[1]-*v[0]);
vmml::vec3f is2 = intersection(*v[0], *v[2]-*v[0]);
if(isInFront(*v[0])) {
2009-12-14 13:54:34 +01:00
front->push_back(TriangleRecord(Triangle(*v[0], is1, is2, t.triangle.getColor()), t.data));
back->push_back(TriangleRecord(Triangle(is1, *v[1], is2, t.triangle.getColor()), t.data));
back->push_back(TriangleRecord(Triangle(*v[1], *v[2], is2, t.triangle.getColor()), t.data));
2009-12-13 18:49:36 +01:00
}
else {
2009-12-14 13:54:34 +01:00
back->push_back(TriangleRecord(Triangle(*v[0], is1, is2, t.triangle.getColor()), t.data));
front->push_back(TriangleRecord(Triangle(is1, *v[1], is2, t.triangle.getColor()), t.data));
front->push_back(TriangleRecord(Triangle(*v[1], *v[2], is2, t.triangle.getColor()), t.data));
2009-12-13 18:49:36 +01:00
}
return;
}
}
}
2009-12-14 13:54:34 +01:00
BSPTree::BSPTree(const std::list<TriangleRecord> &triangles) : frontTree(0), backTree(0) {
2009-12-13 18:49:36 +01:00
const Triangle *planeT = findNearestTriangle(triangles, findCenter(triangles));
if(!planeT)
return;
plane = Plane(*planeT);
2009-12-14 13:54:34 +01:00
std::list<TriangleRecord> front, back;
2009-12-13 18:49:36 +01:00
2009-12-14 13:54:34 +01:00
for(std::list<TriangleRecord>::const_iterator t = triangles.begin(); t != triangles.end(); ++t) {
if(t->triangle.isDegenerate())
2009-12-13 18:49:36 +01:00
continue;
2009-12-14 13:54:34 +01:00
if(plane.contains(t->triangle)) {
2009-12-13 18:49:36 +01:00
this->triangles.push_back(*t);
continue;
}
2009-12-14 13:54:34 +01:00
else if(plane.isInFront(t->triangle)) {
2009-12-13 18:49:36 +01:00
front.push_back(*t);
continue;
}
2009-12-14 13:54:34 +01:00
else if(plane.isBehind(t->triangle)) {
2009-12-13 18:49:36 +01:00
back.push_back(*t);
continue;
}
2009-12-14 13:54:34 +01:00
plane.partition(*t, &front, &back);
2009-12-13 18:49:36 +01:00
}
if(!front.empty())
frontTree = new BSPTree(front);
if(!back.empty())
backTree = new BSPTree(back);
}
BSPTree& BSPTree::operator=(const BSPTree &tree) {
if(frontTree) {
delete frontTree;
frontTree = 0;
}
if(backTree) {
delete backTree;
backTree = 0;
}
plane = tree.plane;
triangles = tree.triangles;
if(tree.frontTree)
frontTree = new BSPTree(*tree.frontTree);
if(tree.backTree)
backTree = new BSPTree(*tree.backTree);
return *this;
}
2009-12-14 13:54:34 +01:00
vmml::vec3f BSPTree::findCenter(const std::list<TriangleRecord> &triangles) {
2009-12-13 18:49:36 +01:00
vmml::vec3f v;
2009-12-14 13:54:34 +01:00
for(std::list<TriangleRecord>::const_iterator t = triangles.begin(); t != triangles.end(); ++t) {
v += t->triangle.getCenter();
2009-12-13 18:49:36 +01:00
}
return v/triangles.size();
}
2009-12-14 13:54:34 +01:00
const Triangle* BSPTree::findNearestTriangle(const std::list<TriangleRecord> &triangles, const vmml::vec3f &v) {
2009-12-13 18:49:36 +01:00
const Triangle *current = 0;
float distanceSq;
2009-12-14 13:54:34 +01:00
for(std::list<TriangleRecord>::const_iterator t = triangles.begin(); t != triangles.end(); ++t) {
if(t->triangle.isDegenerate())
2009-12-13 18:49:36 +01:00
continue;
2009-12-14 13:54:34 +01:00
float d = t->triangle.getCenter().squared_distance(v);
2009-12-13 18:49:36 +01:00
if(!current || d < distanceSq) {
2009-12-14 13:54:34 +01:00
current = &t->triangle;
2009-12-13 18:49:36 +01:00
distanceSq = d;
}
}
return current;
}
}