Files
ThirdParty-6/ParaView-5.0.1/Plugins/VR/vtkVRInteractorStyle.cxx

517 lines
17 KiB
C++

/*=========================================================================
Program: ParaView
Module: $RCSfile$
Copyright (c) 2005,2006 Sandia Corporation, Kitware Inc.
All rights reserved.
ParaView is a free software; you can redistribute it and/or modify it
under the terms of the ParaView license version 1.2.
See License_v1.2.txt for the full ParaView license.
A copy of this license can be obtained by contacting
Kitware Inc.
28 Corporate Drive
Clifton Park, NY 12065
USA
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
========================================================================*/
#include "vtkVRInteractorStyle.h"
#include "pqApplicationCore.h"
#include "pqProxy.h"
#include "pqServerManagerModel.h"
#include "vtkObjectFactory.h"
#include "vtkPVXMLElement.h"
#include "vtkSMProxy.h"
#include "vtkSMProxyLocator.h"
#include "vtkStringList.h"
#include "vtkVRQueue.h"
#include <algorithm>
#include <sstream>
// ----------------------------------------------------------------------------
vtkStandardNewMacro(vtkVRInteractorStyle)
vtkCxxSetObjectMacro(vtkVRInteractorStyle, ControlledProxy, vtkSMProxy)
// ----------------------------------------------------------------------------
vtkVRInteractorStyle::vtkVRInteractorStyle()
: Superclass(), ControlledProxy(NULL), ControlledPropertyName(NULL)
{
}
// ----------------------------------------------------------------------------
vtkVRInteractorStyle::~vtkVRInteractorStyle()
{
this->SetControlledProxy(NULL);
this->SetControlledPropertyName(NULL);
}
// ----------------------------------------------------------------------------
bool vtkVRInteractorStyle::Configure(vtkPVXMLElement *child,
vtkSMProxyLocator *locator)
{
if (!child->GetName() || strcmp(child->GetName(),"Style") != 0 ||
strcmp(this->GetClassName(), child->GetAttributeOrEmpty("class")) != 0)
{
return false;
}
// We'll need either the proxyName, or a proxy id and locator in order to set
// the proxy
int id = -1;
bool hasProxyName = static_cast<bool>(child->GetAttribute("proxyName"));
bool hasProxyId = static_cast<bool>(locator) &&
static_cast<bool>(child->GetScalarAttribute("proxy", &id));
if (!hasProxyId && !hasProxyName)
{
return false;
}
if (child->GetAttribute("property") == NULL)
{
return false;
}
bool result = true;
for (unsigned int cc=0; cc < child->GetNumberOfNestedElements(); cc++)
{
vtkPVXMLElement* element = child->GetNestedElement(cc);
if (element && element->GetName())
{
if (strcmp(element->GetName(), "Analog") == 0)
{
const char *role = element->GetAttributeOrDefault("role", NULL);
const char *name = element->GetAttributeOrDefault("name", NULL);
if (role && name && *role && *name)
{
if (!this->SetAnalogName(role, name))
{
vtkWarningMacro(<<"Invalid analog role: " << role);
result = false;
}
}
}
else if (strcmp(element->GetName(), "Button") == 0)
{
const char *role = element->GetAttributeOrDefault("role", NULL);
const char *name = element->GetAttributeOrDefault("name", NULL);
if (role && name && *role && *name)
{
if (!this->SetButtonName(role, name))
{
vtkWarningMacro(<<"Invalid button role: " << role);
result = false;
}
}
}
else if (strcmp(element->GetName(), "Tracker") == 0)
{
const char *role = element->GetAttributeOrDefault("role", NULL);
const char *name = element->GetAttributeOrDefault("name", NULL);
if (role && name && *role && *name)
{
if (!this->SetTrackerName(role, name))
{
vtkWarningMacro(<<"Invalid tracker role: " << role);
result = false;
}
}
}
}
}
// Verify that all defined roles have named buttons:
for (StringMap::const_iterator it = this->Analogs.begin(),
itEnd = this->Analogs.end(); it != itEnd; ++it)
{
if (it->second.empty())
{
vtkWarningMacro(<<"Analog role not defined: " << it->first.c_str());
result = false;
}
}
for (StringMap::const_iterator it = this->Buttons.begin(),
itEnd = this->Buttons.end(); it != itEnd; ++it)
{
if (it->second.empty())
{
vtkWarningMacro(<<"Button role not defined: " << it->first.c_str());
result = false;
}
}
for (StringMap::const_iterator it = this->Trackers.begin(),
itEnd = this->Trackers.end(); it != itEnd; ++it)
{
if (it->second.empty())
{
vtkWarningMacro(<<"Tracker role not defined: " << it->first.c_str());
result = false;
}
}
// Locate the proxy -- prefer ID lookup.
this->ControlledProxy = NULL;
if (hasProxyId)
{
this->ControlledProxy = locator->LocateProxy(id);
}
else if (hasProxyName)
{
pqApplicationCore *core = pqApplicationCore::instance();
pqServerManagerModel *model = core->getServerManagerModel();
pqProxy *proxy = model->findItem<pqProxy*>(
child->GetAttribute("proxyName"));
if (proxy)
{
this->ControlledProxy = proxy->getProxy();
}
}
// Set property
this->SetControlledPropertyName(child->GetAttribute("property"));
// Verify settings
if (this->ControlledProxy == NULL ||
this->ControlledPropertyName == NULL ||
this->ControlledPropertyName[0] == '\0')
{
vtkWarningMacro(<<"Invalid Controlled Proxy or PropertyName. "
<< "this->ControlledProxy: " << this->ControlledProxy << " "
<< "Proxy id, locator: " << id << ", " << locator << " "
<< "Proxy name: " << child->GetAttribute("proxyName") << " "
<< "PropertyName: " << this->ControlledPropertyName);
result = false;
}
return result;
}
// ----------------------------------------------------------------------------
vtkPVXMLElement* vtkVRInteractorStyle::SaveConfiguration() const
{
vtkPVXMLElement* child = vtkPVXMLElement::New();
child->SetName("Style");
child->AddAttribute("class",this->GetClassName());
// Look up proxy name -- we'll store both name and id.
pqApplicationCore *core = pqApplicationCore::instance();
pqServerManagerModel *model = core->getServerManagerModel();
pqProxy *pqControlledProxy =
model->findItem<pqProxy*>(this->ControlledProxy);
QString name = pqControlledProxy ? pqControlledProxy->getSMName()
: QString("(unknown)");
child->AddAttribute("proxyName", qPrintable(name));
child->AddAttribute("proxy",
this->ControlledProxy
? this->ControlledProxy->GetGlobalIDAsString()
: "0");
if (this->ControlledPropertyName != NULL &&
this->ControlledPropertyName[0] != '\0')
{
child->AddAttribute("property",
this->ControlledPropertyName);
}
for (StringMap::const_iterator it = this->Analogs.begin(),
itEnd = this->Analogs.end(); it != itEnd; ++it)
{
vtkPVXMLElement *analog = vtkPVXMLElement::New();
analog->SetName("Analog");
analog->AddAttribute("role", it->first.c_str());
analog->AddAttribute("name", it->second.c_str());
child->AddNestedElement(analog);
analog->FastDelete();
}
for (StringMap::const_iterator it = this->Buttons.begin(),
itEnd = this->Buttons.end(); it != itEnd; ++it)
{
vtkPVXMLElement *button = vtkPVXMLElement::New();
button->SetName("Button");
button->AddAttribute("role", it->first.c_str());
button->AddAttribute("name", it->second.c_str());
child->AddNestedElement(button);
button->FastDelete();
}
for (StringMap::const_iterator it = this->Trackers.begin(),
itEnd = this->Trackers.end(); it != itEnd; ++it)
{
vtkPVXMLElement* tracker = vtkPVXMLElement::New();
tracker->SetName("Tracker");
tracker->AddAttribute("role", it->first.c_str());
tracker->AddAttribute("name", it->second.c_str());
child->AddNestedElement(tracker);
tracker->FastDelete();
}
return child;
}
// ----------------------------------------------------------------------------
std::vector<std::string> vtkVRInteractorStyle::Tokenize( std::string input)
{
std::replace( input.begin(), input.end(), '.', ' ' );
std::istringstream stm( input );
std::vector<std::string> token;
for (;;)
{
std::string word;
if (!(stm >> word)) break;
token.push_back(word);
}
return token;
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::AddAnalogRole(const vtkStdString &role)
{
this->Analogs.insert(StringMap::value_type(role, std::string()));
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::AddButtonRole(const vtkStdString &role)
{
this->Buttons.insert(StringMap::value_type(role, std::string()));
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::AddTrackerRole(const vtkStdString &role)
{
this->Trackers.insert(StringMap::value_type(role, std::string()));
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::MapKeysToStringList(const StringMap &source,
vtkStringList *target)
{
target->RemoveAllItems();
for (StringMap::const_iterator it = source.begin(), itEnd = source.end();
it != itEnd; ++it)
{
target->AddString(it->first.c_str());
}
}
// ----------------------------------------------------------------------------
bool vtkVRInteractorStyle::SetValueInMap(
StringMap &map_,
const vtkStdString &key, const vtkStdString &value)
{
StringMap::iterator it = map_.find(key);
if (it != map_.end())
{
it->second = value;
return true;
}
return false;
}
// ----------------------------------------------------------------------------
vtkStdString vtkVRInteractorStyle::GetValueInMap(const StringMap &map_,
const vtkStdString &key)
{
StringMap::const_iterator it = map_.find(key);
return it != map_.end() ? it->second : vtkStdString();
}
// ----------------------------------------------------------------------------
vtkStdString vtkVRInteractorStyle::GetKeyInMap(const StringMap &map_,
const vtkStdString &value)
{
for (StringMap::const_iterator it = map_.begin(), itEnd = map_.end();
it != itEnd; ++it)
{
if (it->second == value)
{
return it->first;
}
}
return vtkStdString();
}
// ----------------------------------------------------------------------------
bool vtkVRInteractorStyle::HandleEvent(const vtkVREventData& data)
{
switch( data.eventType )
{
case BUTTON_EVENT:
this->HandleButton( data );
break;
case ANALOG_EVENT:
this->HandleAnalog( data );
break;
case TRACKER_EVENT:
this->HandleTracker( data );
break;
}
return false;
}
// -----------------------------------------------------------------------------
bool vtkVRInteractorStyle::Update()
{
return true;
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::GetAnalogRoles(vtkStringList *roles)
{
this->MapKeysToStringList(this->Analogs, roles);
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::GetButtonRoles(vtkStringList *roles)
{
this->MapKeysToStringList(this->Buttons, roles);
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::GetTrackerRoles(vtkStringList *roles)
{
this->MapKeysToStringList(this->Trackers, roles);
}
// ----------------------------------------------------------------------------
int vtkVRInteractorStyle::GetNumberOfAnalogRoles()
{
return static_cast<int>(this->Analogs.size());
}
// ----------------------------------------------------------------------------
int vtkVRInteractorStyle::GetNumberOfButtonRoles()
{
return static_cast<int>(this->Buttons.size());
}
// ----------------------------------------------------------------------------
int vtkVRInteractorStyle::GetNumberOfTrackerRoles()
{
return static_cast<int>(this->Trackers.size());
}
// ----------------------------------------------------------------------------
vtkStdString vtkVRInteractorStyle::GetAnalogRole(const vtkStdString &name)
{
return this->GetKeyInMap(this->Analogs, name);
}
// ----------------------------------------------------------------------------
vtkStdString vtkVRInteractorStyle::GetButtonRole(const vtkStdString &name)
{
return this->GetKeyInMap(this->Buttons, name);
}
// ----------------------------------------------------------------------------
vtkStdString vtkVRInteractorStyle::GetTrackerRole(const vtkStdString &name)
{
return this->GetKeyInMap(this->Trackers, name);
}
// ----------------------------------------------------------------------------
bool vtkVRInteractorStyle::SetAnalogName(const vtkStdString &role,
const vtkStdString &name)
{
return this->SetValueInMap(this->Analogs, role, name);
}
// ----------------------------------------------------------------------------
vtkStdString vtkVRInteractorStyle::GetAnalogName(const vtkStdString &role)
{
return this->GetValueInMap(this->Analogs, role);
}
// ----------------------------------------------------------------------------
bool vtkVRInteractorStyle::SetButtonName(const vtkStdString &role,
const vtkStdString &name)
{
return this->SetValueInMap(this->Buttons, role, name);
}
// ----------------------------------------------------------------------------
vtkStdString vtkVRInteractorStyle::GetButtonName(const vtkStdString &role)
{
return this->GetValueInMap(this->Buttons, role);
}
// ----------------------------------------------------------------------------
bool vtkVRInteractorStyle::SetTrackerName(const vtkStdString &role,
const vtkStdString &name)
{
return this->SetValueInMap(this->Trackers, role, name);
}
// ----------------------------------------------------------------------------
vtkStdString vtkVRInteractorStyle::GetTrackerName(const vtkStdString &role)
{
return this->GetValueInMap(this->Trackers, role);
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::HandleButton( const vtkVREventData& vtkNotUsed( data ) )
{
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::HandleAnalog( const vtkVREventData& vtkNotUsed( data ) )
{
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::HandleTracker( const vtkVREventData& vtkNotUsed( data ) )
{
}
// ----------------------------------------------------------------------------
void vtkVRInteractorStyle::PrintSelf(ostream &os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "ControlledPropertyName: "
<< this->ControlledPropertyName << endl;
if (this->ControlledProxy)
{
os << indent << "ControlledProxy:" << endl;
this->ControlledProxy->PrintSelf(os, indent.GetNextIndent());
}
else
{
os << indent << "ControlledProxy: (None)" << endl;
}
vtkIndent nextIndent = indent.GetNextIndent();
os << indent << "Analogs:" << endl;
for (StringMap::const_iterator it = this->Analogs.begin(),
itEnd = this->Analogs.end(); it != itEnd; ++it)
{
os << nextIndent << it->first.c_str() << ": " << it->second.c_str() << endl;
}
os << indent << "Buttons:" << endl;
for (StringMap::const_iterator it = this->Buttons.begin(),
itEnd = this->Buttons.end(); it != itEnd; ++it)
{
os << nextIndent << it->first.c_str() << ": " << it->second.c_str() << endl;
}
os << indent << "Trackers:" << endl;
for (StringMap::const_iterator it = this->Trackers.begin(),
itEnd = this->Trackers.end(); it != itEnd; ++it)
{
os << nextIndent << it->first.c_str() << ": " << it->second.c_str() << endl;
}
}