Pioneer2Sonars.hh
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #ifndef P2SONARS_HH
00035 #define P2SONARS_HH
00036
00037 #include "gazebo.h"
00038 #include "Model.hh"
00039 #include "Body.hh"
00040
00041 class RayGeom;
00042 class RayProximity;
00043
00044 typedef struct gz_sonars gz_sonars_t;
00045
00046 class Pioneer2Sonars : public Model
00047 {
00048
00049 public: Pioneer2Sonars( World *world );
00050
00051
00052 public: virtual ~Pioneer2Sonars();
00053
00054
00055 public: int Load( WorldFile *file, WorldFileNode *node );
00056
00057
00058 public: int Init( WorldFile *file, WorldFileNode *node );
00059
00060
00061 public: int Fini();
00062
00063
00064 private: int OdeLoad( WorldFile *file, WorldFileNode *node );
00065
00066
00067 private: int OdeInit( WorldFile *file, WorldFileNode *node );
00068
00069
00070 private: int OdeFini();
00071
00072
00073 private: int IfaceInit();
00074
00075
00076 private: int IfaceFini();
00077
00078
00079 private: void IfaceGetCmd();
00080
00081
00082 private: void IfacePutData();
00083
00084
00085
00086 public: void Update( double step );
00087
00088
00089 private: gz_sonars_t *sonars_iface;
00090
00091
00092 private: RayProximity* proximitySensors[16];
00093 private: Body* body;
00094
00095
00096 private: GzVector pos[16];
00097
00098 private: int dir[16];
00099
00100 };
00101
00102 #endif
Last updated 12 September 2005 21:38:45
|