]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIStorm.hxx
Optimise NavCache airport query
[flightgear.git] / src / AIModel / AIStorm.hxx
index 9a7409aa0f78bf2b8e87c11cb89b7bfb4c836021..f6a7e9018da12337d48ba94b5d90eef3691cac9e 100644 (file)
@@ -25,7 +25,7 @@
 #include "AIBase.hxx"
 
 #include <string>
-SG_USING_STD(string);
+using std::string;
 
 
 class FGAIStorm : public FGAIBase {
@@ -37,7 +37,7 @@ public:
        
         void readFromScenario(SGPropertyNode* scFileNode);
 
-       virtual bool init();
+       virtual bool init(bool search_in_AI_path=false);
         virtual void bind();
         virtual void unbind();
        virtual void update(double dt);
@@ -61,16 +61,16 @@ private:
         double delay;   // average time (sec) between lightning flashes
         int subflashes; // number of subflashes per flash
         double random_delay;  // delay +/- random number
-        double timer; 
-        SGPropertyNode* flash_node; 
+        double timer;
+        SGPropertyNode_ptr flash_node;
         int flashed;    // number of subflashes already done this flash
         bool flashing;  // true if currently flashing;
         int subflash_array[8];
         int subflash_index;
 
         // turbulence stuff
-        SGPropertyNode* turb_mag_node;
-        SGPropertyNode* turb_rate_node;
+        SGPropertyNode_ptr turb_mag_node;
+        SGPropertyNode_ptr turb_rate_node;
 
 };