I've done some chess playing on the computer as I mentioned before. For chess computer files there are two sorts of very commonly used public formats.
One is pgn portable game notation. The other is FEN Forsyth-Edwards Notation.
pgn is more a format for storing games (or game fragments). The entries in the files are game data (Player names, rating, date, etc) and a list of moves. This seems to be very similar to sgf.
FEN is different in that it is just a quite compact way of representing a position on the board. It includes things like whose move it is, castling rights, etc.
Now it seems to me the problem with translating this notion to go is that your position statement is going to look a lot like your move list statement. So there may not be much of a way to compactify the info.
So just a question to find out if any super smart person has found a way to do this, or if there is a simple way to copy and paste a game position rather than a whole game.
FEN
-
xed_over
- Oza
- Posts: 2264
- Joined: Mon Apr 19, 2010 11:51 am
- Has thanked: 1179 times
- Been thanked: 553 times
Re: FEN
there's an ascii diagram format for showing game positions
http://www.lifein19x19.com/forum/viewto ... f=18&t=226
http://www.lifein19x19.com/forum/viewto ... f=18&t=226
-
globulon
- Dies in gote
- Posts: 52
- Joined: Thu May 07, 2015 11:40 am
- Rank: Taiwan 2 kyu
- GD Posts: 0
- Location: Taipei, Taiwan
- Has thanked: 87 times
- Been thanked: 9 times
Re: FEN
Thanks for the links!
It's possible that I'm partly confusing the functionality of programs like chessbase or chess assistant with the file formats. I will try to learn more.
Interesting, I will have to dig into that website a bit.Rémi wrote:sgf can store both game records and position setup.
http://www.red-bean.com/sgf/
Thanks for the tip. I have started messing around with some of the board tags and whatnot.xed_over wrote:there's an ascii diagram format for showing game positions
viewtopic.php?f=18&t=226
It's possible that I'm partly confusing the functionality of programs like chessbase or chess assistant with the file formats. I will try to learn more.