this post was submitted on 05 Dec 2023
0 points (NaN% liked)

boardgames

5858 readers
1 users here now

Everything boardgames

Please stick to English for posts and comments

founded 1 year ago
MODERATORS
 

tabula is a backgammon engine I recently created.

The engine builds on principles described by the author of the Motif engine here: https://bkgm.com/motif/engine.html

You can play against the engine right now at https://bgammon.org

top 2 comments
sorted by: hot top controversial new old
[โ€“] rutrum@lm.paradisus.day 0 points 9 months ago (1 children)

How exactly do you simulate die rolls? Do you actually use a random number a bunch of times and average? Because its 2d6, it has a known distribution. You could iterate over all combinations and use the probably distribution to weight each result. How did you accomplish this?

[โ€“] rocket9@feddit.de 0 points 8 months ago

I use the crypto/rand package which provides cryptographically secure random numbers. I verified the distribution when implementing it in the server and it consistently meets the expected distribution.