oex

Last updated:

0 purchases

oex Image
oex Images
Add to Cart

Description:

oex

oex #
A Flutter Plugin, which lets you search and interact OEX Chess Engines on Android
🔎 Discover UCI-Engines
🗣️ Interact with UCI-Engines
Screenshot #

How to use #
🚀 Setup #
Add the dependency to pubspec.yaml.
dependencies:
[...]
oex: ^0.1.2
copied to clipboard
and import it.
import 'package:oex/oex.dart';
copied to clipboard
🔎 Discover Engines #
List<OEXEngine> result = await OEX.search();
print(result);
copied to clipboard
🗣️ Interact with Engines #
Stream<String> stdout = await engine.start();
stdout.listen((out) {
print(out);
});

Future.delayed(Duration(milliseconds: 500));
engine.send("uci");
copied to clipboard
Additional information #
This package is used in WhitePawn in production.
Every contribution is very welcome.
Cheers 🥂

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.