I was trying to find a utility that would convert XG match files to mat or txt.
http://www.extremegammon.com/xgformat.aspx
Have downloaded M. Petch's python scrips from here
http://vcs.capp-sysware.com/gitweb/?p=backgammon/xgdatatools.git
and run
extractxgdata.py
It created 3 bin files (all unreadable/uncompressable) and a jpg one.
the largest of the 3 bin was FILENAME_gamefile.bin
So far so good that's the structure of the xg file.
I thought of re-running extractxgdata.py and directing all output to a text file. I got a huge text file containing everything but still far away from any simple text or mat file.
First roll 'DiceRolled': '61', shows up on page 3 (out of 1481!!)
Instead of moves we have position before and position after
'Position': (0, -2, 0, 0, 0, 0, 5, 0, 3, 0, 0, 0, -5, 5, 0, 0, 0, -3, 0, -5, 0, 0, 0, 0, 2, 0),
I am wondering whether within M.Petch's scripts there is anything to transform this gamefile.bin or the text output of everything to a mat file.
Or if there is any other utility around that would do that.