Forum Moderators: open
The aim of this project will be to design and implement an XML driven chess editor that allows a chess player/journalist to annotate and analyse a game of chess in such a way so that online readers of his analysis can replay the moves of the game and moves of the analysis with help of a small chessboard simulator that comes with the online analysis.
Thanks,
Riginos
Maybe your XML can go something like this:
<chess_moves>
<move color="black">
<from>P2</from>
<to>P3</to>
</move>
<move color="white">
<from>K5</from>
<to>Q5</to>
</move>
</chess_moves>
You will need to use the java to keep track of the moves between the two pieces and if you can use a CreateNode function in the DOM, all the better.
I hope this helps,
Bruce