/SGFParser

SGF parser for Dart & Flutter. Currently supports Go & Chess.

Primary LanguageDartOtherNOASSERTION

SGF Parser

Pub

Smart Game Format parser for Flutter & Dart. Currently only supports Go.

Supported Properties

AP, BR, DT, EV, FF, GM, KM, PB, PC, PW, RE, SZ, TM, US, WR, W, B

Usage

// Initialize the parser with the SGF contents
SGFParser parser = SGFParser(sgfString);
Game game = parser.parse();

// Attributes contain all non-move properties
GameAttributes attributes = game.attributes;

// Moves are listed in order
List<Move> moves = game.moves;

Please see here for a more concrete example.

Todo

  • Support for rest of the properties
  • Variations
  • Handicap