3 // Written by Vivian MEAZZA, started Feb 2008.
6 // Copyright (C) 2008 Vivain MEAZZA - vivian.meazza@lineone.net
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 #ifndef _INST_AGRADAR_HXX
25 #define _INST_AGRADAR_HXX
27 #include <simgear/structure/subsystem_mgr.hxx>
28 #include <Scenery/scenery.hxx>
29 #include <simgear/scene/material/mat.hxx>
31 #include "wxradar.hxx"
33 class agRadar : public wxRadarBg{
36 agRadar ( SGPropertyNode *node );
41 virtual void update (double dt);
44 void setUserVec(int az, double el);
45 void update_terrain();
50 double _load_resistance; // ground load resistanc N/m^2
51 double _frictionFactor; // dimensionless modifier for Coefficient of Friction
52 double _bumpinessFactor; // dimensionless modifier for Bumpiness
53 double _elevation_m; // ground elevation in meters
54 bool _solid; // if true ground is solid for FDMs
56 const SGMaterial* _material;
58 string _mat_name; // ground material
60 SGVec3d getCartUserPos() const;
61 SGVec3d getCartAntennaPos()const;
65 SGPropertyNode_ptr _user_hdg_deg_node;
66 SGPropertyNode_ptr _user_roll_deg_node;
67 SGPropertyNode_ptr _user_pitch_deg_node;
68 SGPropertyNode_ptr _terrain_warning_node;
75 #endif // _INST_AGRADAR_HXX