/**************************************************************************** * VCGLib o o * * Visual and Computer Graphics Library o o * * _ O _ * * Copyright(C) 2004 \/)\/ * * Visual Computing Lab /\/| * * ISTI - Italian National Research Council | * * \ * * All rights reserved. * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 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 General Public License (http://www.gnu.org/licenses/gpl.txt) * * for more details. * * * ****************************************************************************/ /**************************************************************************** History $Log: not supported by cvs2svn $ ****************************************************************************/ #ifndef __VCG_TETRA_PLUS #define __VCG_TETRA_PLUS #include #include #include #include namespace vcg { /*------------------------------------------------------------------*/ /* The base class of all the recusive definition chain. It is just a container of the typenames of the various simplexes. These typenames must be known form all the derived classes. */ template class TetraTypeHolder{ public: typedef BVT VertexType; typedef typename VertexType::CoordType CoordType; typedef typename VertexType::ScalarType ScalarType; typedef BET EdgeType; typedef BFT FaceType; typedef BTT TetraType; typedef BVT *VertPointer; typedef BET *EdgePointer; typedef BFT *FacePointer; typedef BTT *TetraPointer; static void Name(std::vector & name){} // prot }; /* The base class form which we start to add our components. it has the empty definition for all the standard members (coords, color flags) Note: in order to avoid both virtual classes and ambiguous definitions all the subsequent overrides must be done in a sequence of derivation. In other words we cannot derive and add in a single derivation step (with multiple ancestor), both the real (non-empty) normal and color but we have to build the type a step a time (deriving from a single ancestor at a time). */ template class TetraBase: public tetra::EmptyVertexRef< tetra::EmptyAdj< TetraTypeHolder > > { }; // Metaprogramming Core template class A> class TetraArity1: public A > {}; template class A, template class B> class TetraArity2: public B > {}; template class A, template class B, template class C > class TetraArity3: public C > {}; template class A, template class B, template class C, template class D> class TetraArity4: public D > {}; template class A, template class B, template class C, template class D, template class E > class TetraArity5: public E > {}; template class A, template class B, template class C, template class D, template class E, template class F > class TetraArity6: public F > {}; template class A, template class B, template class C, template class D, template class E, template class F, template class G > class TetraArity7: public G > {}; template class A, template class B, template class C, template class D, template class E, template class F, template class G, template class H > class TetraArity8: public H > {}; /* The Real Big Face class; The class __FaceArityMax__ is the one that is the Last to be derived, and therefore is the only one to know the real members (after the many overrides) so all the functions with common behaviour using the members defined in the various Empty/nonEmpty component classes MUST be defined here. I.e. IsD() that uses the overridden Flags() member must be defined here. */ template class A, template class B, template class C, template class D, template class E, template class F, template class G, template class H, template class I > class TetraArityMax: public I > { // ----- Flags stuff ----- public: inline int & UberFlags () { return this->Flags(); } inline const int UberFlags() const { return this->Flags(); } enum { DELETED = 0x00000001, // Face is deleted from the mesh NOTREAD = 0x00000002, // Face of the mesh is not readable NOTWRITE = 0x00000004, // Face of the mesh is not writable VISITED = 0x00000010, // Face has been visited. Usualy this is a per-algorithm used bit. SELECTED = 0x00000020, // Face is selected. Algorithms should try to work only on selected face (if explicitly requested) // Border _flags, it is assumed that BORDERi = BORDER0<Flags() & DELETED) != 0;} /// checks if the Face is readable bool IsR() const {return (this->Flags() & NOTREAD) == 0;} /// checks if the Face is modifiable bool IsW() const {return (this->Flags() & NOTWRITE)== 0;} /// This funcion checks whether the Face is both readable and modifiable bool IsRW() const {return (this->Flags() & (NOTREAD | NOTWRITE)) == 0;} /// checks if the Face is Modified bool IsS() const {return (this->Flags() & SELECTED) != 0;} /// checks if the Face is Modified bool IsV() const {return (this->Flags() & VISITED) != 0;} /** Set the flag value @param flagp Valore da inserire nel flag */ void SetFlags(int flagp) {this->Flags()=flagp;} /** Set the flag value @param flagp Valore da inserire nel flag */ void ClearFlags() {this->Flags()=0;} /// deletes the Face from the mesh void SetD() {this->Flags() |=DELETED;} /// un-delete a Face void ClearD() {this->Flags() &=(~DELETED);} /// marks the Face as readable void SetR() {this->Flags() &=(~NOTREAD);} /// marks the Face as not readable void ClearR() {this->Flags() |=NOTREAD;} /// marks the Face as writable void SetW() {this->Flags() &=(~NOTWRITE);} /// marks the Face as notwritable void ClearW() {this->Flags() |=NOTWRITE;} /// select the Face void SetS() {this->Flags() |=SELECTED;} /// Un-select a Face void ClearS() {this->Flags() &= ~SELECTED;} /// select the Face void SetV() {this->Flags() |=VISITED;} /// Un-select a Face void ClearV() {this->Flags() &= ~VISITED;} /// This function checks if the face is selected bool IsB(int i) const {return (this->Flags() & (BORDER0<Flags() |=(BORDER0<Flags() &= (~(BORDER0<>1; return true; } assert(0); return false; } /// This function checks if the given user bit is true bool IsUserBit(int userBit){return (this->Flags() & userBit) != 0;} /// This function set the given user bit void SetUserBit(int userBit){this->Flags() |=userBit;} /// This function clear the given user bit void ClearUserBit(int userBit){this->Flags() &= (~userBit);} template void GetBBox( BoxType & bb ) const { bb.Set(this->P(0)); bb.Add(this->P(1)); bb.Add(this->P(2)); } }; template < typename T=int> class TetraDefaultDeriver : public T {}; /* These are the three main classes that are used by the library user to define its own Facees. The user MUST specify the names of all the type involved in a generic complex. so for example when defining a Face of a trimesh you must know the name of the type of the edge and of the face. Typical usage example: A Face with coords, flags and normal for use in a standard trimesh: class MyFaceNf : public FaceSimp2< VertProto, EdgeProto, MyFaceNf, face::Flag, face::Normal3f > {}; A Face with coords, and normal for use in a tetrahedral mesh AND in a standard trimesh: class TetraFace : public FaceSimp3< VertProto, EdgeProto, TetraFace, TetraProto, face::Coord3d, face::Normal3f > {}; A summary of the components that can be added to a face (see components.h for details): VertexRef Mark //Incremental mark (int) VTAdj //Topology vertex face adjacency (pointers to next face in the ring of the vertex TTAdj //topology: face face adj pointers to adjacent faces */ template class A = TetraDefaultDeriver, template class B = TetraDefaultDeriver, template class C = TetraDefaultDeriver, template class D = TetraDefaultDeriver, template class E = TetraDefaultDeriver, template class F = TetraDefaultDeriver, template class G = TetraDefaultDeriver, template class H = TetraDefaultDeriver, template class I = TetraDefaultDeriver > class TetraSimp3: public TetraArityMax {}; class DumTT; template class A = TetraDefaultDeriver, template class B = TetraDefaultDeriver, template class C = TetraDefaultDeriver, template class D = TetraDefaultDeriver, template class E = TetraDefaultDeriver, template class F = TetraDefaultDeriver, template class G = TetraDefaultDeriver, template class H = TetraDefaultDeriver, template class I = TetraDefaultDeriver > class TetraSimp2: public TetraArityMax {}; }// end namespace #endif