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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkGenericVertexAttributeMapping.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 "vtkGenericVertexAttributeMapping.h"
#include "vtkObjectFactory.h"
#include <string>
#include <vector>
#include <vtksys/ios/sstream>
class vtkGenericVertexAttributeMapping::vtkInternal
{
public:
struct vtkInfo
{
std::string AttributeName;
std::string ArrayName;
int FieldAssociation;
int Component;
int TextureUnit;
};
typedef std::vector<vtkInfo> VectorType;
VectorType Mappings;
};
vtkStandardNewMacro(vtkGenericVertexAttributeMapping);
//----------------------------------------------------------------------------
vtkGenericVertexAttributeMapping::vtkGenericVertexAttributeMapping()
{
this->Internal = new vtkInternal();
}
//----------------------------------------------------------------------------
vtkGenericVertexAttributeMapping::~vtkGenericVertexAttributeMapping()
{
delete this->Internal;
}
//----------------------------------------------------------------------------
void vtkGenericVertexAttributeMapping::AddMapping(
const char* attributeName, const char* arrayName, int fieldAssociation,
int component)
{
if (!attributeName || !arrayName)
{
vtkErrorMacro("arrayName and attributeName cannot be null.");
return;
}
if (this->RemoveMapping(attributeName))
{
vtkWarningMacro("Replacing existing mapping for attribute "
<< attributeName);
}
vtkInternal::vtkInfo info;
info.AttributeName = attributeName;
info.ArrayName = arrayName;
info.FieldAssociation = fieldAssociation;
info.Component = component;
info.TextureUnit = -1;
this->Internal->Mappings.push_back(info);
}
//----------------------------------------------------------------------------
void vtkGenericVertexAttributeMapping::AddMapping(
int unit, const char* arrayName, int fieldAssociation,
int component)
{
vtksys_ios::ostringstream attributeName;
attributeName << unit;
if (this->RemoveMapping(attributeName.str().c_str()))
{
vtkWarningMacro("Replacing existing mapping for attribute "
<< attributeName.str().c_str());
}
vtkInternal::vtkInfo info;
info.AttributeName = attributeName.str().c_str();
info.ArrayName = arrayName;
info.FieldAssociation = fieldAssociation;
info.Component = component;
info.TextureUnit = unit;
this->Internal->Mappings.push_back(info);
}
//----------------------------------------------------------------------------
bool vtkGenericVertexAttributeMapping::RemoveMapping(const char* attributeName)
{
vtkInternal::VectorType::iterator iter;
for (iter=this->Internal->Mappings.begin();
iter != this->Internal->Mappings.end(); ++iter)
{
if (iter->AttributeName == attributeName)
{
this->Internal->Mappings.erase(iter);
return true;
}
}
return false;
}
//----------------------------------------------------------------------------
void vtkGenericVertexAttributeMapping::RemoveAllMappings()
{
this->Internal->Mappings.clear();
}
//----------------------------------------------------------------------------
unsigned int vtkGenericVertexAttributeMapping::GetNumberOfMappings()
{
return static_cast<unsigned int>(this->Internal->Mappings.size());
}
//----------------------------------------------------------------------------
const char* vtkGenericVertexAttributeMapping::GetAttributeName(unsigned int index)
{
if (index >= this->Internal->Mappings.size())
{
vtkErrorMacro("Invalid index " << index);
return 0;
}
return this->Internal->Mappings[index].AttributeName.c_str();
}
//----------------------------------------------------------------------------
const char* vtkGenericVertexAttributeMapping::GetArrayName(unsigned int index)
{
if (index >= this->Internal->Mappings.size())
{
vtkErrorMacro("Invalid index " << index);
return 0;
}
return this->Internal->Mappings[index].ArrayName.c_str();
}
//----------------------------------------------------------------------------
int vtkGenericVertexAttributeMapping::GetFieldAssociation(unsigned int index)
{
if (index >= this->Internal->Mappings.size())
{
vtkErrorMacro("Invalid index " << index);
return 0;
}
return this->Internal->Mappings[index].FieldAssociation;
}
//----------------------------------------------------------------------------
int vtkGenericVertexAttributeMapping::GetComponent(unsigned int index)
{
if (index >= this->Internal->Mappings.size())
{
vtkErrorMacro("Invalid index " << index);
return 0;
}
return this->Internal->Mappings[index].Component;
}
//----------------------------------------------------------------------------
int vtkGenericVertexAttributeMapping::GetTextureUnit(unsigned int index)
{
if (index >= this->Internal->Mappings.size())
{
vtkErrorMacro("Invalid index " << index);
return 0;
}
return this->Internal->Mappings[index].TextureUnit;
}
//----------------------------------------------------------------------------
void vtkGenericVertexAttributeMapping::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
vtkInternal::VectorType::iterator iter;
for (iter=this->Internal->Mappings.begin();
iter != this->Internal->Mappings.end(); ++iter)
{
os << indent << "Mapping: "
<< iter->AttributeName.c_str() << ", "
<< iter->ArrayName.c_str() << ", "
<< iter->FieldAssociation << ", "
<< iter->Component << endl;
}
}
|