SimSensors.hpp
Go to the documentation of this file.
00001 /*********************************************************************
00002 * Software License Agreement (BSD License)
00003 *
00004 *  Copyright (c) 2010, LABUST, UNIZG-FER
00005 *  All rights reserved.
00006 *
00007 *  Redistribution and use in source and binary forms, with or without
00008 *  modification, are permitted provided that the following conditions
00009 *  are met:
00010 *
00011 *   * Redistributions of source code must retain the above copyright
00012 *     notice, this list of conditions and the following disclaimer.
00013 *   * Redistributions in binary form must reproduce the above
00014 *     copyright notice, this list of conditions and the following
00015 *     disclaimer in the documentation and/or other materials provided
00016 *     with the distribution.
00017 *   * Neither the name of the LABUST nor the names of its
00018 *     contributors may be used to endorse or promote products derived
00019 *     from this software without specific prior written permission.
00020 *
00021 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028 *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031 *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032 *  POSSIBILITY OF SUCH DAMAGE.
00033 *
00034 *  Author: Dula Nad
00035 *  Created: 01.02.2013.
00036 *********************************************************************/
00037 #ifndef SIMSENSORS_HPP_
00038 #define SIMSENSORS_HPP_
00039 #include <ros/ros.h>
00040 #include <tf/transform_broadcaster.h>
00041 #include <tf/transform_listener.h>
00042 
00043 namespace labust
00044 {
00045         namespace simulation
00046         {
00047                 class RBModel;
00048 
00052                 class SimSensorInterface
00053                 {
00054                 public:
00055                         struct Hook
00056                         {
00057                                 Hook(const RBModel& model,
00058                                                 tf::TransformBroadcaster& broadcaster,
00059                                                 tf::TransformListener& listener,
00060                                                 bool noisy = false):
00061                                                         model(model),
00062                                                         broadcaster(broadcaster),
00063                                                         listener(listener),
00064                                                         noisy(noisy){};
00065 
00066                                 const RBModel& model;
00067                                 tf::TransformBroadcaster& broadcaster;
00068                                 tf::TransformListener& listener;
00069                                 bool noisy;
00070                                 mutable double originLat, originLon;
00071                         };
00072 
00073                         typedef boost::shared_ptr<SimSensorInterface> Ptr;
00074                         virtual ~SimSensorInterface(){};
00075                         virtual void step(const Hook& data) = 0;
00076                         virtual void configure(ros::NodeHandle& nh, const std::string& topic_name) = 0;
00077                 };
00078 
00079                 template <class ROSMsg, class functor>
00080                 class BasicSensor : public SimSensorInterface
00081                 {
00082                 public:
00083                         BasicSensor(){};
00084                         ~BasicSensor(){};
00085 
00086                         void configure(ros::NodeHandle& nh, const std::string& topic_name)
00087                         {
00088                                 pub = nh.advertise<ROSMsg>(topic_name,1);
00089                         };
00090 
00091                         void step(const Hook& data)
00092                         {
00093                                 typename ROSMsg::Ptr msg(new ROSMsg());
00094                                 sensor(msg, data);
00095                                 pub.publish(msg);
00096                         }
00097 
00098                 private:
00099                                 ros::Publisher pub;
00100                                 functor sensor;
00101                 };
00102         }
00103 }
00104 
00105 /* SIMSENSORS_HPP_ */
00106 #endif


labust_sim
Author(s): Gyula Nagy
autogenerated on Fri Feb 7 2014 11:36:33