WeissHapticSensorTest.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package RobotAPI::WeissHapticGroup
19  * @author Simon Ottenhaus ( simon dot ottenhaus at kit dot edu )
20  * @date 2015
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 #include "WeissHapticSensorTest.h"
26 
28 
31 
32 using namespace armarx;
33 using namespace WeissHapticGroup;
34 
35 //// DO NOT EDIT NEXT LINE
36 WeissHapticSensorTest::SubClassRegistry
37  WeissHapticSensorTest::Registry(WeissHapticSensorTest::GetName(),
39 
42  WeissHapticSensorTestGeneratedBase<WeissHapticSensorTest>(stateData)
43 {
44 }
45 
46 void
48 {
49  HapticUnitObserverInterfacePrx hapticObserver = getHapticObserver();
50  ChannelRegistry channels = hapticObserver->getAvailableChannels(false);
51  std::map<std::string, DatafieldRefPtr> tactileDatafields_MaximumValueMap;
52 
53  if (channels.size() == 0)
54  {
55  ARMARX_WARNING << "No tactile pads found";
56  }
57  else
58  {
59  ARMARX_INFO << "Creating tactile channels";
60 
61  for (std::pair<std::string, ChannelRegistryEntry> pair : channels)
62  {
63  std::string tactilePad = pair.first;
64  DatafieldRefBasePtr matrixDatafield =
65  new DatafieldRef(hapticObserver, tactilePad, "matrix");
66  DatafieldRefBasePtr matrixNulled = hapticObserver->createFilteredDatafield(
67  DatafieldFilterBasePtr(new filters::OffsetFilter()), matrixDatafield);
68  DatafieldRefBasePtr matrixMax = hapticObserver->createFilteredDatafield(
69  DatafieldFilterBasePtr(new filters::MatrixMaxFilter()), matrixNulled);
70  tactileDatafields_MaximumValueMap.insert(
71  std::make_pair(tactilePad, DatafieldRefPtr::dynamicCast(matrixMax)));
72  }
73  }
74 
75  local.setTactileDatafields_MaximumValue(tactileDatafields_MaximumValueMap);
76 }
77 
78 void
80 {
81  std::map<std::string, DatafieldRefPtr> tactileDatafields_MaximumValueMap =
82  local.getTactileDatafields_MaximumValue();
83 
84  while (!isRunningTaskStopped()) // stop run function if returning true
85  {
86  std::stringstream ss;
87  std::stringstream ssNames;
88  int max = 0;
89 
90  for (std::pair<std::string, DatafieldRefPtr> pair : tactileDatafields_MaximumValueMap)
91  {
92  std::string tactilePad = pair.first;
93  DatafieldRefPtr matrixMax = pair.second;
94  int padMax = (int)matrixMax->getDataField()->getFloat();
95  ss << padMax << "; ";
96  ssNames << tactilePad << "; ";
97  max = std::max(max, padMax);
98  }
99 
100  ARMARX_IMPORTANT << "tactile max value: " << max << "; \n\n"
101  << ss.str() << "\n"
102  << ssNames.str();
103 
104  usleep(10000); // 100ms
105  }
106 }
107 
108 void
110 {
111  // put your user code for the breaking point here
112  // execution time should be short (<100ms)
113 }
114 
115 void
117 {
118  // put your user code for the exit point here
119  // execution time should be short (<100ms)
120 }
121 
122 // DO NOT EDIT NEXT FUNCTION
125 {
126  return XMLStateFactoryBasePtr(new WeissHapticSensorTest(stateData));
127 }
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition: Logging.h:190
armarx::filters::MatrixMaxFilter
Definition: MatrixFilters.h:37
armarx::WeissHapticGroup::WeissHapticSensorTest::CreateInstance
static XMLStateFactoryBasePtr CreateInstance(XMLStateConstructorParams stateData)
Definition: WeissHapticSensorTest.cpp:124
armarx::XMLStateConstructorParams
Definition: XMLState.h:49
armarx::max
std::vector< T > max(const std::vector< T > &v1, const std::vector< T > &v2)
Definition: VectorHelpers.h:297
armarx::WeissHapticGroup::WeissHapticSensorTest::WeissHapticSensorTest
WeissHapticSensorTest(const XMLStateConstructorParams &stateData)
Definition: WeissHapticSensorTest.cpp:40
armarx::filters::OffsetFilter
The OffsetFilter class returns values relative to value from the first call of the filter....
Definition: OffsetFilter.h:40
MatrixFilters.h
armarx::XMLStateFactoryBasePtr
IceInternal::Handle< XMLStateFactoryBase > XMLStateFactoryBasePtr
Definition: XMLState.h:64
IceInternal::Handle< DatafieldRef >
DatafieldRef.h
WeissHapticSensorTest.h
armarx::XMLStateTemplate
Class for legacy to stay compatible with old statecharts.
Definition: XMLState.h:146
armarx::WeissHapticGroup::WeissHapticSensorTest::onBreak
void onBreak() override
Definition: WeissHapticSensorTest.cpp:109
armarx::WeissHapticGroup::WeissHapticSensorTest
Definition: WeissHapticSensorTest.h:30
max
T max(T t1, T t2)
Definition: gdiam.h:51
OffsetFilter.h
armarx::VariantType::DatafieldRef
const VariantTypeId DatafieldRef
Definition: DatafieldRef.h:197
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::WeissHapticGroup::WeissHapticSensorTest::run
void run() override
Definition: WeissHapticSensorTest.cpp:79
armarx::WeissHapticGroup::WeissHapticSensorTest::Registry
static SubClassRegistry Registry
Definition: WeissHapticSensorTest.h:43
armarx::WeissHapticGroup::WeissHapticSensorTest::onExit
void onExit() override
Definition: WeissHapticSensorTest.cpp:116
ARMARX_WARNING
#define ARMARX_WARNING
Definition: Logging.h:193
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::WeissHapticGroup::WeissHapticSensorTest::onEnter
void onEnter() override
Definition: WeissHapticSensorTest.cpp:47