tcod-haskell-0.1.0.0: libtcod/src/bsp.cpp
/*
* libtcod 1.6.3
* Copyright (c) 2008,2009,2010,2012,2013,2016,2017 Jice & Mingos & rmtew
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * The name of Jice or Mingos may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY JICE, MINGOS AND RMTEW ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL JICE, MINGOS OR RMTEW BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <bsp.hpp>
TCODBsp::TCODBsp(TCODBsp *father, bool left) {
if ( father->horizontal ) {
x=father->x;
w=father->w;
y = left ? father->y : father->position;
h = left ? father->position - y: father->y + father->h - father->position;
} else {
y=father->y;
h=father->h;
x = left ? father->x : father->position;
w = left ? father->position - x: father->x + father->w - father->position;
}
level=father->level+1;
}
TCODBsp::~TCODBsp() {
removeSons();
}
bool TCODBsp::traversePreOrder(ITCODBspCallback *listener, void *userData) {
if (!listener->visitNode(this,userData)) return false;
if ( getLeft() && !getLeft()->traversePreOrder(listener,userData) ) return false;
if ( getRight() && !getRight()->traversePreOrder(listener,userData)) return false;
return true;
}
bool TCODBsp::traverseInOrder(ITCODBspCallback *listener, void *userData) {
if ( getLeft() && !getLeft()->traverseInOrder(listener,userData) ) return false;
if (!listener->visitNode(this,userData)) return false;
if ( getRight() && !getRight()->traverseInOrder(listener,userData)) return false;
return true;
}
bool TCODBsp::traversePostOrder(ITCODBspCallback *listener,void *userData) {
if ( getLeft() && !getLeft()->traversePostOrder(listener,userData)) return false;
if ( getRight() && !getRight()->traversePostOrder(listener,userData)) return false;
if (!listener->visitNode(this,userData)) return false;
return true;
}
bool TCODBsp::traverseLevelOrder(ITCODBspCallback *listener, void *userData) {
TCODList<TCODBsp *> stack;
stack.push(this);
while ( ! stack.isEmpty() ) {
TCODBsp *node=stack.get(0);
stack.remove(node);
if ( node->getLeft() ) stack.push(node->getLeft());
if ( node->getRight() ) stack.push(node->getRight());
if (!listener->visitNode(node,userData)) return false;
}
return true;
}
bool TCODBsp::traverseInvertedLevelOrder(ITCODBspCallback *listener, void *userData) {
TCODList<TCODBsp *> stack1;
TCODList<TCODBsp *> stack2;
stack1.push(this);
while ( ! stack1.isEmpty() ) {
TCODBsp *node=stack1.get(0);
stack2.push(node);
stack1.remove(node);
if ( node->getLeft() ) stack1.push(node->getLeft());
if ( node->getRight() ) stack1.push(node->getRight());
}
while ( ! stack2.isEmpty() ) {
TCODBsp *node=stack2.pop();
if (!listener->visitNode(node,userData)) return false;
}
return true;
}
void TCODBsp::removeSons() {
TCODBsp *node=(TCODBsp *)sons;
while ( node ) {
TCODBsp *nextNode=(TCODBsp *)node->next;
node->removeSons();
delete node;
node=nextNode;
}
sons=NULL;
}
void TCODBsp::splitOnce(bool horizontal, int position) {
this->horizontal = horizontal;
this->position=position;
addSon(new TCODBsp(this,true));
addSon(new TCODBsp(this,false));
}
void TCODBsp::splitRecursive(TCODRandom *randomizer, int nb, int minHSize, int minVSize, float maxHRatio, float maxVRatio) {
if ( nb == 0 || (w < 2*minHSize && h < 2*minVSize ) ) return;
bool horiz;
if (! randomizer ) randomizer=TCODRandom::getInstance();
// promote square rooms
if ( h < 2*minVSize || w > h * maxHRatio ) horiz = false;
else if ( w < 2*minHSize || h > w * maxVRatio) horiz = true;
else horiz = randomizer->getInt(0,1) == 0;
int position;
if ( horiz ) {
position = randomizer->getInt(y+minVSize,y+h-minVSize);
} else {
position = randomizer->getInt(x+minHSize,x+w-minHSize);
}
splitOnce(horiz,position);
getLeft()->splitRecursive(randomizer,nb-1,minHSize,minVSize,maxHRatio,maxVRatio);
getRight()->splitRecursive(randomizer,nb-1,minHSize,minVSize,maxHRatio,maxVRatio);
}
void TCODBsp::resize(int x,int y, int w, int h) {
this->x=x;
this->y=y;
this->w=w;
this->h=h;
if ( getLeft() ) {
if ( horizontal ) {
getLeft()->resize(x,y,w,position-y);
getRight()->resize(x,position,w,y+h-position);
} else {
getLeft()->resize(x,y,position-x,h);
getRight()->resize(position,y,x+w-position,h);
}
}
}
bool TCODBsp::contains(int px, int py) const {
return (px >= x && py >= y && px < x+w && py < y+h);
}
TCODBsp *TCODBsp::findNode(int px, int py) {
if ( ! contains(px,py) ) return NULL;
if ( ! isLeaf() ) {
TCODBsp *left,*right;
left=getLeft();
if ( left->contains(px,py) ) return left->findNode(px,py);
right=getRight();
if ( right->contains(px,py) ) return right->findNode(px,py);
}
return this;
}