1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkLevelIdScalars.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.
=========================================================================*/
#include "vtkLevelIdScalars.h"
#include "vtkAMRBox.h"
#include "vtkCellData.h"
#include "vtkHierarchicalBoxDataSet.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkUniformGrid.h"
#include "vtkUnsignedCharArray.h"
vtkStandardNewMacro(vtkLevelIdScalars);
//----------------------------------------------------------------------------
vtkLevelIdScalars::vtkLevelIdScalars()
{
}
//----------------------------------------------------------------------------
vtkLevelIdScalars::~vtkLevelIdScalars()
{
}
//----------------------------------------------------------------------------
// Map ids into attribute data
int vtkLevelIdScalars::RequestData(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
vtkHierarchicalBoxDataSet *input = vtkHierarchicalBoxDataSet::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
if (!input)
{
return 0;
}
vtkInformation* info = outputVector->GetInformationObject(0);
vtkHierarchicalBoxDataSet *output = vtkHierarchicalBoxDataSet::SafeDownCast(
info->Get(vtkDataObject::DATA_OBJECT()));
if (!output)
{
return 0;
}
unsigned int numLevels = input->GetNumberOfLevels();
output->SetNumberOfLevels(numLevels);
for (unsigned int levelIdx=0; levelIdx<numLevels; levelIdx++)
{
unsigned int numDS = input->GetNumberOfDataSets(levelIdx);
output->SetNumberOfDataSets(levelIdx, numDS);
// Copy level metadata.
if (input->HasLevelMetaData(levelIdx))
{
output->GetLevelMetaData(levelIdx)->Copy(
input->GetLevelMetaData(levelIdx));
}
for (unsigned int cc=0; cc < numDS; cc++)
{
vtkAMRBox box;
vtkUniformGrid* ds = input->GetDataSet(levelIdx, cc, box);
if (ds)
{
vtkUniformGrid* copy = this->ColorLevel(ds, levelIdx);
output->SetDataSet(levelIdx, cc, box, copy);
copy->Delete();
}
// Copy meta data for each dataset within a level.
if (input->HasMetaData(levelIdx, cc))
{
output->GetMetaData(levelIdx, cc)->Copy(
input->GetMetaData(levelIdx, cc));
}
}
}
return 1;
}
//----------------------------------------------------------------------------
vtkUniformGrid* vtkLevelIdScalars::ColorLevel(
vtkUniformGrid* input, int group)
{
vtkUniformGrid* output = 0;
output = input->NewInstance();
output->ShallowCopy(input);
vtkDataSet* dsOutput = vtkDataSet::SafeDownCast(output);
vtkIdType numCells = dsOutput->GetNumberOfCells();
vtkUnsignedCharArray* cArray = vtkUnsignedCharArray::New();
cArray->SetNumberOfTuples(numCells);
for (vtkIdType cellIdx=0; cellIdx<numCells; cellIdx++)
{
cArray->SetValue(cellIdx, group);
}
cArray->SetName("BlockIdScalars");
dsOutput->GetCellData()->AddArray(cArray);
cArray->Delete();
return output;
}
//----------------------------------------------------------------------------
void vtkLevelIdScalars::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|