Skip to content
Snippets Groups Projects
TreeNode.cpp 1.56 KiB
Newer Older
#include <cfloat>
#include "TreeNode.hpp"

namespace nbody {
	using namespace std;


	TreeNode::TreeNode() {
		for (int i = 0; i < 3; i++) {
			this->bb.min[i] = 1.0;
			this->bb.max[i] = -1.0;
		}
		this->afterMySubtree = NULL;
	}

	TreeNode::~TreeNode() {
		while (!this->children.empty()) {
			delete this->children.back();
			this->children.pop_back();
		}
	}

	bool TreeNode::isSplitable() {
		for (int i = 0; i < 3; i++) {
			if (this->bb.max[i] - this->bb.min[i] < FLT_MIN) {
				return false;
			}
		}
		return true;
	}

	void TreeNode::extendBBforBodies() {
		if (this->bodies.empty()) return;
		for (int i = 0; i < 3; i++) {
			this->bb.min[i] = this->bodies.front().getPosition(i);
			this->bb.max[i] = this->bodies.front().getPosition(i);
		}
		for (vector<Body>::iterator it = this->bodies.begin(); it != this->bodies.end(); it++) {
			for (int i = 0; i < 3; i++) {
				if (it->getPosition(i) < this->bb.min[i]) {
					this->bb.min[i] = it->getPosition(i);
				}
				if (it->getPosition(i) > this->bb.max[i]) {
					this->bb.max[i] = it->getPosition(i);
				}
			}
		}
	}

	void TreeNode::extendBBtoCube() {
		int longestSide = -1;
		double sidelength = 0.0;

		for (int i = 0; i < 3; i++) {
			if (this->bb.max[i] - this->bb.min[i] >= sidelength) {
				longestSide = i;
				sidelength = this->bb.max[i] - this->bb.min[i];
			}
		}
		if (longestSide == -1) {
			return;
		}
		for (int i = 0; i < 3; i++) {
			if (i != longestSide) {
				double extend = (sidelength - (this->bb.max[i] - this->bb.min[i])) / 2.0;

				this->bb.min[i] -= extend;
				this->bb.max[i] += extend;
			}
		}
	}
}