Robot Simulator of the Robotics Group for Self-Organization of Control  0.8.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
raysensorbank.h
Go to the documentation of this file.
1 /***************************************************************************
2  * Copyright (C) 2005-2011 LpzRobots development team *
3  * Georg Martius <georg dot martius at web dot de> *
4  * Frank Guettler <guettler at informatik dot uni-leipzig dot de *
5  * Frank Hesse <frank at nld dot ds dot mpg dot de> *
6  * Ralf Der <ralfder at mis dot mpg dot de> *
7  * *
8  * This program is free software; you can redistribute it and/or modify *
9  * it under the terms of the GNU General Public License as published by *
10  * the Free Software Foundation; either version 2 of the License, or *
11  * (at your option) any later version. *
12  * *
13  * This program is distributed in the hope that it will be useful, *
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16  * GNU General Public License for more details. *
17  * *
18  * You should have received a copy of the GNU General Public License *
19  * along with this program; if not, write to the *
20  * Free Software Foundation, Inc., *
21  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22  * *
23  ***************************************************************************/
24 #ifndef __RAYSENSORBANK_H
25 #define __RAYSENSORBANK_H
26 
27 #include <vector>
28 #include "raysensor.h"
29 
30 namespace lpzrobots {
31 
32 /** Class for a bank (collection) of ray sensors.
33  Ray sensors can be registered at the bank. Methods for sensing
34  and reading the sensor values of all sensors are provided.
35  */
36  class RaySensorBank : public PhysicalSensor {
37  public:
38  RaySensorBank();
39 
40  virtual ~RaySensorBank();
41 
42  virtual void setInitData(const OdeHandle& odeHandle,
43  const OsgHandle& osgHandle,
44  const osg::Matrix& pose) override;
45 
46  // ---- Sensor interface -----
47  virtual void init(Primitive* own, Joint* joint = 0) override;
48 
49  virtual int getSensorNumber() const override;
50 
51  virtual bool sense(const GlobalData& globaldata) override;
52 
53  virtual int get(sensor* sensors, int length) const override;
54  virtual std::list<sensor> getList() const override;
55 
56  virtual void update() override;
57 
58  /** registers a new sensor at the sensor bank. The body and the pose have to be provided.
59  @param raysensor RaySensor to add
60  @param body body to which the sensor should be connected
61  @param pose relative position/orientation
62  @param range maximum sense range of the sensor
63  @return index of the sensor
64  */
65  virtual unsigned int registerSensor(RaySensor* raysensor, Primitive* body,
66  const osg::Matrix& pose, float range,
67  RaySensor::rayDrawMode drawMode);
68 
69 
70 
71  /// returns the number of sensors
72  virtual int size() { return bank.size(); }
73 
74 
75  /** set the range of the specified sensor (index)
76  @param index index of sensor to modify
77  @param range new length of the sensor
78  */
79  virtual void setRange(unsigned int index, float range);
80 
81  /** set the range of all sensors
82  @param range new length of the sensors
83  */
84  virtual void setRange(float range);
85 
86  /** returns the spaceID of the sensor space
87  */
88  virtual dSpaceID getSpaceID();
89 
90 
91  // delete all registered sensors.
92  virtual void clear();
93 
94  // returns true if initialized
95  virtual bool isInitialized() { return initialized;}
96 
97  protected:
98  std::vector<RaySensor*> bank;
100  };
101 
102 }
103 
104 #endif
Class for a bank (collection) of ray sensors.
Definition: raysensorbank.h:36
OdeHandle odeHandle
Definition: physicalsensor.h:58
virtual unsigned int registerSensor(RaySensor *raysensor, Primitive *body, const osg::Matrix &pose, float range, RaySensor::rayDrawMode drawMode)
registers a new sensor at the sensor bank.
Definition: raysensorbank.cpp:60
Data structure for accessing the ODE.
Definition: odehandle.h:44
Matrixd Matrix
Definition: osgforwarddecl.h:47
RaySensorBank()
Definition: raysensorbank.cpp:35
Definition: joint.h:41
rayDrawMode
Definition: raysensor.h:56
virtual bool sense(const GlobalData &globaldata) override
performs sense action
Definition: raysensorbank.cpp:72
virtual void setInitData(const OdeHandle &odeHandle, const OsgHandle &osgHandle, const osg::Matrix &pose) override
sets the initial data structures
Definition: raysensorbank.cpp:48
virtual std::list< sensor > getList() const override
returns a list of sensor values (usually in the range [-1,1] ) This function should be overloaded...
Definition: raysensorbank.cpp:88
double sensor
Definition: types.h:29
Data structure for accessing the OpenSceneGraph.
Definition: osghandle.h:79
virtual int getSensorNumber() const override
returns the number of sensors values produced by this sensor
Definition: raysensorbank.cpp:92
virtual bool isInitialized()
Definition: raysensorbank.h:95
bool initialized
Definition: raysensorbank.h:99
virtual int size()
returns the number of sensors
Definition: raysensorbank.h:72
virtual void update() override
to update any visual appearance
Definition: raysensorbank.cpp:112
virtual void clear()
Definition: raysensorbank.cpp:119
Interface class for primitives represented in the physical and graphical world.
Definition: primitive.h:80
virtual ~RaySensorBank()
Definition: raysensorbank.cpp:38
Data structure holding all essential global information.
Definition: globaldata.h:57
std::vector< RaySensor * > bank
Definition: raysensorbank.h:98
virtual void setRange(unsigned int index, float range)
set the range of the specified sensor (index)
Definition: raysensorbank.cpp:96
osg::Matrix pose
Definition: physicalsensor.h:64
virtual dSpaceID getSpaceID()
returns the spaceID of the sensor space
Definition: raysensorbank.cpp:108
Abstract class for sensors that have a physical representation.
Definition: physicalsensor.h:35
OsgHandle osgHandle
Definition: physicalsensor.h:63
virtual void init(Primitive *own, Joint *joint=0) override
initialises sensor with a body of robot and optionally with a joint.
Definition: raysensorbank.cpp:56
Class for Ray-based sensors.
Definition: raysensor.h:54