FS#7174 - Chessbox - Store game history in PGN format
Modifications to chessbox.c, gnuchess.c and gnuchess.h so the history of games played is stored in a file called chessbox.pgn. It considers all (up to what I know) rules of PGN annotation including the handling of checks, checkmates, taking pieces, resolution of ambiguous moves by adding the row or column of the moving piece as needed, castling kingside and queenside, promotions (only to queens since the chessbox plugin itself doesn’t allow the player to choose), pawns taking “en passant”, etc.
Currently, it has some limitations:
-The abbreviation of the pieces are always in english regardless of the language the player is using.
-The PGN header is constant:
[Event "Chessbox Chess Game"] [White "player"] [Black "Chessbox (powered by GnuChess)"] -The players could be swapped but you can swap them in the middle of the game and the header has already been stored at that time. -I didn't find where to get the system date (I don't even know if this is possible at all) -The result could be added but I'm not storing the history in memory but instead storing it as you play. I didn't want to use too much memory for this. It would be relatively easy to change though and that would lead to other improvements like "undo move" (I know, I know, that's cheating !!! ;-) ).
-The history is being stored but there’s no way of watching previously played matches in the player, you have to download the file to a computer and use a different software for that (I plan to make this possible in the future but that includes adding a menu, a PGN parser and a lot of user interaction so it can take some time)
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
As linuxstb made me realize in the IRC channel, the way I’ve implemented the feature will be too power consuming in hard disk based players. I’ll rewrite the whole thing and post it as soon as I can.
In the mean time, I don’t think committing the patch as it is would be any wise.
You may also want to look at how the Sudoku plugin handles saved games. It’s a plugin (meaning it can be started from the Browse Plugins menu), but also a viewer - if you select a “.ss” file in the file browser, then Rockbox will load the sudoku plugin and pass the filename of the selected .ss file to it as a parameter. You could use this approach to load .pgn files without the need for any extra UI in chessbox itself - selecting a .pgn file would load chessbox.
Complete rewrite of the feature now storing the history of the game in memory and saving it to file only when the game finishes. It was also changed to use GNU Chess data structures instead of having its own. Also, some of the limitations initially stated were tackled:
- The header now has the correct date (assuming the player has the correct date set
)
- The header also includes the “mandatory” 7 tags according to the PGN specification
- The result of the game is stated both at the end of the game and in the header, just like the specification requires (0-1, 1-0, 1/2-1/2 or * for unknown result)
- Watching the games stored in PGN files and using chessbox as a viewer as linuxstb suggested was taken care of in task #7209 which is already committed to the SVN repository.
I’m also including the modifications to the manual so it stays up to date.
Fix the date of the game (set it to ????.??.?? according to the PGN spec) in non-RTC targets.
Thanks to pixelma for pointing this out.
The patch for the manual is still valid.
There was two bugs in date saving - current_time→tm_year < 2000 must be changed to current_time→tm_year < 100 and current_time→tm_year + 1899 must be changed to current_time→tm_year + 1900
I fixed them + converted patch to unix newlines (source in svn is already has unix newlines)
parafin, I need your real name if your changes are to be included in a commit.