HeightmapGeom.hh
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 #ifndef HEIGHTMAPGEOM_HH
00028 #define HEIGHTMAPGEOM_HH
00029
00030 #include <Ogre.h>
00031
00032 #include "Geom.hh"
00033
00034 namespace gazebo
00035 {
00038
00070
00071
00072
00073
00074
00076 class HeightmapGeom : public Geom, public Ogre::RaySceneQueryListener
00077 {
00079 public: HeightmapGeom(Body *body);
00080
00082 public: virtual ~HeightmapGeom();
00083
00085 public: void UpdateChild();
00086
00088 public: double GetHeightAt(const Vector2<double> &pos);
00089
00091 public: virtual bool queryResult(Ogre::MovableObject *obj, Ogre::Real dist);
00092
00094 public: virtual bool queryResult(Ogre::SceneQuery::WorldFragment *frag, Ogre::Real dist);
00095
00097 protected: virtual void LoadChild(XMLConfigNode *node);
00098
00100 private: void FillHeightMap();
00101
00103 private: static dReal GetHeightCallback(void *data, int x, int y);
00104
00105 private: dHeightfieldDataID odeData;
00106
00107 private: Vector3 terrainSize;
00108 private: Vector3 terrainScale;
00109
00110 private: unsigned int odeVertSize;
00111 private: Vector3 odeScale;
00112
00113 private: unsigned int terrainVertSize;
00114 private: std::string terrainImage;
00115
00116 private: Ogre::Ray ray;
00117 private: Ogre::RaySceneQuery *rayQuery;
00118
00119 private: double distToTerrain;
00120
00121 private: std::vector<double> heights;
00122 };
00123
00125 }
00126
00127 #endif