Reputation: 32226
I am writing a protocol for my Game, and I am not sure what software to use for that.
I been trying writing it in Microsoft Word, and Excel, but it's not always easy to read or edit it.
Is there any good practices or tools that can help me with it?
Upvotes: 2
Views: 1661
Reputation: 1701
You can use doxygen for this. You either can implement the doc of your protocol somewhere in your source or create a stand-alone-file. Doxygen is used for source-documentation normaly but should also work well for this.
Doxygen also implements mscgen, which should become handy for your purpose.
Upvotes: 2
Reputation: 28180
The standard tool for describing protocols is message sequence chart which has been used by the telecom industry (and others) for decades.
It is a really powerful tool you most certainly should learn and use. I recommend using http://sourceforge.net/projects/msc-generator/ to edit and generate charts.
Upvotes: 2