X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fstructure%2Fsubsystem_mgr.hxx;h=b36bdb9aa1dc5137fd098f0ed0f16da353dc0c03;hb=200df49d6e2d8896e1deaa6da7af5b4a91058a4f;hp=996846f9f3f62902e0ad91882a4f64b2e6bd69e1;hpb=9dc1b5f6f56c6fecdcfefc2a0a75695a89f323a2;p=simgear.git diff --git a/simgear/structure/subsystem_mgr.hxx b/simgear/structure/subsystem_mgr.hxx index 996846f9..b36bdb9a 100644 --- a/simgear/structure/subsystem_mgr.hxx +++ b/simgear/structure/subsystem_mgr.hxx @@ -25,25 +25,9 @@ #include -#if 0 -#ifdef HAVE_WINDOWS_H -# include -# include -#endif - -#include STL_STRING -SG_USING_STD(string); - -#include -SG_USING_STD(vector); -#endif - #include #include #include -SG_USING_STD(map); -SG_USING_STD(vector); -SG_USING_STD(string); #include #include @@ -53,17 +37,19 @@ SG_USING_STD(string); class TimingInfo { private: - string eventName; + std::string eventName; SGTimeStamp time; public: - TimingInfo(string name, SGTimeStamp &t) { eventName = name; time = t;}; - string getName() { return eventName; }; - SGTimeStamp getTime() { return time; }; + TimingInfo(const std::string& name, const SGTimeStamp &t) : + eventName(name), time(t) + { } + const std::string& getName() const { return eventName; } + const SGTimeStamp& getTime() const { return time; } }; -typedef vector eventTimeVec; -typedef vector::iterator eventTimeVecIterator; +typedef std::vector eventTimeVec; +typedef std::vector::iterator eventTimeVecIterator; @@ -283,7 +269,7 @@ public: * Place time stamps at strategic points in the execution of subsystems * update() member functions. Predominantly for debugging purposes. */ - void stamp(string name); + void stamp(const std::string& name); @@ -318,21 +304,27 @@ public: virtual void resume (); virtual bool is_suspended () const; - virtual void set_subsystem (const string &name, + virtual void set_subsystem (const std::string &name, SGSubsystem * subsystem, double min_step_sec = 0); - virtual SGSubsystem * get_subsystem (const string &name); - virtual void remove_subsystem (const string &name); - virtual bool has_subsystem (const string &name) const; + virtual SGSubsystem * get_subsystem (const std::string &name); + virtual void remove_subsystem (const std::string &name); + virtual bool has_subsystem (const std::string &name) const; void collectDebugTiming(bool collect); + /** + * + */ + void set_fixed_update_time(double fixed_dt); private: - struct Member { + class Member { - Member (); + private: Member (const Member &member); + public: + Member (); virtual ~Member (); virtual void update (double delta_time_sec); @@ -343,16 +335,20 @@ private: void collectDebugTiming (bool collect) { collectTimeStats = collect; }; SampleStatistic timeStat; - string name; + std::string name; SGSubsystem * subsystem; double min_step_sec; double elapsed_sec; bool collectTimeStats; + int exceptionCount; }; - Member * get_member (const string &name, bool create = false); + Member * get_member (const std::string &name, bool create = false); - vector _members; + std::vector _members; + + double _fixedUpdateTime; + double _updateTimeRemainder; }; @@ -384,6 +380,9 @@ public: enum GroupType { INIT = 0, GENERAL, + FDM, ///< flight model, autopilot, instruments that run coupled + POST_FDM, ///< certain subsystems depend on FDM data + DISPLAY, ///< view, camera, rendering updates MAX_GROUPS }; @@ -405,16 +404,24 @@ public: GroupType group = GENERAL, double min_time_sec = 0); + /** + * remove a subsystem, and return a pointer to it. + * returns NULL if the subsystem was not found. + */ + virtual SGSubsystem* remove(const char* name); + virtual SGSubsystemGroup * get_group (GroupType group); - virtual SGSubsystem * get_subsystem(const string &name); + virtual SGSubsystem * get_subsystem(const std::string &name) const; void collectDebugTiming(bool collect); private: - SGSubsystemGroup _groups[MAX_GROUPS]; - map _subsystem_map; + SGSubsystemGroup* _groups[MAX_GROUPS]; + + typedef std::map SubsystemDict; + SubsystemDict _subsystem_map; };