X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=simgear%2Fstructure%2Fsubsystem_mgr.hxx;h=c49d73fd2db8d143bf3ae47ae606c4aa29cc6848;hb=5f2f95676c4b46e0c2ef3764baa2fd8c87abd238;hp=87654d9c51e52e077586dc6837ccbf3d9ba7fbc9;hpb=de35658096122b3e5484cb95845ee51c406f1475;p=simgear.git diff --git a/simgear/structure/subsystem_mgr.hxx b/simgear/structure/subsystem_mgr.hxx index 87654d9c..c49d73fd 100644 --- a/simgear/structure/subsystem_mgr.hxx +++ b/simgear/structure/subsystem_mgr.hxx @@ -29,10 +29,6 @@ #include #include -using std::map; -using std::vector; -using std::string; - #include #include #include "SGSmplstat.hxx" @@ -41,19 +37,19 @@ using std::string; class TimingInfo { private: - string eventName; + std::string eventName; SGTimeStamp time; public: - TimingInfo(const string& name, const SGTimeStamp &t) : + TimingInfo(const std::string& name, const SGTimeStamp &t) : eventName(name), time(t) { } - const string& getName() const { return eventName; } + 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; @@ -173,6 +169,16 @@ public: virtual void reinit (); + /** + * Shutdown the subsystem. + * + *

Release any state associated with subsystem. Shutdown happens in + * the reverse order to init(), so this is the correct place to do + * shutdown that depends on other subsystems. + *

+ */ + virtual void shutdown (); + /** * Acquire the subsystem's property bindings. * @@ -273,7 +279,7 @@ public: * Place time stamps at strategic points in the execution of subsystems * update() member functions. Predominantly for debugging purposes. */ - void stamp(const string& name); + void stamp(const std::string& name); @@ -301,6 +307,7 @@ public: virtual void init (); virtual void postinit (); virtual void reinit (); + virtual void shutdown (); virtual void bind (); virtual void unbind (); virtual void update (double delta_time_sec); @@ -308,12 +315,12 @@ 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); @@ -339,16 +346,17 @@ 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 +392,8 @@ public: 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 }; @@ -393,6 +403,7 @@ public: virtual void init (); virtual void postinit (); virtual void reinit (); + virtual void shutdown (); virtual void bind (); virtual void unbind (); virtual void update (double delta_time_sec); @@ -405,16 +416,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; };