Files
ThirdParty-6/ParaView-5.0.1/VTK/Charts/Core/vtkPiecewiseControlPointsItem.cxx

207 lines
5.9 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkPiecewiseControlPointsItem.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 "vtkBrush.h"
#include "vtkCallbackCommand.h"
#include "vtkContext2D.h"
#include "vtkIdTypeArray.h"
#include "vtkPiecewiseFunction.h"
#include "vtkPiecewiseControlPointsItem.h"
#include "vtkObjectFactory.h"
#include "vtkPen.h"
#include "vtkPoints2D.h"
#include "vtkContextScene.h"
// to handle mouse.GetButton
#include "vtkContextMouseEvent.h"
#include <cassert>
#include <limits>
#include <algorithm>
//-----------------------------------------------------------------------------
vtkStandardNewMacro(vtkPiecewiseControlPointsItem);
//-----------------------------------------------------------------------------
vtkPiecewiseControlPointsItem::vtkPiecewiseControlPointsItem()
{
this->PiecewiseFunction = 0;
}
//-----------------------------------------------------------------------------
vtkPiecewiseControlPointsItem::~vtkPiecewiseControlPointsItem()
{
if (this->PiecewiseFunction)
{
this->PiecewiseFunction->RemoveObserver(this->Callback);
this->PiecewiseFunction->Delete();
this->PiecewiseFunction = 0;
}
}
//-----------------------------------------------------------------------------
void vtkPiecewiseControlPointsItem::PrintSelf(ostream &os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "PiecewiseFunction: ";
if (this->PiecewiseFunction)
{
os << endl;
this->PiecewiseFunction->PrintSelf(os, indent.GetNextIndent());
}
else
{
os << "(none)" << endl;
}
}
//-----------------------------------------------------------------------------
void vtkPiecewiseControlPointsItem::emitEvent(unsigned long event, void* params)
{
if (this->PiecewiseFunction)
{
this->PiecewiseFunction->InvokeEvent(event, params);
}
}
//-----------------------------------------------------------------------------
unsigned long int vtkPiecewiseControlPointsItem::GetControlPointsMTime()
{
if (this->PiecewiseFunction)
{
return this->PiecewiseFunction->GetMTime();
}
return this->GetMTime();
}
//-----------------------------------------------------------------------------
void vtkPiecewiseControlPointsItem::SetPiecewiseFunction(vtkPiecewiseFunction* t)
{
if (t == this->PiecewiseFunction)
{
return;
}
if (this->PiecewiseFunction)
{
this->PiecewiseFunction->RemoveObserver(this->Callback);
}
vtkSetObjectBodyMacro(PiecewiseFunction, vtkPiecewiseFunction, t);
if (this->PiecewiseFunction)
{
this->PiecewiseFunction->AddObserver(vtkCommand::StartEvent, this->Callback);
this->PiecewiseFunction->AddObserver(vtkCommand::ModifiedEvent, this->Callback);
this->PiecewiseFunction->AddObserver(vtkCommand::EndEvent, this->Callback);
}
this->ResetBounds();
this->ComputePoints();
}
//-----------------------------------------------------------------------------
vtkIdType vtkPiecewiseControlPointsItem::GetNumberOfPoints()const
{
return this->PiecewiseFunction ?
static_cast<vtkIdType>(this->PiecewiseFunction->GetSize()) : 0;
}
//-----------------------------------------------------------------------------
void vtkPiecewiseControlPointsItem::GetControlPoint(vtkIdType index, double* pos)const
{
const_cast<vtkPiecewiseFunction*>(this->PiecewiseFunction)
->GetNodeValue(index, pos);
}
//-----------------------------------------------------------------------------
void vtkPiecewiseControlPointsItem::SetControlPoint(vtkIdType index, double* newPos)
{
double oldPos[4];
this->PiecewiseFunction->GetNodeValue(index, oldPos);
if (newPos[0] != oldPos[0] || newPos[1] != oldPos[1] ||
newPos[2] != oldPos[2])
{
this->StartChanges();
this->PiecewiseFunction->SetNodeValue(index, newPos);
this->EndChanges();
}
}
//-----------------------------------------------------------------------------
void vtkPiecewiseControlPointsItem::EditPoint(float tX, float tY)
{
if (!this->PiecewiseFunction)
{
return;
}
this->StartChanges();
double xvms[4];
this->PiecewiseFunction->GetNodeValue(this->CurrentPoint, xvms);
xvms[2] += tX;
xvms[3] += tY;
this->PiecewiseFunction->SetNodeValue(this->CurrentPoint, xvms);
if (this->CurrentPoint > 0)
{
this->PiecewiseFunction->GetNodeValue(this->CurrentPoint - 1, xvms);
xvms[2] += tX;
xvms[3] += tY;
this->PiecewiseFunction->SetNodeValue(this->CurrentPoint - 1, xvms);
}
this->EndChanges();
}
//-----------------------------------------------------------------------------
vtkIdType vtkPiecewiseControlPointsItem::AddPoint(double* newPos)
{
if (!this->PiecewiseFunction)
{
return -1;
}
this->StartChanges();
vtkIdType addedPoint = this->PiecewiseFunction->AddPoint(newPos[0], newPos[1]);
this->Superclass::AddPointId(addedPoint);
this->EndChanges();
return addedPoint;
}
//-----------------------------------------------------------------------------
vtkIdType vtkPiecewiseControlPointsItem::RemovePoint(double* currentPoint)
{
if (!this->PiecewiseFunction)
{
return -1;
}
if (!this->IsPointRemovable(this->GetControlPointId(currentPoint)))
{
return -1;
}
this->StartChanges();
#ifndef NDEBUG
vtkIdType expectedPoint =
#endif
this->vtkControlPointsItem::RemovePoint(currentPoint);
vtkIdType removedPoint =
this->PiecewiseFunction->RemovePoint(currentPoint[0]);
assert(removedPoint == expectedPoint);
this->EndChanges();
return removedPoint;
}