https://github.com/sensuikan1973/libedax4dart
dart wrapper for libedax
https://github.com/sensuikan1973/libedax4dart
codecov dart dart-ffi edax ffi linux macos othello reversi windows
Last synced: 3 months ago
JSON representation
dart wrapper for libedax
- Host: GitHub
- URL: https://github.com/sensuikan1973/libedax4dart
- Owner: sensuikan1973
- License: gpl-3.0
- Created: 2021-01-18T21:06:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-14T21:07:56.000Z (3 months ago)
- Last Synced: 2025-03-19T03:13:45.734Z (3 months ago)
- Topics: codecov, dart, dart-ffi, edax, ffi, linux, macos, othello, reversi, windows
- Language: Dart
- Homepage: https://pub.dev/packages/libedax4dart
- Size: 64.8 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# [libedax4dart](https://pub.dev/packages/libedax4dart)

[](https://codecov.io/gh/sensuikan1973/libedax4dart)Dart wrapper for [libedax](https://github.com/sensuikan1973/edax-reversi/tree/libedax_sensuikan1973).
With using libedax4dart, you can execute functions equivalent to [edax](https://sensuikan1973.github.io/edax-reversi/) commands.## Usage
1. Add `libedax4dart` under `dependencies` in your `pubspec.yaml`.
2. **Add your libedax assets** in the path which you like.
**If you don't have yours, you can also download from [here](https://github.com/sensuikan1973/libedax4dart/releases/latest)**.- (Required) dynamic library
- macos: `libedax.universal.dylib`
- windows: `libedax-x64.dll`
- linux: `libedax.so`
- (Optional) data for edax
- `book.dat`
- `eval.dat`3. With using `LibEdax`, you can run edax commands !
## Document
- [libedax4dart](https://sensuikan1973.github.io/libedax4dart/)
- [libedax](https://sensuikan1973.github.io/edax-reversi/libedax_8c.html)## Real World Example
- [pedax](https://github.com/sensuikan1973/pedax) : Flutter Desktop app
- [edax_runner](https://github.com/sensuikan1973/edax_runner) : Dart native CLI app## References
- other language editions
- python edition: [libedax4py](https://github.com/lavox/libedax4py)
- java edition: [libedax4j](https://github.com/lavox/libedax4j)
- dev
- [dart:ffi](https://dart.dev/guides/libraries/c-interop)
- [dart-lang/samples/ffi](https://github.com/dart-lang/samples/tree/master/ffi) : simple sample
- [dart-lang/sdk/samples/ffi](https://github.com/dart-lang/sdk/tree/master/samples/ffi) : complicated sample
- [Effective Dart: Documentation](https://dart.dev/guides/language/effective-dart/documentation)