]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIThermal.hxx
Clear chat messages when an aircraft becomes inactive in the property tree.
[flightgear.git] / src / AIModel / AIThermal.hxx
index b3fee71bc293f0d71850f18781f9a0e253db4d8c..38a50bea9da7784a107eefd3e74f623bb47bdc98 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
@@ -32,13 +32,15 @@ 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; };
@@ -47,9 +49,9 @@ public:
         inline double getDiameter() const { return diameter; };
         inline double getHeight() const { return height; };
 
+        virtual const char* getTypeString(void) const { return "thermal"; }
 private:
 
-        double dt; 
        void Run(double dt);
         double max_strength;
         double strength;