Skip to content
Snippets Groups Projects
Commit e9af5800 authored by Mirko Wächter's avatar Mirko Wächter
Browse files

Merge branch 'master' of https://gitlab.com/ArmarX/RobotAPI

parents a1249123 1a13de52
No related branches found
No related tags found
No related merge requests found
......@@ -545,46 +545,51 @@ namespace armarx
for (int i = 0; i < selectedChannels.size(); i++)
{
ARMARX_VERBOSE << "Channel: " << selectedChannels.at(i).toStdString() << flush;
DataFieldIdentifierPtr identifier = new DataFieldIdentifier(selectedChannels.at(i).toStdString());
auto prx = getProxy<ObserverInterfacePrx>(identifier->observerName);
VariantPtr var = VariantPtr::dynamicCast(prx->getDataField(identifier));
if (VariantType::IsBasicType(var->getType()))
try
{
QwtPlotCurve* curve = createCurve(selectedChannels.at(i));
curves[selectedChannels.at(i).toStdString()] = curve;
QwtThermo* bar = createBar(selectedChannels.at(i));
bars[selectedChannels.at(i).toStdString()] = bar;
ARMARX_VERBOSE << "Channel: " << selectedChannels.at(i).toStdString() << flush;
DataFieldIdentifierPtr identifier = new DataFieldIdentifier(selectedChannels.at(i).toStdString());
auto prx = getProxy<ObserverInterfacePrx>(identifier->observerName);
VariantPtr var = VariantPtr::dynamicCast(prx->getDataField(identifier));
}
else
{
auto id = identifier->getIdentifierStr();
ARMARX_IMPORTANT << id;
auto dict = JSONObject::ConvertToBasicVariantMap(json, var);
if (VariantType::IsBasicType(var->getType()))
{
QwtPlotCurve* curve = createCurve(selectedChannels.at(i));
curves[selectedChannels.at(i).toStdString()] = curve;
for (auto e : dict)
QwtThermo* bar = createBar(selectedChannels.at(i));
bars[selectedChannels.at(i).toStdString()] = bar;
}
else
{
VariantTypeId type = e.second->getType();
auto id = identifier->getIdentifierStr();
ARMARX_IMPORTANT << id;
auto dict = JSONObject::ConvertToBasicVariantMap(json, var);
if (type == VariantType::Double
|| type == VariantType::Float
|| type == VariantType::Int)
for (auto e : dict)
{
std::string key = id + "." + e.first;
ARMARX_INFO << key << ": " << *VariantPtr::dynamicCast(e.second);
QwtPlotCurve* curve = createCurve(QString::fromStdString(key));
curves[key] = curve;
VariantTypeId type = e.second->getType();
if (type == VariantType::Double
|| type == VariantType::Float
|| type == VariantType::Int)
{
std::string key = id + "." + e.first;
ARMARX_INFO << key << ": " << *VariantPtr::dynamicCast(e.second);
QwtPlotCurve* curve = createCurve(QString::fromStdString(key));
curves[key] = curve;
QwtThermo* bar = createBar(QString::fromStdString(key));
bars[key] = bar;
QwtThermo* bar = createBar(QString::fromStdString(key));
bars[key] = bar;
}
}
}
}
catch(...)
{
handleExceptions();
}
}
ui.qwtPlot->replot();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment