doc
This commit is contained in:
parent
f2a89f60bc
commit
73cc6ee67e
|
|
@ -1,22 +1,22 @@
|
||||||
# Inspirations
|
# Inspirations
|
||||||
|
|
||||||
tools
|
tools
|
||||||
|
|
||||||
- config clippy ?
|
- config clippy ?
|
||||||
- bacon : tests runner (ou loom ?)
|
- bacon : tests runner (ou loom ?)
|
||||||
|
|
||||||
## Rust libs
|
## Rust libs
|
||||||
|
|
||||||
cf. https://blessed.rs/crates
|
cf. <https://blessed.rs/crates>
|
||||||
|
|
||||||
nombres aléatoires avec seed : https://richard.dallaway.com/posts/2021-01-04-repeat-resume/
|
nombres aléatoires avec seed : <https://richard.dallaway.com/posts/2021-01-04-repeat-resume/>
|
||||||
|
|
||||||
- cli : https://lib.rs/crates/pico-args ( ou clap )
|
- cli : <https://lib.rs/crates/pico-args> ( ou clap )
|
||||||
- reseau async : tokio
|
- reseau async : tokio
|
||||||
- web serveur : axum (uses tokio)
|
- web serveur : axum (uses tokio)
|
||||||
- https://fasterthanli.me/series/updating-fasterthanli-me-for-2022/part-2#the-opinions-of-axum-also-nice-error-handling
|
- <https://fasterthanli.me/series/updating-fasterthanli-me-for-2022/part-2#the-opinions-of-axum-also-nice-error-handling>
|
||||||
- db : sqlx
|
- db : sqlx
|
||||||
|
|
||||||
|
|
||||||
- eyre, color-eyre (Results)
|
- eyre, color-eyre (Results)
|
||||||
- tracing (logging)
|
- tracing (logging)
|
||||||
- rayon ( sync <-> parallel )
|
- rayon ( sync <-> parallel )
|
||||||
|
|
@ -24,23 +24,29 @@ nombres aléatoires avec seed : https://richard.dallaway.com/posts/2021-01-04-re
|
||||||
- front : yew + tauri
|
- front : yew + tauri
|
||||||
- egui
|
- egui
|
||||||
|
|
||||||
- https://docs.rs/board-game/latest/board_game/
|
- <https://docs.rs/board-game/latest/board_game/>
|
||||||
|
|
||||||
|
## network games
|
||||||
|
|
||||||
|
- <https://www.mattkeeter.com/projects/pont/>
|
||||||
|
- <https://github.com/jackadamson/onitama> (wasm, rooms)
|
||||||
|
- <https://github.com/UkoeHB/renet2>
|
||||||
|
|
||||||
## Others
|
## Others
|
||||||
- plugins avec https://github.com/extism/extism
|
|
||||||
|
- plugins avec <https://github.com/extism/extism>
|
||||||
|
|
||||||
## Backgammon existing projects
|
## Backgammon existing projects
|
||||||
|
|
||||||
* go : https://bgammon.org/blog/20240101-hello-world/
|
- go : <https://bgammon.org/blog/20240101-hello-world/>
|
||||||
- protocole de communication : https://code.rocket9labs.com/tslocum/bgammon/src/branch/main/PROTOCOL.md
|
- protocole de communication : <https://code.rocket9labs.com/tslocum/bgammon/src/branch/main/PROTOCOL.md>
|
||||||
* ocaml : https://github.com/jacobhilton/backgammon?tab=readme-ov-file
|
- ocaml : <https://github.com/jacobhilton/backgammon?tab=readme-ov-file>
|
||||||
cli example : https://www.jacobh.co.uk/backgammon/
|
cli example : <https://www.jacobh.co.uk/backgammon/>
|
||||||
* lib rust backgammon
|
- lib rust backgammon
|
||||||
- https://github.com/carlostrub/backgammon
|
- <https://github.com/carlostrub/backgammon>
|
||||||
- https://github.com/marktani/backgammon
|
- <https://github.com/marktani/backgammon>
|
||||||
* network webtarot
|
- network webtarot
|
||||||
* front ?
|
- front ?
|
||||||
|
|
||||||
|
|
||||||
## cli examples
|
## cli examples
|
||||||
|
|
||||||
|
|
@ -74,7 +80,9 @@ Player O estimates that they have a 90.6111% chance of winning.
|
||||||
|
|
||||||
Os borne off: none
|
Os borne off: none
|
||||||
24 23 22 21 20 19 18 17 16 15 14 13
|
24 23 22 21 20 19 18 17 16 15 14 13
|
||||||
-------------------------------------------------------------------
|
|
||||||
|
---
|
||||||
|
|
||||||
| v v v v v v | | v v v v v v |
|
| v v v v v v | | v v v v v v |
|
||||||
| | | |
|
| | | |
|
||||||
| X O O O | | O O O |
|
| X O O O | | O O O |
|
||||||
|
|
@ -96,7 +104,9 @@ Os borne off: none
|
||||||
| X X X | | X O O |
|
| X X X | | X O O |
|
||||||
| | | |
|
| | | |
|
||||||
| ^ ^ ^ ^ ^ ^ | | ^ ^ ^ ^ ^ ^ |
|
| ^ ^ ^ ^ ^ ^ | | ^ ^ ^ ^ ^ ^ |
|
||||||
-------------------------------------------------------------------
|
|
||||||
|
---
|
||||||
|
|
||||||
1 2 3 4 5 6 7 8 9 10 11 12
|
1 2 3 4 5 6 7 8 9 10 11 12
|
||||||
Xs borne off: none
|
Xs borne off: none
|
||||||
|
|
||||||
|
|
@ -116,4 +126,3 @@ You can also enter these commands:
|
||||||
<enter> - toggle between showing the current and last moves
|
<enter> - toggle between showing the current and last moves
|
||||||
help - show this help text
|
help - show this help text
|
||||||
quit - abandon game
|
quit - abandon game
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue