-
Notifications
You must be signed in to change notification settings - Fork 768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Work with SimpleStateMachine. Visual work and editoring state-machine #379
Comments
My first impression is that that looks very impressive! To get this working I guess we'd need an exporter and importer, right? Is this something you'd like to do? |
Thank you! |
Sample structure for export and import. Can you do it? <?xml version="1.0" encoding="utf-8"?>
<StateMachine>
<States>
<State Name="State1" />
<State Name="State2" />
<State Name="State3" />
<State Name="State4" />
</States>
<StartState Name="State1" />
<Transitions>
<Transition Name="Transition1" From="State1" To="State2" />
<Transition Name="Transition2" From="State2" To="State3" />
<Transition Name="Transition3" From="State3" To="State4" />
</Transitions>
</StateMachine> |
Something like this for importing xml, maybe? |
We'll need OnEntry and OnExit and internal transitions as well... |
Hello,
Export to DOT graph - it's static image.
My idea is to export the diagram, edit it graphically and load the already corrected diagram back. It is much more convenient!
It's my node editor for this, we can use it:
https://github.com/SimpleStateMachine/SimpleStateMachineNodeEditor
What you think about it?
The text was updated successfully, but these errors were encountered: