stockfish for godot
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index ea73f60..1c1ab37 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,10 @@ func _ready() -> void:
var loader := StockfishLoader.new()
fish = loader.load_stockfish()
fish.game = Chess.new()
- print("GO FISH")
- fish.go()
+ while not fish.game.game_over():
+ fish.go(5)
+ var bestmove = yield(fish, "bestmove")
+ prints("bestmove", "is", fish.game.move(bestmove).san)
+ fish._position()
+ print(fish.game.pgn(), "\n", fish.game.fen())
```