views:

1195

answers:

8

I am looking for a sophisticated graphical FSM editor that can export a model in a well-documented output format, like SCXML or similar.

Can anybody recommend me a tool?

A: 

Have you find an answer yet? I need exactly the same editor.

Nek
sorry, so far no input yet. as soon as i find something, i'll post it here...
Roland
A: 

All I've found are some UML tools that can create drawings, but nothing good enough for real usage.

Marcus Lindblom
A: 

The person writing this blog post has an internal SCXML editor. Maybe if you ask him/her nicely... :-)

elhoim
+3  A: 

I'm not sure if this is excactly what you are looking for but seeing as there aren't too many answers to your question I'll throw it out there. Ragel is a finite state machine compiler which will output C/C++/Java and more. It's not visual per se (you can't design the state machine graphically, you use code) but it is able to use GraphViz to visualise the state machine.

mikecsh
A: 

this may work for you: http://fsme.sourceforge.net/

it is kind of old, but better give a try;)

israkir
A: 

This project seems to be spot on, but I'm not sure about the status...

BaBu
A: 

If you want to generate code (C++ or Python), fsme does a very good job. I have successfully used it to create a number of very complex state machines, and would use it again for anything similar.