00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef CURRENT_INCLUDE_PARSEDSTATECONTEXT_HPP
00040 #define CURRENT_INCLUDE_PARSEDSTATECONTEXT_HPP
00041
00042 #include "StateMachine.hpp"
00043 #include "../internal/DataSource.hpp"
00044 #include <boost/shared_ptr.hpp>
00045
00046 namespace RTT
00047 { namespace scripting {
00048 typedef boost::shared_ptr<ParsedStateMachine> ParsedStateMachinePtr;
00049 typedef boost::weak_ptr<ParsedStateMachine> ParsedStateMachineWPtr;
00050
00054 class ParsedStateMachine
00055 : public StateMachine
00056 {
00057 typedef std::map<std::string, base::AttributeBase*> VisibleWritableValuesMap;
00058 protected:
00059 virtual void unloading();
00060 public:
00061 ParsedStateMachine();
00062 virtual ~ParsedStateMachine();
00063
00067 ParsedStateMachinePtr copy( std::map<const base::DataSourceBase*, base::DataSourceBase*>& replacements, bool instantiate = false ) const;
00068
00069 void addParameter( const std::string& name, base::AttributeBase* var );
00070
00071 base::AttributeBase* getParameter( const std::string& name ) const;
00072 VisibleWritableValuesMap getParameters() const;
00073 std::vector<std::string> getParameterNames() const;
00074
00080 void setName( const std::string& name, bool recursive );
00081
00082 std::string getText() const;
00083
00084 void setText( std::string text);
00085
00086 boost::shared_ptr<StateMachineService> getService() const;
00087
00088 void setService(boost::shared_ptr<StateMachineService> tc);
00089
00090 bool inState( const std::string& name );
00094 void finish();
00095 private:
00096 VisibleWritableValuesMap parametervalues;
00097
00098 boost::shared_ptr<std::string> _text;
00099
00100 boost::shared_ptr<StateMachineService> object;
00101 };
00102 }}
00103
00104 #endif