Converts freemind files to the gdx-ai format. (LibGDX-AI, see https://github.com/libgdx/gdx-ai and https://github.com/libgdx/gdx-ai/wiki/Behavior-Trees for an example of the file format)
You can get FreeMind here: http://freemind.sourceforge.net
The purpose of this little project is to get nice graphical editing for behaviour trees.
becomes this: (this is the example from the documentation to gdx-ai found here: https://github.com/libgdx/gdx-ai/wiki/Behavior-Trees)
import bark:"com.badlogic.gdx.ai.tests.btree.dog.BarkTask"
import care:"com.badlogic.gdx.ai.tests.btree.dog.CareTask"
import mark:"com.badlogic.gdx.ai.tests.btree.dog.MarkTask"
import walk:"com.badlogic.gdx.ai.tests.btree.dog.WalkTask"
root
selector
parallel
care urgendProb:0.8
alwaysFail
com.badlogic.gdx.ai.tests.btree.dog.RestTask
sequence
bark times:2
walk
com.badlogic.gdx.ai.tests.btree.dog.BarkTask
mark
mvn package
java -jar target/freemind2gdxai.jar -i test.mm
java -jar target/freemind2gdxai.jar -?