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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/*=========================================================================
Program: ParaView
Module: vtkPVDataRepresentation.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 "vtkMoleculeRepresentation.h"
#include "vtkActor.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkMath.h"
#include "vtkMolecule.h"
#include "vtkMoleculeMapper.h"
#include "vtkObjectFactory.h"
#include "vtkPVCacheKeeper.h"
#include "vtkPVRenderView.h"
#include "vtkRenderer.h"
#include "vtkView.h"
//------------------------------------------------------------------------------
vtkStandardNewMacro(vtkMoleculeRepresentation)
//------------------------------------------------------------------------------
vtkMoleculeRepresentation::vtkMoleculeRepresentation()
: MoleculeRenderMode(0)
, UseCustomRadii(false)
{
// setup mapper
this->Mapper = vtkMoleculeMapper::New();
this->Mapper->UseBallAndStickSettings();
// setup actor
this->Actor = vtkActor::New();
this->Actor->SetMapper(this->Mapper);
// initialize cache:
this->CacheKeeper->SetInputData(this->DummyMolecule.Get());
vtkMath::UninitializeBounds(this->DataBounds);
}
//------------------------------------------------------------------------------
vtkMoleculeRepresentation::~vtkMoleculeRepresentation()
{
this->Actor->Delete();
this->Mapper->Delete();
}
//------------------------------------------------------------------------------
void vtkMoleculeRepresentation::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//------------------------------------------------------------------------------
void vtkMoleculeRepresentation::SetMoleculeRenderMode(int mode)
{
if (mode != this->MoleculeRenderMode)
{
this->MoleculeRenderMode = mode;
this->SyncMapper();
this->Modified();
}
}
//------------------------------------------------------------------------------
void vtkMoleculeRepresentation::SetUseCustomRadii(bool val)
{
if (val != this->UseCustomRadii)
{
this->UseCustomRadii = val;
this->SyncMapper();
this->Modified();
}
}
//------------------------------------------------------------------------------
void vtkMoleculeRepresentation::SetLookupTable(vtkScalarsToColors* lut)
{
this->Mapper->SetLookupTable(lut);
}
//------------------------------------------------------------------------------
vtkDataObject* vtkMoleculeRepresentation::GetRenderedDataObject(int)
{
// Bounds are only valid when we have valid input. Test for them before
// returning cached object.
if (vtkMath::AreBoundsInitialized(this->DataBounds))
{
return this->CacheKeeper->GetOutputDataObject(0);
}
return NULL;
}
//------------------------------------------------------------------------------
void vtkMoleculeRepresentation::MarkModified()
{
if (!this->GetUseCache())
{
// Clear cache when caching is turned off:
this->CacheKeeper->RemoveAllCaches();
}
this->Superclass::MarkModified();
}
//------------------------------------------------------------------------------
int vtkMoleculeRepresentation::ProcessViewRequest(
vtkInformationRequestKey* request_type, vtkInformation* inInfo, vtkInformation* outInfo)
{
if (!this->Superclass::ProcessViewRequest(request_type, inInfo, outInfo))
{
return 0;
}
if (request_type == vtkPVView::REQUEST_UPDATE())
{
vtkPVRenderView::SetGeometryBounds(inInfo, this->DataBounds, this->Actor->GetMatrix());
vtkPVRenderView::SetPiece(inInfo, this, this->CacheKeeper->GetOutput());
vtkPVRenderView::SetDeliverToClientAndRenderingProcesses(inInfo, this, true, false);
}
else if (request_type == vtkPVView::REQUEST_RENDER())
{
vtkAlgorithmOutput* producerPort = vtkPVRenderView::GetPieceProducer(inInfo, this);
this->Mapper->SetInputConnection(producerPort);
this->UpdateColoringParameters();
}
return 1;
}
//------------------------------------------------------------------------------
void vtkMoleculeRepresentation::SetVisibility(bool value)
{
this->Superclass::SetVisibility(value);
this->Actor->SetVisibility(value);
}
//------------------------------------------------------------------------------
int vtkMoleculeRepresentation::FillInputPortInformation(int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkMolecule");
// Saying INPUT_IS_OPTIONAL() is essential, since representations don't have
// any inputs on client-side (in client-server, client-render-server mode) and
// render-server-side (in client-render-server mode).
info->Set(vtkAlgorithm::INPUT_IS_OPTIONAL(), 1);
return 1;
}
//------------------------------------------------------------------------------
int vtkMoleculeRepresentation::RequestData(
vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector)
{
vtkMath::UninitializeBounds(this->DataBounds);
this->CacheKeeper->SetCachingEnabled(this->GetUseCache());
this->CacheKeeper->SetCacheTime(this->GetCacheKey());
if (inputVector[0]->GetNumberOfInformationObjects() == 1)
{
vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
vtkMolecule* input = vtkMolecule::SafeDownCast(inInfo->Get(vtkDataObject::DATA_OBJECT()));
this->DummyMolecule->ShallowCopy(input);
this->DummyMolecule->GetBounds(this->DataBounds);
}
this->DummyMolecule->Modified();
this->CacheKeeper->Update();
return this->Superclass::RequestData(request, inputVector, outputVector);
}
//------------------------------------------------------------------------------
bool vtkMoleculeRepresentation::AddToView(vtkView* view)
{
vtkPVRenderView* rview = vtkPVRenderView::SafeDownCast(view);
if (rview)
{
rview->GetRenderer()->AddActor(this->Actor);
return this->Superclass::AddToView(view);
}
return false;
}
//------------------------------------------------------------------------------
bool vtkMoleculeRepresentation::RemoveFromView(vtkView* view)
{
vtkPVRenderView* rview = vtkPVRenderView::SafeDownCast(view);
if (rview)
{
rview->GetRenderer()->RemoveActor(this->Actor);
return this->Superclass::RemoveFromView(view);
}
return false;
}
//------------------------------------------------------------------------------
bool vtkMoleculeRepresentation::IsCached(double cache_key)
{
return this->CacheKeeper->IsCached(cache_key);
}
//------------------------------------------------------------------------------
void vtkMoleculeRepresentation::SyncMapper()
{
switch (this->MoleculeRenderMode)
{
case 0:
this->Mapper->UseBallAndStickSettings();
break;
case 1:
this->Mapper->UseVDWSpheresSettings();
break;
case 2:
this->Mapper->UseLiquoriceStickSettings();
break;
default:
vtkWarningMacro("Unknown MoleculeRenderMode: " << this->MoleculeRenderMode);
break;
}
// Changing the render mode can clobber the custom array setting. Set it
// back to what the user requested:
if (this->UseCustomRadii)
{
this->Mapper->SetAtomicRadiusType(vtkMoleculeMapper::CustomArrayRadius);
}
}
//------------------------------------------------------------------------------
void vtkMoleculeRepresentation::UpdateColoringParameters()
{
vtkInformation* info = this->GetInputArrayInformation(0);
vtkInformation* mInfo = this->Mapper->GetInputArrayInformation(0);
mInfo->CopyEntry(info, vtkDataObject::FIELD_ASSOCIATION());
mInfo->CopyEntry(info, vtkDataObject::FIELD_NAME());
}
|