cm-engine-runner 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.htaccess +3 -0
- package/README.md +30 -0
- package/assets/books/openings.bin +0 -0
- package/engines/stockfish-v10-niklasf.js +37 -0
- package/favicon.ico +0 -0
- package/index.html +36 -0
- package/package.json +33 -0
- package/postinstall.js +10 -0
- package/src/cm-engine-runner/EngineRunner.js +35 -0
- package/src/cm-engine-runner/PolyglotRunner.js +54 -0
- package/src/cm-engine-runner/StockfishRunner.js +124 -0
package/.htaccess
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# cm-chess-engines-runner
|
|
2
|
+
|
|
3
|
+
## Working engines
|
|
4
|
+
|
|
5
|
+
- https://github.com/niklasf/stockfish.js
|
|
6
|
+
- File: [engines/stockfish-v10-niklasf.js]()
|
|
7
|
+
- Type: WebWorker
|
|
8
|
+
- Stockfish version: 10
|
|
9
|
+
- Latest Version with WebWorker
|
|
10
|
+
|
|
11
|
+
- https://github.com/shaack/cm-polyglot
|
|
12
|
+
- An engine to play moves from a polyglot (.bin) openings file.
|
|
13
|
+
|
|
14
|
+
### Not implemented yet, does not work in Safari as of 2021-12-12
|
|
15
|
+
- https://github.com/nmrugg/stockfish.js
|
|
16
|
+
- Type: WASM
|
|
17
|
+
- Stockfish version: 14
|
|
18
|
+
- Latest js version, Multithreadded
|
|
19
|
+
|
|
20
|
+
## References
|
|
21
|
+
|
|
22
|
+
- [UCI reference](http://page.mi.fu-berlin.de/block/uci.htm)
|
|
23
|
+
- [stockfish.js](https://github.com/nmrugg/stockfish.js/)
|
|
24
|
+
- https://github.com/mcostalba/Stockfish
|
|
25
|
+
- https://github.com/niklasf/stockfish.js (stockfish-v10-niklasf.js)
|
|
26
|
+
- https://github.com/bjedrzejewski/stockfish-js <= supports opening books
|
|
27
|
+
- [chess-tools](https://github.com/johnfontaine/chess-tools)
|
|
28
|
+
- https://www.chessprogramming.org/Opening_Book#Formats
|
|
29
|
+
- https://github.com/evilwan/stakelbase
|
|
30
|
+
|
|
Binary file
|