00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00021
00022
00023
00024
00025
00026
00028
00029 #ifndef AMCL_LASER_H
00030 #define AMCL_LASER_H
00031
00032 #include "amcl_sensor.h"
00033 #include "map/map.h"
00034 #include "models/laser.h"
00035
00036
00037
00038 class AMCLLaserData : public AMCLSensorData
00039 {
00040
00041 public: int range_count;
00042 public: double ranges[PLAYER_LASER_MAX_SAMPLES][2];
00043 };
00044
00045
00046
00047 class AMCLLaser : public AMCLSensor
00048 {
00049
00050 public: AMCLLaser(player_device_id_t id);
00051
00052
00053 public: virtual int Load(ConfigFile* cf, int section);
00054
00055
00056 public: virtual int Unload(void);
00057
00058
00059 public: virtual int Setup(void);
00060
00061
00062 public: virtual int Shutdown(void);
00063
00064
00065 private: virtual AMCLSensorData *GetData(void);
00066
00067
00068
00069 public: virtual bool UpdateSensor(pf_t *pf, AMCLSensorData *data);
00070
00071
00072 private: static double SensorModel(AMCLLaserData *data, pf_vector_t pose);
00073
00074
00075 private: int SetupMap(void);
00076
00077
00078 private: player_device_id_t laser_id;
00079 private: player_device_id_t map_id;
00080 private: Driver *driver;
00081
00082
00083 private: struct timeval time;
00084
00085
00086 private: map_t *map;
00087
00088
00089 private: pf_vector_t laser_pose;
00090
00091
00092 private: int max_beams;
00093
00094
00095 private: double range_max;
00096
00097
00098 private: double range_var;
00099
00100
00101 private: double range_bad;
00102
00103 #ifdef INCLUDE_RTKGUI
00104
00105 private: virtual void SetupGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig);
00106
00107
00108 private: virtual void ShutdownGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig);
00109
00110
00111 public: virtual void UpdateGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig, AMCLSensorData *data);
00112
00113
00114 private: rtk_fig_t *fig, *map_fig;
00115 #endif
00116 };
00117
00118
00119
00120
00121 #endif