]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIThermal.hxx
James Turner: Improved runway management code:
[flightgear.git] / src / AIModel / AIThermal.hxx
index 1da663ff864602f553121c0d2692adb8d2090573..731ac81ce61c168c03d03eaeffbe56d23d8db59c 100644 (file)
@@ -16,7 +16,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 #ifndef _FG_AIThermal_HXX
 #define _FG_AIThermal_HXX
 #include "AIBase.hxx"
 
 #include <string>
-SG_USING_STD(string);
+using std::string;
 
 
 class FGAIThermal : public FGAIBase {
 
 public:
 
-       FGAIThermal(FGAIManager* mgr);
+       FGAIThermal();
        ~FGAIThermal();
        
-       bool init();
+        void readFromScenario(SGPropertyNode* scFileNode);
+
+       virtual bool init(bool search_in_AI_path=false);
         virtual void bind();
         virtual void unbind();
-       void update(double dt);
+       virtual void update(double dt);
 
         inline void setMaxStrength( double s ) { max_strength = s; };
         inline void setDiameter( double d ) { diameter = d; };
+        inline void setHeight( double h ) { height = h; };
         inline double getStrength() const { return strength; };
         inline double getDiameter() const { return diameter; };
+        inline double getHeight() const { return height; };
 
-protected:
-        static FGAIThermal *_self;
-       
+        virtual const char* getTypeString(void) const { return "thermal"; }
 private:
 
-        double dt; 
        void Run(double dt);
         double max_strength;
         double strength;
         double diameter;
+        double height;
         double factor;
 };