/*========================================================================= Program: Visualization Toolkit Module: vtkBridgeCellIteratorOne.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ // .NAME vtkBridgeCellIteratorOne - Iterate over cells of a dataset. // .SECTION See Also // vtkBridgeCellIterator, vtkBridgeDataSet, vtkBridgeCellIteratorStrategy #include "vtkBridgeCellIteratorOne.h" #include #include "vtkBridgeCell.h" #include "vtkBridgeDataSet.h" #include "vtkDataSet.h" #include "vtkObjectFactory.h" #include "vtkLine.h" #include "vtkPolyLine.h" #include "vtkPolyVertex.h" #include "vtkPolygon.h" #include "vtkTriangle.h" #include "vtkVertex.h" vtkStandardNewMacro(vtkBridgeCellIteratorOne); //------------------------------------------------------------------------------ void vtkBridgeCellIteratorOne::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os, indent); } //------------------------------------------------------------------------------ vtkBridgeCellIteratorOne::vtkBridgeCellIteratorOne() { this->DataSet = nullptr; this->InternalCell = nullptr; this->Cell = nullptr; this->Id = 0; this->cIsAtEnd = 0; // this->DebugOn(); } //------------------------------------------------------------------------------ vtkBridgeCellIteratorOne::~vtkBridgeCellIteratorOne() { if ((this->Cell != nullptr) && ((this->DataSet != nullptr) || (this->InternalCell != nullptr))) { // dataset mode or points mode this->Cell->Delete(); this->Cell = nullptr; } if (this->DataSet != nullptr) { this->DataSet->Delete(); this->DataSet = nullptr; } if (this->InternalCell != nullptr) { this->InternalCell->Delete(); this->InternalCell = nullptr; } } //------------------------------------------------------------------------------ // Description: // Move iterator to first position if any (loop initialization). void vtkBridgeCellIteratorOne::Begin() { this->cIsAtEnd = 0; } //------------------------------------------------------------------------------ // Description: // Is there no cell at iterator position? (exit condition). vtkTypeBool vtkBridgeCellIteratorOne::IsAtEnd() { return this->cIsAtEnd; } //------------------------------------------------------------------------------ // Description: // Cell at current position // \pre not_at_end: !IsAtEnd() // \pre c_exists: c!=0 // THREAD SAFE void vtkBridgeCellIteratorOne::GetCell(vtkGenericAdaptorCell* c) { assert("pre: not_at_end" && !this->IsAtEnd()); assert("pre: c_exists" && c != nullptr); vtkBridgeCell* c2 = static_cast(c); if (this->DataSet != nullptr) { c2->Init(this->DataSet, this->Id); } else { if (this->InternalCell != nullptr) { c2->InitWithCell(this->InternalCell, this->Id); } else { c2->DeepCopy(this->Cell); } } } //------------------------------------------------------------------------------ // Description: // Cell at current position. // NOT THREAD SAFE // \pre not_at_end: !IsAtEnd() // \post result_exits: result!=0 vtkGenericAdaptorCell* vtkBridgeCellIteratorOne::GetCell() { assert("pre: not_at_end" && !this->IsAtEnd()); vtkGenericAdaptorCell* result = this->Cell; assert("post: result_exits" && result != nullptr); return result; } //------------------------------------------------------------------------------ // Description: // Move iterator to next position. (loop progression). // \pre not_at_end: !IsAtEnd() void vtkBridgeCellIteratorOne::Next() { assert("pre: not_off" && !this->IsAtEnd()); this->cIsAtEnd = 1; } //------------------------------------------------------------------------------ // Description: // Used internally by vtkBridgeDataSet. // Iterate on one cell `id' of `ds'. // \pre ds_exists: ds!=0 // \pre valid_id: (id>=0)&&(id<=ds->GetNumberOfCells()) void vtkBridgeCellIteratorOne::InitWithOneCell(vtkBridgeDataSet* ds, vtkIdType cellid) { assert("pre: ds_exists" && ds != nullptr); assert("pre: valid_id" && ((cellid >= 0) && (cellid <= ds->GetNumberOfCells()))); if ((this->Cell != nullptr) && (this->DataSet == nullptr) && (this->InternalCell == nullptr)) { // previous mode was InitWithOneCell(vtkBridgeCell *c) // this->Cell->Delete(); this->Cell = nullptr; } if (this->Cell == nullptr) { // first init or previous mode was InitWithOneCell(vtkBridgeCell *c) this->Cell = vtkBridgeCell::New(); } vtkSetObjectBodyMacro(InternalCell, vtkCell, static_cast(nullptr)); vtkSetObjectBodyMacro(DataSet, vtkBridgeDataSet, ds); this->Id = cellid; this->cIsAtEnd = 1; this->Cell->Init(this->DataSet, this->Id); } //------------------------------------------------------------------------------ // Description: // Used internally by vtkBridgeCell. // Iterate on one cell `c'. // \pre c_exists: c!=0 void vtkBridgeCellIteratorOne::InitWithOneCell(vtkBridgeCell* c) { assert("pre: c_exists" && c != nullptr); if ((this->Cell != nullptr) && ((this->DataSet != nullptr) || (this->InternalCell != nullptr))) { // dataset mode or points mode this->Cell->Delete(); } vtkSetObjectBodyMacro(InternalCell, vtkCell, static_cast(nullptr)); vtkSetObjectBodyMacro(DataSet, vtkBridgeDataSet, static_cast(nullptr)); this->Cell = c; // no register to prevent reference cycle with vtkBridgeCell this->Id = c->GetId(); this->cIsAtEnd = 1; } //------------------------------------------------------------------------------ // Description: // Used internally by vtkBridgeCell. // Iterate on a boundary cell (defined by its points `pts' with coordinates // `coords', dimension `dim' and unique id `cellid') of a cell. // \pre coords_exist: coords!=0 // \pre pts_exist: pts!=0 // \pre valid_dim: dim>=0 && dim<=2 // \pre valid_points: pts->GetNumberOfIds()>dim void vtkBridgeCellIteratorOne::InitWithPoints( vtkPoints* coords, vtkIdList* pts, int dim, vtkIdType cellid) { assert("pre: coords_exist" && coords != nullptr); assert("pre: pts_exist" && pts != nullptr); assert("pre: valid_dim" && dim >= 0 && dim <= 2); assert("pre: valid_points" && pts->GetNumberOfIds() > dim); if ((this->DataSet == nullptr) && (this->InternalCell == nullptr)) { // previous mode was InitWithOneCell(vtkBridgeCell *c) // this->Cell->Delete(); this->Cell = nullptr; } if (this->Cell == nullptr) { // first init or previous mode was InitWithOneCell(vtkBridgeCell *c) this->Cell = vtkBridgeCell::New(); } vtkCell* cell = nullptr; switch (dim) { case 2: if (pts->GetNumberOfIds() == 3) { cell = vtkTriangle::New(); } else { cell = vtkPolygon::New(); } break; case 1: // line or polyline if (pts->GetNumberOfIds() == 2) { cell = vtkLine::New(); } else { cell = vtkPolyLine::New(); } break; case 0: // vertex polyvertex if (pts->GetNumberOfIds() == 1) { cell = vtkVertex::New(); } else { cell = vtkPolyVertex::New(); } break; } cell->Points = coords; cell->PointIds = pts; vtkSetObjectBodyMacro(InternalCell, vtkCell, cell); vtkSetObjectBodyMacro(DataSet, vtkBridgeDataSet, static_cast(nullptr)); this->Id = cellid; this->cIsAtEnd = 1; this->Cell->InitWithCell(this->InternalCell, this->Id); }