Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tejainece/chess_for_dart
Chess format parser, legal move generation and game state detection library for Dart
https://github.com/tejainece/chess_for_dart
Last synced: about 2 months ago
JSON representation
Chess format parser, legal move generation and game state detection library for Dart
- Host: GitHub
- URL: https://github.com/tejainece/chess_for_dart
- Owner: tejainece
- Created: 2022-02-15T03:48:46.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-24T23:01:53.000Z (5 months ago)
- Last Synced: 2024-07-25T01:12:50.761Z (5 months ago)
- Language: Dart
- Size: 27.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Chess for Dart
Chess format parser, legal move generation and game state detection library for Dart
# Features
+ FEN and PGN encoding and decoding
+ Legal move generation# Parse FEN
```dart
import 'package:chess_for_dart/chess_for_dart.dart';void main() {
final fen = FEN.parse('rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1');
print(fen.encode());
}
```