Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/collision_detection/obb_tree.h @ 4702

Last change on this file since 4702 was 4702, checked in by patrick, 19 years ago

orxonox/trunk: a collision is now marked with a white box, not yet fully functional, since there are mission some axis to check

File size: 1.4 KB
RevLine 
[4616]1/*!
[4511]2    \file obb_tree.h
[4526]3    \brief Definition of an obb tree (object oriented Bounding Box)
[4510]4
5*/
6
[4511]7#ifndef _OBB_TREE_H
8#define _OBB_TREE_H
[4510]9
[4514]10#include "bv_tree.h"
[4551]11#include "abstract_model.h"
[4616]12#include "material.h"
[4510]13
[4616]14class Material;
[4550]15class OBBTreeNode;
[4700]16class PNode;
[4550]17
[4511]18//! A class for representing an obb tree
[4514]19class OBBTree : public BVTree {
[4510]20
[4616]21  public:
22    OBBTree();
[4682]23    OBBTree(int depth, sVec3D *verticesList, const int length);
[4616]24    virtual ~OBBTree();
[4682]25    void init();
[4510]26
[4616]27    virtual void spawnBVTree(int depth, sVec3D *verticesList, const int length);
28    virtual void flushTree();
[4510]29
[4700]30    virtual void collideWith(BVTree* tree, PNode* nodeA, PNode* nodeB);
[4528]31
[4635]32    virtual void drawBV(int depth, int drawMode) const;
[4528]33
[4702]34    Material* getMaterial(unsigned int depth) { return this->material[depth%5]; }
35    Material* getTransparentMaterial(unsigned int depth) { return this->transparentMaterial[depth%5]; }
36    Material* getCollisionMaterial() { return this->collisionMaterial; }
[4638]37    int getID() { return ++this->id;}
[4696]38    inline OBBTreeNode* getRootNode() { return this->rootNode; }
[4622]39
[4616]40    void debug();
[4546]41
[4616]42  public:
[4510]43
[4616]44
[4622]45
[4616]46  private:
47    OBBTreeNode*         rootNode;                        //!< reference to the root node of the tree
[4622]48    Material**           material;
[4670]49    Material**           transparentMaterial;
[4702]50    Material*            collisionMaterial;
[4638]51    int                  id;
[4510]52};
53
[4511]54#endif /* _OBB_TREE_H */
Note: See TracBrowser for help on using the repository browser.